All Products
Search
Document Center

Data Management:UpdateTaskConfig

Last Updated:Apr 26, 2024

Updates the advanced configuration of a task node.

Operation description

You can call this operation to configure a failed task or rerun a task.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
TidlongNo

The ID of the tenant. You can call the GetUserActiveTenant or ListUserTenants operation to query the tenant ID.

3***
NodeIdstringYes

The ID of the task node. You can call the GetTaskInstanceRelation operation to query the node ID.

43****
NodeConfigstringYes

The advanced configuration for the node. The value of this parameter must be a JSON string.

{ "rerun":{ "rerunEnable":true, "rerunCount":1, "rerunInterval":10 } }

The following sample code provides an example on how to specify the NodeConfig parameter:

 
    "rerun":{ // This field is required.
        "rerunEnable":true, // Specifies whether to enable rerun.
        "rerunCount":1, // The number of reruns.
        "rerunInterval":10 // The interval between each rerun.
     
 

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The ID of the request.

F4E2A94B-604F-43FF-93E7-F4EE3DCF412E
ErrorCodestring

The error code returned if the request failed.

UnknownError
ErrorMessagestring

The error message returned if the request failed.

UnknownError
Successboolean

Indicates whether the request was successful. Valid values:

  • true: The request was successful.
  • false: The request failed.
true

Examples

Sample success responses

JSONformat

{
  "RequestId": "F4E2A94B-604F-43FF-93E7-F4EE3DCF412E",
  "ErrorCode": "UnknownError",
  "ErrorMessage": "UnknownError",
  "Success": true
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history