Skip to content

Commit

Permalink
New Skus and Generations for VirtualNetworkVpnGateways (#7089)
Browse files Browse the repository at this point in the history
* New Skus and generations for VirtualNetwork VpnGateways

* Minor Typo fix

* update [email protected] (#7054)

* Lock typescript version to fix compile error (#7068)

* Fix description for vpnGatewayGeneration.
  • Loading branch information
ritwikbasu authored and tjprescott committed Sep 4, 2019
1 parent b805348 commit 7571255
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"description": "Tests for Azure REST API Specifications",
"license": "MIT",
"devDependencies": {
"@azure/avocado": "^0.5.1",
"@azure/avocado": "^0.6.0",
"@azure/rest-api-specs-scripts": "^0.4.0",
"@ts-common/commonmark-to-markdown": "^1.2.0",
"@ts-common/fs": "0.2.0",
Expand All @@ -23,7 +23,7 @@
"mocha": "*",
"ts-node": "^8.1.0",
"tslib": "^1.10.0",
"typescript": "^3.4.4"
"typescript": "3.5.3"
},
"homepage": "https://github.com/azure/azure-rest-api-specs",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
"capacity": 0
},
"gatewayType": "Vpn",
"vpnType": "RouteBased",
"vpnType": "RouteBased",
"vpnGatewayGeneration": "None",
"enableBgp": false,
"activeActive": false,
"vpnClientConfiguration": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
},
"gatewayType": "Vpn",
"vpnType": "RouteBased",
"vpnGatewayGeneration": "None",
"enableBgp": false,
"activeActive": false,
"vpnClientConfiguration": {
Expand Down Expand Up @@ -93,6 +94,7 @@
},
"gatewayType": "Vpn",
"vpnType": "RouteBased",
"vpnGatewayGeneration": "None",
"enableBgp": false,
"activeActive": false,
"vpnClientConfiguration": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
},
"gatewayType": "Vpn",
"vpnType": "RouteBased",
"vpnGatewayGeneration": "None",
"enableBgp": false,
"activeActive": false,
"vpnClientConfiguration": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
},
"gatewayType": "Vpn",
"vpnType": "RouteBased",
"vpnGatewayGeneration": "None",
"enableBgp": false,
"activeActive": false,
"bgpSettings": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1780,6 +1780,19 @@
"modelAsString": true
}
},
"vpnGatewayGeneration": {
"type": "string",
"description": "The generation for this VirtualNetworkGateway. Must be None if gatewayType is not VPN.",
"enum": [
"None",
"Generation1",
"Generation2"
],
"x-ms-enum": {
"name": "VpnGatewayGeneration",
"modelAsString": true
}
},
"enableBgp": {
"type": "boolean",
"description": "Whether BGP is enabled for this virtual network gateway or not."
Expand Down Expand Up @@ -1980,9 +1993,13 @@
"VpnGw1",
"VpnGw2",
"VpnGw3",
"VpnGw4",
"VpnGw5",
"VpnGw1AZ",
"VpnGw2AZ",
"VpnGw3AZ",
"VpnGw4AZ",
"VpnGw5AZ",
"ErGw1AZ",
"ErGw2AZ",
"ErGw3AZ"
Expand All @@ -2003,9 +2020,13 @@
"VpnGw1",
"VpnGw2",
"VpnGw3",
"VpnGw4",
"VpnGw5",
"VpnGw1AZ",
"VpnGw2AZ",
"VpnGw3AZ",
"VpnGw4AZ",
"VpnGw5AZ",
"ErGw1AZ",
"ErGw2AZ",
"ErGw3AZ"
Expand Down

0 comments on commit 7571255

Please sign in to comment.