删除镜像Tag
删除镜像仓库中镜像的tag,仅可删除企业开通的私有镜像仓库(以alayanew开头)中的镜像。
DELETE
https://api.alayanew.com/api/image/v1/tag
Authorizations
Authorizations:StringHeaderRequired
用户可通过已获取Serverless API Key做验证,例如:plain Credential=[YOUR_AK],Signature=[YOUR_SK]。
Query Parameters
aidcId:StringRequired
智算中心ID。
image:StringRequired
镜像名称。
tag:String
镜像版本(不指定此值时会删除整个镜像)。
Response
状态码:application/json
200
code:Int
code是一种常见的返回 值形式,表示查询操作的执行结果。
0
-1
0是成功标识,表示操作成功完成。
msg:String
code返回值为-1时,返回异常信息。
cURL
Python
JavaScript
Go
Java
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"
}'
200
400
401
404
429
503
504
{
"code": 0
}