Querying All Tags
Function
This API is used to query all tags of a specified region.
URI
GET /v1.1/{project_id}/clusters/tags
Parameter | Mandatory | Type | Description |
---|---|---|---|
project_id | Yes | String | Project ID. For details about how to obtain the project ID, see Obtaining a Project ID. |
Request Parameters
None
Response Parameters
Status code: 200
Parameter | Type | Description |
---|---|---|
tags | Array of TagWithMultiValue objects | Tag list. For details, see Table 3. |
Parameter | Type | Description |
---|---|---|
key | String | Tag key. A tag key cannot contain special characters (=*<>\,|/) or start or end with a space. |
values | Array of strings | Tag value. A tag value cannot contain special characters (=*<>\,|/) or start or end with a space. |
Example Request
Query all tags.
GET https://{endpoint}/v1.1/{project_id}/clusters/tags
Example Response
Status code: 200
The operation is successful.
{"tags" : [ {"key" : "key1","values" : [ "value1", "value2" ]}, {"key" : "key2","values" : [ "value1", "value2" ]} ]}
Status Codes
See Status Codes.
Error Codes
See Error Codes.
Parent topic: Tag Management APIs
- Function
- URI
- Request Parameters
- Response Parameters
- Example Request
- Example Response
- Status Codes
- Error Codes