跳到主要内容

删除镜像Tag

删除镜像仓库中镜像的tag,仅可删除企业开通的私有镜像仓库(以alayanew开头)中的镜像。
DELETE
https://api.alayanew.com/api/image/v1/tag
Authorizations
AuthorizationsStringHeaderRequired

用户可通过已获取Serverless API Key做验证,例如:plain Credential=[YOUR_AK],Signature=[YOUR_SK]。

Query Parameters
aidcIdStringRequired

智算中心ID。

imageStringRequired

镜像名称。

tagString

镜像版本(不指定此值时会删除整个镜像)。

Response
状态码:application/json
codeInt

code是一种常见的返回值形式,表示查询操作的执行结果。

0是成功标识,表示操作成功完成。
msgString

code返回值为-1时,返回异常信息。

curl -X DELETE 'https://api.alayanew.com/api/image/v1/tag'   
        -H 'Authorization: plain Credential=YOUR_AK,Signature=YOUR_SK'  
        -H 'Content-Type: application/json'   
        -d '{
        "aidcId": "1",
        "image": "registry.hd-01.alayanew.com/aladdin/python:3.13",
        "tag": "8.3.4"
}'
{
    "code": 0
}