This API is used to query the execution status of a job.
After a job, such as creating or deleting a protection group, creating or deleting a protected instance, and creating or deleting a replication pair, is issued, job_id is returned, based on which you can query the execution status of the job.
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Specifies the project ID. |
job_id |
Yes |
String |
Specifies the job ID. Specifies the returned parameter when the asynchronous API command is issued. For details, see the description in Function. |
Parameter |
Type |
Description |
---|---|---|
status |
String |
Specifies the job status.
|
entities |
Object |
Specifies the job object. The value of this parameter varies depending on the job type. If the job is a protection group-related operation, the value will be server_group_id. If a subjob is available, details about the subjob are displayed. For details, see Table 1. |
job_id |
String |
Specifies the job ID. For details, see the description in Function. |
job_type |
String |
Specifies the job type.
|
begin_time |
String |
Specifies the start time. The default format is as follows: "yyyy-MM-dd 'T' HH:mm:ss.SSSZ", for example, 2019-04-01T12:00:00.000Z. |
end_time |
String |
Specifies the end time. The default format is as follows: "yyyy-MM-dd 'T' HH:mm:ss.SSSZ", for example, 2019-04-01T12:00:00.000Z. |
error_code |
String |
Specifies the error code returned upon a job execution failure. For details, see Error Codes. |
fail_reason |
String |
Specifies the cause of a job execution failure. For details, see Error Codes. |
message |
String |
Specifies the error message returned when an error occurs. For details, see the abnormal returned values in Returned Values. |
code |
String |
Specifies the error code returned when an error occurs. For details, see the abnormal returned values in Returned Values. |
Parameter |
Type |
Description |
---|---|---|
server_group_id |
String |
Specifies the ID of the protection group being queried. |
sub_jobs |
Array of objects |
Specifies the execution information of a subjob. When no subjob exists, the value of this parameter is left empty. The structure of each subjob is similar to that of the parent job. |
{ "status": "SUCCESS", "entities": { "server_group_id": "a59d008e-4bad-4bf3-9b17-6cc25e7da483" }, "job_id": "0000000062db92d70162db9d200f000a", "job_type": "createProtectionGroupNoCG", "begin_time": "2018-04-19T01:55:30.443Z", "end_time": "2018-04-19T01:55:45.493Z", "error_code": null, "fail_reason": null }
Or
{ "job_id": "ff8080826b45d4a5016b5036242c0025", "job_type": "stopProtectionGroupNoCG", "begin_time": "2019-06-13T09:40:53.930Z", "end_time": "2019-06-13T09:41:01.946Z", "status": "SUCCESS", "error_code": null, "fail_reason": null, "entities": { "sub_jobs": [ { "job_id": "ff8080826b45d4a5016b50362868002a", "job_type": "stopProtectionGroupRepNoCG", "begin_time": "2019-06-13T09:40:55.015Z", "end_time": "2019-06-13T09:40:58.951Z", "status": "SUCCESS", "error_code": null, "fail_reason": null, "entities": { "server_group_id": "1fd6903c-48f9-4772-8974-112dfbd74427" } }, { "job_id": "ff8080826b45d4a5016b50362870002b", "job_type": "stopProtectionGroupRepNoCG", "begin_time": "2019-06-13T09:40:55.022Z", "end_time": "2019-06-13T09:40:58.952Z", "status": "SUCCESS", "error_code": null, "fail_reason": null, "entities": { "server_group_id": "1fd6903c-48f9-4772-8974-112dfbd74427" } } ] } } { "error": { "message": "XXXX", "code": "XXX" } }
Returned Value |
Description |
---|---|
200 |
The server has accepted the request. |
Returned Value |
Description |
---|---|
400 Bad Request |
The server failed to process the request. |
401 Unauthorized |
You must enter a username and the password to access the requested page. |
403 Forbidden |
You are forbidden to access the requested page. |
404 Not Found |
The server could not find the requested page. |
405 Method Not Allowed |
You are not allowed to use the method specified in the request. |
406 Not Acceptable |
The response generated by the server could not be accepted by the client. |
407 Proxy Authentication Required |
You must use the proxy server for authentication so that the request can be processed. |
408 Request Timeout |
The request timed out. |
409 Conflict |
The request could not be processed due to a conflict. |
500 Internal Server Error |
Failed to complete the request because of a service error. |
501 Not Implemented |
Failed to complete the request because the server does not support the requested function. |
502 Bad Gateway |
Failed to complete the request because the server receives an invalid response from an upstream server. |
503 Service Unavailable |
Failed to complete the request because the system is unavailable. |
504 Gateway Timeout |
A gateway timeout error occurred. |