Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,21 @@
"bgpSettings": {
"asn": 65514,
"bgpPeeringAddress": "10.0.1.30",
"peerWeight": 0
"peerWeight": 0,
"bgpPeeringAddresses": [
{
"ipconfigurationId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworkGateways/vpngw/ipConfigurations/gwipconfig1",
"defaultBgpIpAddresses": [
"10.3.1.254"
],
"customBgpIpAddresses": [
"169.254.21.10"
],
"tunnelIpAddresses": [
"52.161.10.135"
]
}
]
},
"customRoutes": {
"addressPrefixes": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,21 @@
"bgpSettings": {
"asn": 65514,
"bgpPeeringAddress": "10.0.1.30",
"peerWeight": 0
"peerWeight": 0,
"bgpPeeringAddresses": [
{
"ipconfigurationId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworkGateways/vpngw/ipConfigurations/gwipconfig1",
"defaultBgpIpAddresses": [
"10.3.1.254"
],
"customBgpIpAddresses": [
"169.254.21.10"
],
"tunnelIpAddresses": [
"52.161.10.135"
]
}
]
},
"customRoutes": {
"addressPrefixes": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,21 @@
"bgpSettings": {
"asn": 65515,
"bgpPeeringAddress": "10.0.1.30",
"peerWeight": 0
"peerWeight": 0,
"bgpPeeringAddresses": [
{
"ipconfigurationId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworkGateways/vpngw/ipConfigurations/gwipconfig1",
"defaultBgpIpAddresses": [
"10.3.1.254"
],
"customBgpIpAddresses": [
"169.254.21.10"
],
"tunnelIpAddresses": [
"52.161.10.135"
]
}
]
},
"customRoutes": {
"addressPrefixes": [
Expand Down Expand Up @@ -158,7 +172,21 @@
"bgpSettings": {
"asn": 65515,
"bgpPeeringAddress": "10.0.1.30",
"peerWeight": 0
"peerWeight": 0,
"bgpPeeringAddresses": [
{
"ipconfigurationId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworkGateways/vpngw/ipConfigurations/gwipconfig1",
"defaultBgpIpAddresses": [
"10.3.1.254"
],
"customBgpIpAddresses": [
"169.254.21.10"
],
"tunnelIpAddresses": [
"52.161.10.135"
]
}
]
},
"customRoutes": {
"addressPrefixes": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,21 @@
"bgpSettings": {
"asn": 65515,
"bgpPeeringAddress": "10.0.0.254",
"peerWeight": 0
"peerWeight": 0,
"bgpPeeringAddresses": [
{
"ipconfigurationId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworkGateways/vpngw/ipConfigurations/gwipconfig1",
"defaultBgpIpAddresses": [
"10.3.1.254"
],
"customBgpIpAddresses": [
"169.254.21.10"
],
"tunnelIpAddresses": [
"52.161.10.135"
]
}
]
},
"customRoutes": {
"addressPrefixes": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2606,6 +2606,13 @@
"type": "integer",
"format": "int32",
"description": "The weight added to routes learned from this BGP speaker."
},
"bgpPeeringAddresses": {
"type": "array",
"items": {
"$ref": "#/definitions/IPConfigurationBgpPeeringAddress"
},
"description": "BGP peering address with IP configuration ID for virtual network gateway."
}
},
"description": "BGP settings details."
Expand Down Expand Up @@ -3632,6 +3639,38 @@
}
},
"description": "Start packet capture parameters on virtual network gateway."
},
"IPConfigurationBgpPeeringAddress": {
"properties": {
"ipconfigurationId": {
"type": "string",
"description": "The ID of IP configuration which belongs to gateway."
},
"defaultBgpIpAddresses": {
"readOnly": true,
"type": "array",
"items": {
"type": "string"
},
"description": "The list of default BGP peering addresses which belong to IP configuration."
},
"customBgpIpAddresses": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of custom BGP peering addresses which belong to IP configuration."
},
"tunnelIpAddresses": {
"readOnly": true,
"type": "array",
"items": {
"type": "string"
},
"description": "The list of tunnel public IP addresses which belong to IP configuration."
}
},
"description": "Properties of IPConfigurationBgpPeeringAddress."
}
}
}