查询镜像列表
查询指定AIDC下用户的镜像仓库镜像列表,包括企业开通的私有镜像仓库的镜像和平台预置的公共镜像。
GET
https://api.alayanew.com/api/image/v1/image/list
Authorizations
Authorizations:StringHeaderRequired
用户可通过已获取Serverless API Key做验证,例如:plain Credential=[YOUR_AK],Signature=[YOUR_SK]。
Query Parameters
aidcId:StringRequired
智算中心ID。
image:String
镜像名称。
projectName:String
项目名称,非空时查询有权限所有Project下的镜像。
Response
状态码:application/json
200
code:Int
code是一种常见的返回值形式,表示查询操作的执行结果。
0
-1
0是成功标识,表示操作成功完成。
data:ObjectRequired
data.id:Int
镜像ID。
data.projectId:Int
镜像项目ID。
data.name:String
镜像名称。
data.description:String
镜像描述。
data.artifactCount:Int
镜像Tag数量。
data.pullCount:Int
镜像拉取次数。
data.isPublic:String
是否公开。
data.creationTime:Timestamp
镜像创建时间。
data.updateTime:Timestamp
镜像更新时间。
msg:String
code返回值为-1时,返回异常信息。
cURL
Python
JavaScript
Go
Java
curl -X GET 'https://api.alayanew.com/api/image/v1/image/list?aidcId=1&image=hello'
-H 'Authorization: plain Credential=YOUR_AK,Signature=YOUR_SK'
200
400
401
404
429
503
504
{
"code": 0,
"data": [
{
"id": 145,
"projectId": 438,
"name": "alayanew-a26e1508-9fa2-4ad1-a231-a94691ff0feb/hello2",
"description": null,
"artifactCount": 3,
"pullCount": 8,
"isPublic": "false",
"createTime": "2025-02-13T12:15:57.784Z",
"updateTime": "2025-02-28T09:06:40.252Z"
},
{
"id": 140,
"projectId": 438,
"name": "alayanew-a26e1508-9fa2-4ad1-a231-a94691ff0feb/pytest",
"description": null,
"artifactCount": 1,
"pullCount": 5,
"isPublic": "false",
"createTime": "2025-02-10T08:57:19.967Z",
"updateTime": "2025-02-20T03:53:45.256Z"
}
]
}