Querying Resource Types
Function
This API is used to query the resource types on the partner sales platform.
Constraints
This API can be invoked using the partner AK/SK or token.
URI
GET /v2/bases/resource-types
Parameter |
Mandatory |
Value Range |
Description |
---|---|---|---|
X-Language |
No |
A maximum of 8 characters |
Language.
Default value: zh_CN |
Parameter |
Mandatory |
Type |
Value Range |
Description |
---|---|---|---|---|
resource_type_code |
No |
String |
A maximum of 64 characters |
Resource type code. For example, the resource type code of VM is hws.resource.type.vm. |
Request
Request Parameters
None
Example Request
GET https://bss-intl.myhuaweicloud.com/v2/bases/resource-types?resource_type_code=hws.resource.type.workplace.basic HTTP/1.1
Content-Type: application/json
X-Auth-Token: MIIPAgYJKoZIhvcNAQcCo...ggg1BBIINPXsidG9rZ
X-Language: zh_CN
Response
Response Parameters
Parameter |
Type |
Value Range |
Description |
---|---|---|---|
error_code |
String |
A maximum of 20 characters |
Error code. For details, see Returned Values. This parameter is returned only when the query failed. |
error_msg |
String |
A maximum of 1000 characters |
Error description. This parameter is returned only when the query failed. |
resource_types |
List<ResourceType> |
- |
Resource type information. For details, see Table 3. |
Parameter |
Type |
Value Range |
Description |
---|---|---|---|
resource_type_code |
String |
A maximum of 64 characters |
Resource type code. For example, the resource type code of VM is hws.resource.type.vm. |
resource_type_name |
String |
A maximum of 200 characters |
Resource type name. |
resource_type_desc |
String |
A maximum of 200 characters |
Resource type description. |
Example Response
HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: length Date: response time { "resource_types": [ { "resource_type_code": "hws.resource.type.workplace.basic", "resource_type_name": "Basic package", "resource_type_desc": "Basic package" } ] }
