Reviewed-by: Belejkanic, Lukas <lukas.belejkanic@t-systems.com> Co-authored-by: weihongmin1 <weihongmin1@huawei.com> Co-committed-by: weihongmin1 <weihongmin1@huawei.com>
23 KiB
Querying Region Details
Function
This API is used to query region details.
URI
- URI parameters
Parameter
Mandatory
Type
Description
region_id
Yes
String
Region ID.
Request Parameters
- Parameters in the request header
Parameter
Mandatory
Type
Description
Content-Type
Yes
String
Fill application/json;charset=utf8 in this field.
X-Auth-Token
Yes
String
Authenticated token.
- Example request
curl -i -k -H 'Accept:application/json' -H 'Content-Type:application/json;charset=utf8' -H "X-Auth-Token:$token" -X GET https://sample.domain.com/v3/regions/test-pusb999999991
Response Parameters
- Response body parameters
Parameter
Mandatory
Type
Description
Yes
Object
Region information.
- region
Parameter
Type
Description
description
String
Description of the region.
parent_region_id
String
An embedded field, which has no specific meanings. The value null is returned.
Object
Region resource link.
Object
Region name. Not all fields in the object are returned, which is determined by the registered region.
id
String
Region ID.
type
String
Region type.
- region.links
Parameter
Type
Description
self
String
Resource link.
{
"region": {
"parent_region_id": null,
"description": "",
"links": {
"self": "https://sample.domain.com/v3/regions/test-pusb999999991"
},
"type": "public",
"id": "test-pusb999999991",
"locales": {
"en-us": "region_name"
}
}
}
Status Codes
Status Code |
Description |
|---|---|
200 |
The request is successful. |
400 |
The server failed to process the request. |
401 |
Authentication failed. |
403 |
Access denied. |
404 |
The requested resource cannot be found. |
405 |
The method specified in the request is not allowed for the requested resource. |
413 |
The request entity is too large. |
500 |
Internal server error. |
503 |
Service unavailable. |