Tag Management¶
Function¶
This API is used to tag a resource.
URI¶
POST /v1/{project_id}/{resource_type}/{resource_id}/tags/action
Parameter | Mandatory | Type | Description |
---|---|---|---|
project_id | Yes | String | Project ID. For details about how to obtain a project ID, see Obtaining the Project ID, Account ID, Log Group ID, and Log Stream ID. Minimum: 32 Maximum: 32 |
resource_type | Yes | String | Resource type. The value can be groups or topics. |
resource_id | Yes | String | Resource ID. |
Request Parameters¶
Parameter | Mandatory | Type | Description |
---|---|---|---|
X-Auth-Token | Yes | String | User token obtained from IAM. For details about how to obtain a user token, see Obtaining a User Token. Minimum: 1 Maximum: 10000 |
Content-Type | Yes | String | Set this parameter to application/json;charset=UTF-8. Minimum: 30 Maximum: 30 |
Parameter | Mandatory | Type | Description |
---|---|---|---|
action | Yes | String | Method of adding tags. |
is_open | Yes | Boolean | Whether to call external APIs. |
tags | Yes | Array of tagsBody objects | Tag field information. Up to 20 tag fields are allowed. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
key | Yes | String | Tag key. Use only UTF-8 letters, digits, spaces, and the following characters: .:=+-@. Do not start with an underscore (). Max 128 characters are allowed. |
value | Yes | String | Tag value. Use only UTF-8 letters, digits, spaces, and the following characters: |
Response Parameters¶
Status code: 200
Parameter | Type | Description |
---|---|---|
error_code | String | Error code. |
error_msg | String | Error message. |
Status code: 201
Parameter | Type | Description |
---|---|---|
error_code | String | Error code. |
error_msg | String | Error message. |
Status code: 400
Parameter | Type | Description |
---|---|---|
error_code | String | Error code. |
error_msg | String | Error message. |
Status code: 500
Parameter | Type | Description |
---|---|---|
error_code | String | Error code. |
error_msg | String | Error message. |
Example Requests¶
Creating a Tag
POST /v1/2a473356cca5487f8373be891bffc1cf/groups/0933a172-379e-44d0-9ed9-f491b1c528ea/tags/action { "action" : "create", "is_open" : true, "tags" : [ { "key" : "zzz", "value" : "zzz" }, { "key" : "sgq", "value" : "123" } ] }
Deleting a tag
POST /v1/2a473356cca5487f8373be891bffc1cf/groups/0933a172-379e-44d0-9ed9-f491b1c528ea/tags/action { "action" : "delete", "is_open" : true, "tags" : [ { "key" : "zzz", "value" : "zzz" }, { "key" : "sgq", "value" : "123" } ] }
Example Responses¶
Status code: 200
Succeeded.
none
Status code: 201
Succeeded.
none
Status code: 400
Invalid request. Modify the request based on the description in error_msg before a retry.
{
"error_code" : "LTS.1836",
"error_msg" : "action is create or delete"
}
Status code: 500
The server has received the request but encountered an internal error.
{
"error_code" : "LTS.0203",
"error_msg" : "Internal Server Error"
}
Status Codes¶
Status Code | Description |
---|---|
200 | Succeeded. |
201 | Succeeded. |
400 | Invalid request. Modify the request based on the description in error_msg before a retry. |
500 | The server has received the request but encountered an internal error. |
Error Codes¶
See Error Codes.