github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/logical_router_config.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 type LogicalRouterConfig struct { 9 10 // CIDR block defining tier0 to tier1 links 11 ExternalTransitNetworks []string `json:"external_transit_networks,omitempty"` 12 13 // This configuration can be defined only for Active-Standby LogicalRouter to provide | redundancy. For mulitple uplink ports, multiple HaVipConfigs must be defined | and each config will pair exactly two uplink ports. The VIP will move and will | always be owned by the Active node. Note - when HaVipConfig[s] are defined, | configuring dynamic-routing is disallowed. 14 HaVipConfigs []HaVipConfig `json:"ha_vip_configs,omitempty"` 15 16 // CIDR block defining Service router to distributed router links 17 InternalTransitNetwork string `json:"internal_transit_network,omitempty"` 18 }