- API Reference
- Out-of-Date APIs
- Tag Management
- Querying Tags of an ECS (Discarded)
Querying Tags of an ECS (Discarded)¶
Function¶
This API is used to query the tags of a specified ECS.
The Tag Management Service (TMS) uses this API to query all tags of an ECS.
Note
This API has been discarded. Use the API described in Querying Tags of an ECS.
URI¶
GET /v1/{project_id}/servers/{server_id}/tags
Table 1 lists the parameters.
Parameter | Mandatory | Description |
---|---|---|
project_id | Yes | Specifies the project ID. |
server_id | Yes | Specifies the ECS ID. |
Request¶
None
Response¶
Table 2 describes the response parameter.
Parameter | Type | Description |
---|---|---|
tags | Array of objects | Specifies tags. |
Parameter | Type | Description |
---|---|---|
key | String | Specifies the tag key. |
value | String | Specifies the tag value. |
Example Request¶
GET https://{endpoint}/v1/{project_id}/servers/{server_id}/tags
Example Response¶
{
"tags": [
{
"key": "key1",
"value": "value1"
},
{
"key": "key2",
"value": "value3"
}
]
}
Returned Values¶
Error Codes¶
See Error Codes.
last updated: 2024-11-25 15:20 UTC - commit: c17c71aa787271b243e9db5dad1de8dd2d0ea643
Page Contents