github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/upgrade/logical_switch_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 LogicalSwitchInfo struct { 9 10 // Number of instances on this logical switch 11 InstancesCount int64 `json:"instances_count,omitempty"` 12 13 // Flag to identify if this is the default logical switch 14 IsDefaultLogicalSwitch bool `json:"is_default_logical_switch,omitempty"` 15 16 // Name of the logical switch 17 LogicalSwitchDisplayName string `json:"logical_switch_display_name,omitempty"` 18 19 // ID of the logical switch 20 LogicalSwitchId string `json:"logical_switch_id,omitempty"` 21 22 // This tag is applied on cloud compute resource to be attached to this logical switch 23 NsxSwitchTag string `json:"nsx_switch_tag,omitempty"` 24 }