github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/mac_learning_counters.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 MacLearningCounters struct { 9 10 // The number of packets with unknown source MAC address that are dispatched without learning the source MAC address. Applicable only when the MAC limit is reached and MAC Limit policy is MAC_LEARNING_LIMIT_POLICY_ALLOW. 11 MacNotLearnedPacketsAllowed int64 `json:"mac_not_learned_packets_allowed,omitempty"` 12 13 // The number of packets with unknown source MAC address that are dropped without learning the source MAC address. Applicable only when the MAC limit is reached and MAC Limit policy is MAC_LEARNING_LIMIT_POLICY_DROP. 14 MacNotLearnedPacketsDropped int64 `json:"mac_not_learned_packets_dropped,omitempty"` 15 16 // Number of MACs learned 17 MacsLearned int64 `json:"macs_learned,omitempty"` 18 }