跳到主要内容

查询任务详情

查询指定任务ID的详情。
GET
https://api.alayanew.com/api/serverless-train/v1/task/{id}
Authorizations
AuthorizationsStringHeaderRequired

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

Path Parameters
idString

任务ID。

Response
状态码:application/json
codeInt

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

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

msgString

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

curl -X GET 'https://api.alayanew.com/api/serverless-train/v1/task/6ef0ef3c-252a-44c8-aba3-a87e23615c76' 
     -H 'Authorization: plain Credential=YOUR_AK,Signature=YOUR_SK'

{
    "code": 0,
    "data": {
        "id": "506927a1-1883-4413-abad-0de1ff309023",
        "name": "rungroup11",
        "createAt": "2025-02-21T02:51:53.000+00:00",
        "updateAt": "2025-02-24T02:44:28.000+00:00",
        "type": "group",
        "aidcId": "1",
        "status": "running",
        "reason": "",
        "config": {
            "cmd": [
                "python3",
                "a.py"
            ],
            "env": {},
            "args": [],
            "image": "registry.hd-01.alayanew.com/aladdin/python:3.13",
            "vksId": "vc3jedd7crnd",
            "labels": {},
            "workDir": "/root/",
            "replicas": 1,
            "resource": {
                "ib": null,
                "cpu": 2,
                "gpu": {
                    "count": 0,
                    "gpuType": ""
                },
                "mem": 8,
                "epheneralStorage": 32
            },
            "namespace": "default",
            "extensions": {},
            "imagePullSecret": {
                "password": "[password]",
                "registry": "https://registry.hd-01.alayanew.com:8443",
                "username": "admin"
            }
        }
    }
}