Domain name for API request: omics.tencentcloudapi.com.
This API is used to retry the run.
A maximum of 20 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 Params. The value used for this API: RetryRuns. |
Version | Yes | String | Common Params. The value used for this API: 2022-11-28. |
Region | No | String | Common Params. This parameter is not required for this API. |
ProjectId | No | String | Project ID. (If you leave it blank, the default item in the specified region will be used.) |
RunGroupId | No | String | The run group ID that needs to be retried |
RunUuids.N | No | Array of String | The run UUID that needs to be retried |
WDLOption | No | RunOption | WDL running option. If you leave it blank, the retried run group running option will be used. |
NFOption | No | NFOption | Nextflow running option. If you leave it blank, the retried run group running option will be used. |
Parameter Name | Type | Description |
---|---|---|
RunGroupId | String | New run group ID Note: This field may return null, indicating that no valid values can be obtained. |
RequestId | String | The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. |
This example shows you how to retry the run group.
POST / HTTP/1.1
Host: omics.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: RetryRuns
<Common request parameters>
{
"ProjectId": "prj-aggressive-lime-porcupine-752427",
"RunGroupId": "run-ashamed-bleak-doggy-247963"
}
{
"Response": {
"RequestId": "46520c37-4d28-49e1-a738-01f64ae1b06b",
"RunGroupId": "run-greedy-ecru-bonobo-459181"
}
}
This example shows you how to retry a single run.
POST / HTTP/1.1
Host: omics.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: RetryRuns
<Common request parameters>
{
"ProjectId": "prj-aggressive-lime-porcupine-752427",
"RunUuids": [
"7b501b32-4e42-456a-9d54-aa3c9791beb0"
]
}
{
"Response": {
"RequestId": "e2fe59bb-21e3-45de-9289-9d22a5b1bdff",
"RunGroupId": "run-lonely-orange-dodo-410909"
}
}
This example shows you how to retry the specified run within the run group.
POST / HTTP/1.1
Host: omics.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: RetryRuns
<Common request parameters>
{
"ProjectId": "prj-aggressive-lime-porcupine-752427",
"RunGroupId": "run-ashamed-bleak-doggy-247963",
"RunUuids": [
"7b501b32-4e42-456a-9d54-aa3c9791beb0",
"38b860fa-65d3-4adc-8000-4c0c31d2ff51"
]
}
{
"Response": {
"RequestId": "e5dc747d-7ad2-44de-afe5-569c9a342db8",
"RunGroupId": "run-pretty-yellow-mastiff-141933"
}
}
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 |
---|---|
AuthFailure | CAM signature/authentication error. |
FailedOperation.RetryLimitExceeded | Retry count exceeds the upper limit. |
FailedOperation.StatusNotSupported | Unsupported status. |
InternalError | Internal error. |
InvalidParameter | Parameter error. |
InvalidParameterValue | Parameter value error. |
InvalidParameterValue.EnvironmentNotAvailable | Environment not available. |
OperationDenied | Operation rejected. |
ResourceNotFound | The resource does not exist. |
ResourceNotFound.EnvironmentNotExist | The environment does not exist. |
ResourceNotFound.ProjectNotExist | The project does not exist. |
ResourceNotFound.RunGroupNotExist | The run group does not exist. |
ResourceNotFound.RunNotExist | The run does not exist. |
Was this page helpful?