Queries the edges of the directed acyclic graph (DAG) for a task flow based on multiple conditions.
Operation description
This operation supports multi-condition queries. Use it to query edges of a specified task flow that meet all specified conditions.
Try it now
Test
RAM authorization
|
Action |
Access level |
Resource type |
Condition key |
Dependent action |
|
dms:ListTaskFlowEdgesByCondition |
list |
*All Resource
|
None | None |
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| Tid |
integer |
No |
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*** |
| DagId |
integer |
Yes |
The ID of the task flow. You can call the ListTaskFlow or ListLhTaskFlowAndScenario operation to query the task flow ID. |
15*** |
| Id |
integer |
No |
The ID of the task flow edge. |
24*** |
| NodeFrom |
integer |
No |
The ID of the start node on the edge. |
44*** |
| NodeEnd |
integer |
No |
The ID of the end node on the edge. |
44*** |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
|||
| RequestId |
string |
The ID of the request. You can use the ID to locate logs and troubleshoot issues. |
D86249CD-422F-5ACF-85BA-9187C986AE0B |
| ErrorCode |
string |
The error code returned if the request failed. |
UnknownError |
| ErrorMessage |
string |
The error message returned if the request failed. |
UnknownError |
| Success |
boolean |
Indicates whether the request was successful. Valid values:
|
true |
| Edges |
object |
||
| Edge |
array<object> |
The list of task flow edges. |
|
|
object |
|||
| Id |
integer |
The ID of the task flow edge. |
24*** |
| NodeEnd |
integer |
The ID of the end node on the edge. |
44*** |
| NodeFrom |
integer |
The ID of the start node on the edge. |
44*** |
Examples
Success response
JSON format
{
"RequestId": "D86249CD-422F-5ACF-85BA-9187C986AE0B",
"ErrorCode": "UnknownError",
"ErrorMessage": "UnknownError",
"Success": true,
"Edges": {
"Edge": [
{
"Id": 0,
"NodeEnd": 0,
"NodeFrom": 0
}
]
}
}
Error codes
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.