github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/logical_port_state.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  // Contians realized state of the logical port. For example, transport node on which the port is located, discovered and realized address bindings of the logical port.
     9  type LogicalPortState struct {
    10  
    11  	// Logical port bindings discovered automatically
    12  	DiscoveredBindings []AddressBindingEntry `json:"discovered_bindings,omitempty"`
    13  
    14  	// Id of the logical port
    15  	Id string `json:"id"`
    16  
    17  	// Realized logical port bindings
    18  	RealizedBindings []AddressBindingEntry `json:"realized_bindings,omitempty"`
    19  
    20  	// Identifiers of the transport node where the port is located
    21  	TransportNodeIds []string `json:"transport_node_ids,omitempty"`
    22  }