github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/bgp_neighbor_address_family.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 BgpNeighborAddressFamily struct { 9 10 // Enable this address family 11 Enabled bool `json:"enabled,omitempty"` 12 13 // Id of the IPPrefix List to be used for IN direction filter 14 InFilterIpprefixlistId string `json:"in_filter_ipprefixlist_id,omitempty"` 15 16 // Id of the RouteMap to be used for IN direction filter 17 InFilterRoutemapId string `json:"in_filter_routemap_id,omitempty"` 18 19 // Id of the IPPrefixList to be used for OUT direction filter 20 OutFilterIpprefixlistId string `json:"out_filter_ipprefixlist_id,omitempty"` 21 22 // Id of the RouteMap to be used for OUT direction filter 23 OutFilterRoutemapId string `json:"out_filter_routemap_id,omitempty"` 24 25 // Address family type 26 Type_ string `json:"type"` 27 }