-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Check zone peers to Subscription.json (#17050)
* remove name validation from client side * remove name check from deploymentScripts swagger * remove name check from previous swagger versions * remove pattern from resourcegroupname parameter * add checkZonePeers to subscription.json * fix linter and prettier errors * fix spelling errors * fix spelling and descriptions * add descriptions * fix linter issues * fix error responses * fix syntax errors * add description * add reponse body * revert changes to package-lock * Update readme.python.md Co-authored-by: Yuchao Yan <yuchaoyan@microsoft.com>
- Loading branch information
1 parent
e6a2296
commit 5d117a8
Showing
15 changed files
with
1,182 additions
and
0 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
...s/resource-manager/Microsoft.Resources/stable/2015-11-01/examples/PostCheckZonePeers.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-0000-0000-0000-00000000000000", | ||
"api-version": "2021-01-01", | ||
"parameters": { | ||
"location": "eastus", | ||
"subscriptionIds": [ | ||
"subscriptions/11111111-1111-1111-1111-111111111111" | ||
] | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"subscriptionId": "00000000-0000-0000-0000-00000000000000", | ||
"location": "eastus2", | ||
"availabilityZonePeers": [ | ||
{ | ||
"availabilityZone": "1", | ||
"peers": [ | ||
{ | ||
"subscriptionId": "11111111-1111-1111-1111-111111111111", | ||
"availabilityZone": "3" | ||
} | ||
] | ||
}, | ||
{ | ||
"availabilityZone": "2", | ||
"peers": [ | ||
{ | ||
"subscriptionId": "11111111-1111-1111-1111-111111111111", | ||
"availabilityZone": "2" | ||
} | ||
] | ||
}, | ||
{ | ||
"availabilityZone": "3", | ||
"peers": [ | ||
{ | ||
"subscriptionId": "11111111-1111-1111-1111-111111111111", | ||
"availabilityZone": "1" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
...s/resource-manager/Microsoft.Resources/stable/2016-06-01/examples/PostCheckZonePeers.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-0000-0000-0000-00000000000000", | ||
"api-version": "2021-01-01", | ||
"parameters": { | ||
"location": "eastus", | ||
"subscriptionIds": [ | ||
"subscriptions/11111111-1111-1111-1111-111111111111" | ||
] | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"subscriptionId": "00000000-0000-0000-0000-00000000000000", | ||
"location": "eastus2", | ||
"availabilityZonePeers": [ | ||
{ | ||
"availabilityZone": "1", | ||
"peers": [ | ||
{ | ||
"subscriptionId": "11111111-1111-1111-1111-111111111111", | ||
"availabilityZone": "3" | ||
} | ||
] | ||
}, | ||
{ | ||
"availabilityZone": "2", | ||
"peers": [ | ||
{ | ||
"subscriptionId": "11111111-1111-1111-1111-111111111111", | ||
"availabilityZone": "2" | ||
} | ||
] | ||
}, | ||
{ | ||
"availabilityZone": "3", | ||
"peers": [ | ||
{ | ||
"subscriptionId": "11111111-1111-1111-1111-111111111111", | ||
"availabilityZone": "1" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.