Skip to content

Commit

Permalink
Adding Route Preference property into VpnGateway and P2SGateway (#11119)
Browse files Browse the repository at this point in the history
* commit1

* Fixes

Co-authored-by: Khushboo Baheti <[email protected]>
  • Loading branch information
Khushboo-Baheti and Khushboo Baheti authored Oct 15, 2020
1 parent 71c13c4 commit dc2bf06
Show file tree
Hide file tree
Showing 14 changed files with 50 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
],
"totalIngressBytesTransferred": 2000,
"totalEgressBytesTransferred": 3000
}
},
"isRoutingPreferenceInternet": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
],
"totalIngressBytesTransferred": 2000,
"totalEgressBytesTransferred": 3000
}
},
"isRoutingPreferenceInternet": false
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
],
"totalIngressBytesTransferred": 2000,
"totalEgressBytesTransferred": 3000
}
},
"isRoutingPreferenceInternet": false
}
},
{
Expand Down Expand Up @@ -95,7 +96,8 @@
],
"totalIngressBytesTransferred": 2000,
"totalEgressBytesTransferred": 3000
}
},
"isRoutingPreferenceInternet": false
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
],
"totalIngressBytesTransferred": 2000,
"totalEgressBytesTransferred": 3000
}
},
"isRoutingPreferenceInternet": false
}
},
{
Expand Down Expand Up @@ -91,7 +92,8 @@
],
"totalIngressBytesTransferred": 2000,
"totalEgressBytesTransferred": 3000
}
},
"isRoutingPreferenceInternet": false
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"customDnsServers": [
"1.1.1.1",
"2.2.2.2"
]
],
"isRoutingPreferenceInternet": false
}
}
},
Expand Down Expand Up @@ -79,7 +80,8 @@
"allocatedIpAddresses": [],
"totalIngressBytesTransferred": 0,
"totalEgressBytesTransferred": 0
}
},
"isRoutingPreferenceInternet": false
}
}
},
Expand Down Expand Up @@ -124,7 +126,8 @@
"allocatedIpAddresses": [],
"totalIngressBytesTransferred": 0,
"totalEgressBytesTransferred": 0
}
},
"isRoutingPreferenceInternet": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
],
"totalIngressBytesTransferred": 2000,
"totalEgressBytesTransferred": 3000
}
},
"isRoutingPreferenceInternet": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
],
"totalIngressBytesTransferred": 2000,
"totalEgressBytesTransferred": 3000
}
},
"isRoutingPreferenceInternet": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@
]
}
]
}
},
"isRoutingPreferenceInternet": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@
]
}
]
}
},
"isRoutingPreferenceInternet": false
}
},
{
Expand Down Expand Up @@ -229,7 +230,8 @@
]
}
]
}
},
"isRoutingPreferenceInternet": false
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@
]
}
]
}
},
"isRoutingPreferenceInternet": false
}
},
{
Expand Down Expand Up @@ -229,7 +230,8 @@
]
}
]
}
},
"isRoutingPreferenceInternet": false
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
]
}
]
}
},
"isRoutingPreferenceInternet": false
}
}
},
Expand Down Expand Up @@ -166,7 +167,8 @@
]
}
]
}
},
"isRoutingPreferenceInternet": false
}
}
},
Expand Down Expand Up @@ -278,7 +280,8 @@
]
}
]
}
},
"isRoutingPreferenceInternet": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@
]
}
]
}
},
"isRoutingPreferenceInternet": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@
]
}
]
}
},
"isRoutingPreferenceInternet": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5673,6 +5673,10 @@
"items": {
"$ref": "#/definitions/VpnGatewayIpConfiguration"
}
},
"isRoutingPreferenceInternet": {
"type": "boolean",
"description": "Enable Routing Preference property for the Public IP Interface of the VpnGateway."
}
},
"description": "Parameters for VpnGateway."
Expand Down Expand Up @@ -6640,6 +6644,10 @@
"items": {
"type": "string"
}
},
"isRoutingPreferenceInternet": {
"type": "boolean",
"description": "Enable Routing Preference property for the Public IP Interface of the P2SVpnGateway."
}
},
"description": "Parameters for P2SVpnGateway."
Expand Down

0 comments on commit dc2bf06

Please sign in to comment.