查询镜像Tag列表
查询指定AIDC下镜像仓库中指定镜像的Tag列表。
GET
https://api.alayanew.com/api/image/v1/tag/list
Authorizations
Authorizations:StringHeaderRequired
用户可通过已获取Serverless API Key做验证,例如:plain Credential=[YOUR_AK],Signature=[YOUR_SK]。
Query Parameters
aidcId:StringRequired
智算中心ID。
image:StringRequired
镜像名称。
Response
状态码:application/json
200
code:Int
code是一种常见的返回值形式,表示查询操作的执行结果。
0
-1
0是成功标识,表示操作成功完成。
data:ArrayRequired
data.name:String
镜像仓库访问地址。
data.tag:String
镜像标签。
data.pushTime:String
镜像推送时间。
data.size:Int
镜像大小,单位:B。
data.artifacts:Int
镜像元数据版本。
data.digest:Int
镜像摘要版本。
msg:String
code返回值为-1时,返回异常信息。
cURL
Python
JavaScript
Go
Java
curl -X GET 'https://api.alayanew.com/api/image/v1/tag/list?aidcId=1&image=alayanew-a26e1508-9fa2-4ad1-a231-a94691ff0feb/hello2'
-H 'Authorization: plain Credential=YOUR_AK,Signature=YOUR_SK'
200
400
401
404
429
503
504
{
"code": 0,
"data": [
{
"name": "alayanew-a26e1508-9fa2-4ad1-a231-a94691ff0feb/pytest",
"tag": "8.3.4",
"pushTime": "2025-02-10T08:57:21.125Z",
"size": 16508096185,
"artifacts": "sha256:88cb86343fb71d4d70aeaff5879ff2ec76bcf03cf6473f73b5a618c5130c5ac0",
"digest": "sha256:88cb86343fb71d4d70aeaff5879ff2ec76bcf03cf6473f73b5a618c5130c5ac0"
}
]
}