查询任务详情
查询指定任务ID的详情。
GET
https://api.alayanew.com/api/serverless-train/v1/task/{id}
Authorizations
Authorizations:StringHeaderRequired
用户可通过已获取Serverless API Key做验证,例如:plain Credential=[YOUR_AK],Signature=[YOUR_SK]。
Path Parameters
id:String
任务ID。
Response
状态码:application/json
200
code:Int
code是一种常见的返回值形式,表示查询操作的执行结果。
0
非0
0是成功标识,表示操作成功完成。
data:Object
msg:String
code返回值为-1时,返回异常信息。
cURL
Python
JavaScript
Go
Java
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'
200
400
401
404
429
503
504
{
"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"
}
}
}
}