Listing AZ Information
Function
This API is used to query the AZ ID for creating an instance.
Debugging
You can use API Explorer to debug this API.
URI
GET /v2/available-zones
Request Parameters
None
Response Parameters
Status code: 200
|
Parameter |
Type |
Description |
|---|---|---|
|
region_id |
String |
Region ID. |
|
available_zones |
Array of available_zones objects |
Array of AZs. |
|
Parameter |
Type |
Description |
|---|---|---|
|
soldOut |
Boolean |
Whether resources are sold out. |
|
id |
String |
AZ ID. |
|
code |
String |
AZ code. |
|
name |
String |
AZ name. |
|
port |
String |
AZ port. |
|
resource_availability |
String |
Whether there are available resources in the AZ. |
|
default_az |
Boolean |
Whether the AZ is the default AZ. |
|
remain_time |
Long |
Remaining time. |
|
ipv6_enable |
Boolean |
Whether IPv6 is supported. |
Example Requests
GET https://{endpoint}/v2/available-zones
Example Responses
Status code: 200
The AZ information is queried successfully.
{
"regionId" : "cn-north-7",
"available_zones" : [ {
"soldOut" : false,
"id" : "d539378ec1314c85b76fefa3f7071458",
"code" : "cn-north-7b",
"name" : "AZ2",
"port" : "8003",
"resource_availability" : "true",
"default_az" : true,
"remain_time" : 9223372036854776000,
"ipv6_enable" : false
}, {
"soldOut" : false,
"id" : "9f1c5806706d4c1fb0eb72f0a9b18c77",
"code" : "cn-north-7c",
"name" : "AZ3",
"port" : "443",
"resource_availability" : "true",
"default_az" : false,
"remain_time" : 9223372036854776000,
"ipv6_enable" : false
} ]
}
Status Codes
|
Status Code |
Description |
|---|---|
|
200 |
The AZ information is queried successfully. |
Error Codes
See Error Codes.
Last Article: Listing Maintenance Time Windows
Next Article: Listing Product Specifications
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.