github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/address_binding_entry.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  // An address binding entry is a combination of the IP-MAC-VLAN binding for a logical port. The address bindings can be obtained via various methods like ARP snooping, DHCP snooping etc. or by user configuration.
     9  type AddressBindingEntry struct {
    10  
    11  	// Combination of IP-MAC-VLAN binding
    12  	Binding *PacketAddressClassifier `json:"binding,omitempty"`
    13  
    14  	// Timestamp of binding
    15  	BindingTimestamp int64 `json:"binding_timestamp,omitempty"`
    16  
    17  	// Address binding source
    18  	Source string `json:"source,omitempty"`
    19  }