This API is used to query the details about a specified visualization job based on the job name.
GET /v1/{project_id}/visualization-jobs/{job_id}
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
project_id |
Yes |
String |
Project ID. For details about how to obtain the project ID, see Obtaining a Project ID. |
job_id |
Yes |
String |
ID of a visualization job |
None
Table 2 describes the response parameters.
Parameter |
Type |
Description |
|---|---|---|
error_message |
String |
Error message of a failed API call. This parameter is not included when the API call succeeds. |
error_code |
String |
Error code of a failed API call. For details, see Error Codes. This parameter is not included when the API call succeeds. |
job_name |
String |
Name of a visualization job |
service_url |
String |
Endpoint of a visualization job |
resource_id |
String |
Charged resource ID of a visualization job |
job_id |
Long |
ID of a visualization job |
job_desc |
String |
Description of a visualization job |
duration |
Long |
Visualization job running duration, in milliseconds |
create_time |
Long |
Time when a visualization job is created, in timestamp format |
train_url |
String |
OBS path of the visualization job output file |
status |
Int |
Status of a visualization job. For details about the job statuses, see Job Statuses. |
The following shows how to query the visualization job whose ID is 10.
GET https://endpoint/v1/{project_id}/visualization-jobs/10
{
"duration": 33000,
"service_url": "https://XXX/modelarts2/tensorboard/04f679b17380d32a2f32c00335c4b5ba/197/",
"job_name": "apiTest-11",
"create_time": 1565149736000,
"train_url": "/wph-test/zl-test/Flowers-Set/ApiTest/",
"job_id": 197,
"job_desc": "ModelArts API Dialtest",
"resource_id": "e17dd874-b5e0-4e9b-aaf0-22b045ad8571",
"remaining_duration": null,
"is_success": true,
"status": 7
}
{
"is_success": false,
"error_message": "The length of search content should be in [0,100]",
"error_code": "ModelArts.0104"
}
For details about the status code, see Table 1.
See Error Codes.