You need to enable JavaScript to run this app.
导航
CreateTags - 创建标签
最近更新时间:2024.09.29 11:41:09首次发布时间:2022.09.02 08:59:16

调用 CreateTags 接口为一个或多个资源添加用户标签。

注意事项

  • 标签的更多信息请参见标签概述
  • 单个资源最多可以添加50个标签,单次调用该接口最多支持添加20个标签。
  • 为同一个资源重复添加相同标签键的标签,则新标签值会自动覆盖原标签值。
  • “删除中”的资源不允许添加标签。

调试

请求参数

下表仅列出该接口特有的请求参数和部分公共参数。更多信息请见公共参数

参数
类型
是否必填
示例值
描述
Action
String

CreateTags

要执行的操作,取值:CreateTags。

Version
String

2020-04-01

API的版本,取值:2020-04-01。

ClientToken
String

333456899ff****

保证请求幂等性。由客户端自动生成一个参数值,确保不同请求间该参数值唯一,避免当调用API超时或服务器内部错误时,客户端多次重试导致重复性操作。
取值:仅支持ASCII字符,且不能超过64个字符。

ResourceIds.N
Array of String

ResourceIds.1=i-l8u0p77yseabkpak****&ResourceIds.2=i-l8u0p7xyseabkbak****

资源ID。

  • 参数 - N:表示资源的序号,取值范围:1~50。
  • 多个资源之间用&分隔。
ResourceType
String

instance

资源类型,取值:

  • instance:实例
  • image:镜像
  • reservedinstance:预留实例券
  • scheduledinstance:弹性预约实例
Tags.N.Key
Array of String

Tags.1.Key=k1

为资源添加的用户标签的标签键。

  • 参数 - N:表示标签键的序号,取值范围:1~20。
  • 多个标签键之间用&分隔。
    命名规则如下:
  • 不能以任何大小写形式的volc:sys:开头。

    volc:sys:开头为系统预留标签键禁止创建。

  • 只能包含语言字符、数字、空格和英文符号“_”、“.”、“:”、“/”、“=”、“+”、“-”、“@”。
  • 长度限制在1~128个字符之间。
Tags.N.Value
Array of String

Tags.1.Value=v1

为资源添加的用户标签的标签值。

  • 参数 - N:表示标签值的序号,取值范围:1~20。
  • 多个标签值之间用&分隔。
    命名规则如下:
  • 只能包含语言字符、数字、空格和英文符号“_”、“.”、“:”、“/”、“=”、“+”、“-”、“@”。
  • 允许为空,长度限制在0~256个字符之间。

返回参数

下表仅列出本接口特有的返回参数。更多信息请参见返回结构

说明

仅当请求参数输入不合法时提示下文中的接口错误码。若请求参数输入无误,将不会提示接口错误码,且接口的返回状态码将为200,但这并不代表对所有资源的操作均已成功,单个资源的操作结果请参见如下返回参数中的信息。

参数
类型
示例值
描述
OperationDetails
Array of Object

--

操作详情。

请求示例

GET /?Action=CreateTags&Version=2020-04-01&ResourceType=instance&ResourceIds.1=i-l8u0p77yseabkpak****&ResourceIds.2=i-l8u0p7xyseabkbak****&Tags.1.Key=k1&Tags.1.Value=v1 HTTP/1.1
Host: open.volcengineapi.com
Region: cn-beijing
ServiceName: ecs

返回示例

{
    "ResponseMetadata": {
        "RequestId": "2021062415303301022514515207C4****",
        "Action": "CreateTags",
        "Version": "2020-04-01",
        "Service": "ecs",
        "Region": "cn-beijing"
    },
    "Result": {
        "OperationDetails": [
            {
                "Error": null,
                "ResourceId": "i-l8u0p77yseabkpak****"
            },
            {
                "Error": {
                    "Code": "InvalidResourceId.NotFound",
                    "Message": "The specified ResourceId does not exist."
                },
                "ResourceId": "i-l8u0p7xyseabkbak****"
            }
        ]
    }
}

错误码

下表为您列举了该接口与业务逻辑相关的错误码。公共错误码请参见公共错误码文档。

状态码
错误码
错误信息
说明
400
IdempotentParameterMismatch
The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.

幂等参数不一致。

400
InvalidClientToken.Malformed
The specified ClientToken is malformed.

指定的ClientToken不合法。

400
InvalidTagKey.Malformed
The specified TagKey is malformed.

指定的标签的键不合法。

400
InvalidTagValue.Malformed
The specified TagValue is malformed.

指定的标签的值不合法。

400
LimitExceeded.MaximumResourceIds
You've reached the limit on the number of ResourceIds that you can set.

指定的资源ID数量超过限制。

400
LimitExceeded.MaximumTags
You've reached the limit on the number of tags that you can create.

指定的标签数量超过最大限制。

400
QuotaExceeded.MaximumTags
You've reached the limit on the number of Tags that you can create.

已达到单个资源可创建标签上限。

404
InvalidResourceId.NotFound
The specified ResourceId does not exist.

指定资源不存在。

404
InvalidResourceType.NotFound
The specified ResourceType does not exist.

指定的资源类型不存在。

404
InvalidTag.NotFound
The specified tag does not exist.

指定的键值不存在。

409
InvalidTagKey.Conflict
The specified TagKey already exists.

指定的标签键已存在。

412
IdempotentProcessing
The request uses the same client token as a previous one that is still in process.

先前的幂等请求仍在处理中,请稍后重试。

500
InternalError
An internal error has occurred.

内部错误,请重试。如果多次尝试失败,请提交工单。