All Products
Search
Document Center

Data Management:ListSLARules

Last Updated:Oct 21, 2024

Queries the custom service level agreement (SLA) rules of a task flow.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
DagIdlongYes

The ID of the task flow. You can call the ListTaskFlow or ListLhTaskFlowAndScenario operation to query the task flow ID.

11****
TidlongNo

The ID of the tenant.

Note : To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see View information about the current tenant.
3***

Response parameters

ParameterTypeDescriptionExample
object

Schema of Response

RequestIdstring

The ID of the request. You can use the ID to query logs and troubleshoot issues.

3D1A59F4-EB2B-5D24-80A5-90C446A00DE2
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
SLARuleListarray<object>

The list of SLA rules.

SLARuleobject
Idlong

The ID of the SLA rule.

2
DagIdlong

The ID of the task flow.

11****
NodeIdlong

The ID of the task node.

1
RuleTypeinteger

The type of the rule. Valid values:

  • 0: an SLA rule for a task flow
  • 1: an SLA rule for a task node
0
IntervalMinutesinteger

The timeout period. Unit: minutes.

1080

Examples

Sample success responses

JSONformat

{
  "RequestId": "3D1A59F4-EB2B-5D24-80A5-90C446A00DE2",
  "ErrorCode": "UnknownError",
  "ErrorMessage": "UnknownError",
  "Success": true,
  "SLARuleList": {
    "SLARule": [
      {
        "Id": 2,
        "DagId": 0,
        "NodeId": 1,
        "RuleType": 0,
        "IntervalMinutes": 1080
      }
    ]
  }
}

Error codes

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

Change history

Change timeSummary of changesOperation
No change history