跳到主要内容

查询镜像列表

查询指定AIDC下用户的镜像仓库镜像列表,包括企业开通的私有镜像仓库的镜像和平台预置的公共镜像。
GET
https://api.alayanew.com/api/image/v1/image/list
Authorizations
AuthorizationsStringHeaderRequired

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

Query Parameters
aidcIdStringRequired

智算中心ID。

imageString

镜像名称。

projectNameString

项目名称,非空时查询有权限所有Project下的镜像。

Response
状态码:application/json
codeInt

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

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

data.idInt

镜像ID。

data.projectIdInt

镜像项目ID。

data.nameString

镜像名称。

data.descriptionString

镜像描述。

data.artifactCountInt

镜像Tag数量。

data.pullCountInt

镜像拉取次数。

data.isPublicString

是否公开。

data.creationTimeTimestamp

镜像创建时间。

data.updateTimeTimestamp

镜像更新时间。

msgString

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

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' 
{
    "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"
        }
    ]
}