github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/port_connection_entities.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  // Port Connection Entities (to help draw a visual picture of entities between two ports)
     9  type PortConnectionEntities struct {
    10  	Containers *PortConnectionContainersEntities `json:"containers"`
    11  
    12  	EdgeNodeGroups []PortConnectionEdgeNodeGroup `json:"edge_node_groups,omitempty"`
    13  
    14  	Errors []PortConnectionError `json:"errors"`
    15  
    16  	Hypervisors []PortConnectionHypervisor `json:"hypervisors"`
    17  
    18  	LogicalSwitches []PortConnectionLogicalSwitch `json:"logical_switches"`
    19  
    20  	Routers []PortConnectionRouter `json:"routers,omitempty"`
    21  
    22  	Tunnels []PortConnectionTunnel `json:"tunnels"`
    23  
    24  	Vms []VirtualMachine `json:"vms"`
    25  }