Domain name for API request: batch.tencentcloudapi.com.
This API is used to query the submission information of the specified job, with the return including the job submission information used as input parameters in the JobId and SubmitJob APIs.
A maximum of 2 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common parameter. The value used for this API: DescribeJobSubmitInfo. |
Version | Yes | String | Common parameter. The value used for this API: 2017-03-12. |
Region | Yes | String | Common parameter. For more information, please see the list of regions supported by the product. |
JobId | Yes | String | Instance ID |
Parameter Name | Type | Description |
---|---|---|
JobId | String | Instance ID |
JobName | String | Instance name |
JobDescription | String | Instance description |
Priority | Integer | Job priority. Tasks (Task) and task instances (TaskInstance) inherit the priority of the job |
Tasks | Array of Task | Task information |
Dependences | Array of Dependence | Dependency information |
Tags | Array of Tag | Tag list bound to the job. Note: This field may return null , indicating that no valid value was found. |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
https://batch.tencentcloudapi.com/?Action=DescribeJobSubmitInfo
&JobId=job-97zcl3wt
&<Common request parameters>
{
"Response": {
"Tasks": [
{
"TaskInstanceNum": 2,
"ComputeEnv": {
"EnvType": "MANAGED",
"EnvData": {
"InstanceType": "S1.SMALL1",
"ImageId": "img-bd78fy2t"
}
},
"RedirectInfo": {
"StdoutRedirectPath": "cos://bucket-appid.cosgz.myqcloud.com/hello2/logs/",
"StderrRedirectPath": "cos://bucket-appid..cosgz.myqcloud.com/hello2/logs/"
},
"Application": {
"Command": "python -c \"fib=lambda n:1 if n<=2 else fib(n-1)+fib(n-2); print(fib(20))\" ",
"DeliveryForm": "LOCAL"
},
"MaxRetryCount": 0,
"FailedAction": "TERMINATE",
"TaskName": "A"
},
{
"TaskInstanceNum": 2,
"ComputeEnv": {
"EnvType": "MANAGED",
"EnvData": {
"InstanceType": "S1.SMALL1",
"ImageId": "img-bd78fy2t"
}
},
"RedirectInfo": {
"StdoutRedirectPath": "cos://bucket-appid.cosgz.myqcloud.com/hello2/logs/",
"StderrRedirectPath": "cos://bucket-appid.cosgz.myqcloud.com/hello2/logs/"
},
"Application": {
"Command": "python -c \"fib=lambda n:1 if n<=2 else fib(n-1)+fib(n-2); print(fib(20))\" ",
"DeliveryForm": "LOCAL"
},
"MaxRetryCount": 0,
"FailedAction": "TERMINATE",
"TaskName": "B"
},
{
"TaskInstanceNum": 2,
"ComputeEnv": {
"EnvType": "MANAGED",
"EnvData": {
"InstanceType": "S1.SMALL1",
"ImageId": "img-bd78fy2t"
}
},
"RedirectInfo": {
"StdoutRedirectPath": "cos://bucket-appid.cosgz.myqcloud.com/hello2/logs/",
"StderrRedirectPath": "cos://bucket-appid.cosgz.myqcloud.com/hello2/logs/"
},
"Application": {
"Command": "python -c \"fib=lambda n:1 if n<=2 else fib(n-1)+fib(n-2); print(fib(20))\" ",
"DeliveryForm": "LOCAL"
},
"MaxRetryCount": 0,
"FailedAction": "TERMINATE",
"TaskName": "C"
},
{
"TaskInstanceNum": 2,
"ComputeEnv": {
"EnvType": "MANAGED",
"EnvData": {
"InstanceType": "S1.SMALL1",
"ImageId": "img-bd78fy2t"
}
},
"RedirectInfo": {
"StdoutRedirectPath": "cos://bucket-appid.cosgz.myqcloud.com/hello2/logs/",
"StderrRedirectPath": "cos://bucket-appid.cosgz.myqcloud.com/hello2/logs/"
},
"Application": {
"Command": "python -c \"fib=lambda n:1 if n<=2 else fib(n-1)+fib(n-2); print(fib(20))\" ",
"DeliveryForm": "LOCAL"
},
"MaxRetryCount": 0,
"FailedAction": "TERMINATE",
"TaskName": "D"
}
],
"Dependences": [
{
"StartTask": "A",
"EndTask": "B"
},
{
"StartTask": "A",
"EndTask": "C"
},
{
"StartTask": "B",
"EndTask": "D"
},
{
"StartTask": "C",
"EndTask": "D"
}
],
"JobName": "test job",
"Priority": 1,
"JobDescription": "xxx",
"JobId": "job-97zcl3wt",
"Tags": [
{
"Key": "batch-test-tag-job-key",
"Value": "batch-test-tag-job-value"
}
],
"RequestId": "1a69db97-95ff-4bf7-9eb2-875ea6e5737b"
}
}
This tool allows online call, signature authentication, SDK code generation and quick search of APIs to greatly improve the efficiency of using TencentCloud APIs.
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
Error Code | Description |
---|---|
InternalError | Internal error. |
InvalidParameter.JobIdMalformed | Invalid instance ID format. |
ResourceNotFound.Job | The specified instance does not exist. |
Was this page helpful?