github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/upgrade/transport_zone_info.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 upgrade 7 8 type TransportZoneInfo struct { 9 10 // Flag to identify if this is the underlay transport zone 11 IsUnderlayTransportZone bool `json:"is_underlay_transport_zone,omitempty"` 12 13 // Logical switches for the transport zone 14 LogicalSwitches []LogicalSwitchInfo `json:"logical_switches,omitempty"` 15 16 // Name of the transport zone 17 TransportZoneDisplayName string `json:"transport_zone_display_name,omitempty"` 18 19 // ID of the transport zone 20 TransportZoneId string `json:"transport_zone_id,omitempty"` 21 }