更新时间:2024-06-24 GMT+08:00
批量添加删除镜像标签
功能介绍
该接口用于为指定镜像批量添加/更新、删除标签。
约束与限制
请求消息
- 请求参数
参数
是否必选
参数类型
描述
tags
是
Array of objects
要操作的标签列表。详情请参见表2。
action
是
String
要进行的标签操作,区分大小写。支持create、delete,分别用于批量地创建/更新、删除标签。
请求示例
- 批量添加镜像标签,其中,标签键为“key1”对应的值为“value1”、标签键为“key2”对应的值为“value2”。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
POST https://{Endpoint}/v2/fd73a4a14a4a4dfb9771a8475e5198ea/images/67e17426-359e-49fb-aa12-0bd1756ec240/tags/action { "tags": [{ "value": "value1", "key": "key1" }, { "value": "value2", "key": "key2" }, { "value": "", "key": "key3" }], "action": "create" }
- 批量删除镜像标签,其中,标签键为“key1”对应的值为“value1”、标签键为“key2”对应的值为“value2”。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
POST https://{Endpoint}/v2/fd73a4a14a4a4dfb9771a8475e5198ea/images/67e17426-359e-49fb-aa12-0bd1756ec240/tags/action { "tags": [{ "value": "value1", "key": "key1" }, { "value": "value2", "key": "key2" }, { "value": "", "key": "key3" }], "action": "delete" }
父主题: 镜像标签