Subscriptions - Check Zone Peers
Compares a subscriptions logical zone mapping
POST https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Resources/checkZonePeers/?api-version=2022-12-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
subscription
|
path | True |
string |
The ID of the target subscription. |
api-version
|
query | True |
string |
The API version to use for this operation. |
Request Body
Name | Type | Description |
---|---|---|
location |
string |
The Microsoft location. |
subscriptionIds |
string[] |
The peer Microsoft Azure subscription ID. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
OK - Returns information about the logical availability zone mapping between subscriptions |
|
Other Status Codes |
Error response describing why the operation failed. |
Security
azure_auth
Azure Active Directory OAuth2 Flow
Type:
oauth2
Flow:
implicit
Authorization URL:
https://login.microsoftonline.com/common/oauth2/authorize
Scopes
Name | Description |
---|---|
user_impersonation | impersonate your user account |
Examples
GetLogicalZoneMapping
Sample request
POST https://management.azure.com/subscriptions/8d65815f-a5b6-402f-9298-045155da7d74/providers/Microsoft.Resources/checkZonePeers/?api-version=2022-12-01
{
"location": "eastus",
"subscriptionIds": [
"subscriptions/11111111-1111-1111-1111-111111111111"
]
}
Sample response
{
"subscriptionId": "8d65815f-a5b6-402f-9298-045155da7d74",
"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"
}
]
}
]
}
Definitions
Name | Description |
---|---|
Availability |
List of availability zones shared by the subscriptions. |
Check |
Check zone peers request parameters. |
Check |
Result of the Check zone peers operation. |
Error |
The resource management error additional info. |
Error |
The error detail. |
Error |
Error response |
Peers |
Information about shared availability zone. |
AvailabilityZonePeers
List of availability zones shared by the subscriptions.
Name | Type | Description |
---|---|---|
availabilityZone |
string |
The availabilityZone. |
peers |
Peers[] |
Details of shared availability zone. |
CheckZonePeersRequest
Check zone peers request parameters.
Name | Type | Description |
---|---|---|
location |
string |
The Microsoft location. |
subscriptionIds |
string[] |
The peer Microsoft Azure subscription ID. |
CheckZonePeersResult
Result of the Check zone peers operation.
Name | Type | Description |
---|---|---|
availabilityZonePeers |
The Availability Zones shared by the subscriptions. |
|
location |
string |
the location of the subscription. |
subscriptionId |
string |
The subscription ID. |
ErrorAdditionalInfo
The resource management error additional info.
Name | Type | Description |
---|---|---|
info |
object |
The additional info. |
type |
string |
The additional info type. |
ErrorDetail
The error detail.
Name | Type | Description |
---|---|---|
additionalInfo |
The error additional info. |
|
code |
string |
The error code. |
details |
The error details. |
|
message |
string |
The error message. |
target |
string |
The error target. |
ErrorResponse
Error response
Name | Type | Description |
---|---|---|
error |
The error object. |
Peers
Information about shared availability zone.
Name | Type | Description |
---|---|---|
availabilityZone |
string |
The availabilityZone. |
subscriptionId |
string |
The subscription ID. |