github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/transport_zone_status.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 // Transport zone runtime status information 9 type TransportZoneStatus struct { 10 11 // Count of logical ports in the transport zone 12 NumLogicalPorts int32 `json:"num_logical_ports,omitempty"` 13 14 // Count of logical switches in the transport zone 15 NumLogicalSwitches int32 `json:"num_logical_switches,omitempty"` 16 17 // Count of transport nodes in the transport zone 18 NumTransportNodes int32 `json:"num_transport_nodes,omitempty"` 19 20 // Unique ID identifying the transport zone 21 TransportZoneId string `json:"transport_zone_id,omitempty"` 22 }