github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/host_switch_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 // Host Switch State 9 type HostSwitchState struct { 10 11 // List of virtual tunnel endpoints which are configured on this switch 12 Endpoints []Endpoint `json:"endpoints,omitempty"` 13 14 // External ID of the HostSwitch 15 HostSwitchId string `json:"host_switch_id,omitempty"` 16 17 // The name must be unique among all host switches specified in a given Transport Node. 18 HostSwitchName string `json:"host_switch_name,omitempty"` 19 20 // List of Ids of TransportZones this HostSwitch belongs to 21 TransportZoneIds []string `json:"transport_zone_ids,omitempty"` 22 }