Updated on 2024-01-10 GMT+08:00

Adding Tags to an ECS in a Batch

Function

  • This API is used to add tags to a specified ECS in a batch.
  • The Tag Management Service (TMS) uses this API to batch manage the tags of an ECS.

Constraints

  • An ECS allows a maximum of 10 tags.
  • This API is idempotent.

    During tag creation, if a tag exists (both the key and value are the same as those of an existing tag), the tag is successfully processed by default.

  • A new tag will overwrite the original one if their keys are the same and values are different.

URI

POST /v1/{project_id}/servers/{server_id}/tags/action

Table 1 describes the parameters in the URI.
Table 1 Parameter description

Parameter

Mandatory

Description

project_id

Yes

Specifies the project ID.

For details about how to obtain the ID, see Obtaining a Project ID.

server_id

Yes

Specifies the ECS ID.

Request

Table 2 describes the request parameters.

Table 2 Request parameters

Parameter

Mandatory

Type

Description

tags

Yes

Array of objects

Specifies the tag list.

action

Yes

String

Specifies the operation. (Only lowercase letters are supported.) For example, create indicates the creation operation.

Table 3 resource_tag field description

Parameter

Mandatory

Type

Description

key

Yes

String

Specifies the tag key.

  • Cannot be left blank.
  • Must be unique for each resource.
  • Can contain a maximum of 36 characters.
  • Can be any from Unicode characters (\u4E00-\u9FFF) and the following character set: A-Z, a-z, 0-9, hyphens (-), and underscores (_).
  • The tag key must be unique and cannot be empty.

value

Yes

String

Specifies the tag value.

  • Can contain a maximum of 43 characters.
  • Can be any from Unicode characters (\u4E00-\u9FFF) and the following character set: A-Z, a-z, 0-9, hyphens (-), underscores (_), and periods (.).

Response

None

Example Request

POST https://{endpoint}/v1/{project_id}/servers/{server_id}/tags/action

{
    "action": "create",
    "tags": [
        {
            "key": "key1",
            "value": "value1"
        },
        {
            "key": "key2",
            "value": "value3"
        }
    ]
}

Example Response

None

Error Codes

See Error Codes.