Querying AZs
Function
This API is used to list AZs.
URI
GET /v2.1/{project_id}/os-availability-zone
|
Parameter |
Mandatory |
Description |
|---|---|---|
|
project_id |
Yes |
Specifies the project ID. For details about how to obtain the ID, see Obtaining a Project ID. |
Response
Table 2 describes the response parameters.
|
Parameter |
Type |
Description |
|---|---|---|
|
availabilityZoneInfo |
Array of objects |
Specifies the AZ information. For details, see Table 3. |
|
Parameter |
Type |
Description |
|---|---|---|
|
zoneState |
Object |
Specifies the AZ status. For details, see Table 4. |
|
hosts |
List |
The parameter is set to null. |
|
zoneName |
String |
Specifies the AZ name. |
Example Request
Query a list of AZs.
GET https://{endpoint}/v2.1/9c53a566cb3443ab910cf0daebca90c4/os-availability-zone
Example Response
{
"availabilityZoneInfo": [{
"zoneState": {
"available": true
},
"hosts": null,
"zoneName": "eu-west-101a" //Replace the value with the actual AZ name.
},
{
"zoneState": {
"available": true
},
"hosts": null,
"zoneName": "eu-west-101b" //Replace the value with the actual AZ name.
}]
}
Returned Values
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.