This API is used to query tags of a specific resource.
TMS uses this API to query all tags of a specific resource.
GET https://{endpoint}/v1/{project_id}/csbs_backup/{resource_id}/tags
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
Content-type |
Yes |
MIME type of the body in the request |
application/json |
X-Auth-Token |
Yes |
User token |
- |
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
project_id |
Yes |
String |
Project ID |
resource_id |
Yes |
String |
Resource ID |
GET https://{endpoint}/v1/{project_id}/csbs_backup/{resource_id}/tags
Parameter |
Type |
Description |
|---|---|---|
tags |
List<resource_tag> |
Tag list Keys in the tag list must be unique. |
Parameter |
Type |
Description |
|---|---|---|
key |
String |
Tag key It consists of up to 36 characters. It cannot be an empty string. It can contain only letters, digits, hyphens (-), and underscores (_). |
value |
String |
Tag value It consists of up to 43 characters. It can be an empty string. It can contain only letters, digits, hyphens (-), and underscores (_). |
{
"tags": [
{
"key": "key1",
"value": "value1"
},
{
"key": "key2",
"value": "value3"
}
]
}
Status Code |
Description |
|---|---|
200 |
OK |
Status Code |
Description |
|---|---|
400 |
Invalid parameters. |
401 |
Authentication failed. |
403 |
You do not have permission to perform this operation. |
404 |
The requested resource was not found. |
500 |
A system exception occurs. |
For details, see Error Codes.