github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/packets_dropped_by_security.go (about) 1 /* Copyright © 2017 VMware, Inc. All Rights Reserved. 2 SPDX-License-Identifier: BSD-2-Clause 3 4 Generated by: https://github.com/swagger-api/swagger-codegen.git */ 5 6 package manager 7 8 type PacketsDroppedBySecurity struct { 9 10 // The number of packets dropped by BPDU filter. 11 BpduFilterDropped int64 `json:"bpdu_filter_dropped,omitempty"` 12 13 // The number of IPv4 packets dropped by DHCP client block. 14 DhcpClientDroppedIpv4 int64 `json:"dhcp_client_dropped_ipv4,omitempty"` 15 16 // The number of IPv6 packets dropped by DHCP client block. 17 DhcpClientDroppedIpv6 int64 `json:"dhcp_client_dropped_ipv6,omitempty"` 18 19 // The number of IPv4 packets dropped by DHCP server block. 20 DhcpServerDroppedIpv4 int64 `json:"dhcp_server_dropped_ipv4,omitempty"` 21 22 // The number of IPv6 packets dropped by DHCP server block. 23 DhcpServerDroppedIpv6 int64 `json:"dhcp_server_dropped_ipv6,omitempty"` 24 25 // The packets dropped by Spoof Guard; supported packet types are IPv4, IPv6, ARP, ND, non-IP. 26 SpoofGuardDropped []PacketTypeAndCounter `json:"spoof_guard_dropped,omitempty"` 27 }