Queries the Directed Acyclic Graph (DAG) of a task flow.
Try it now
Test
RAM authorization
|
Action |
Access level |
Resource type |
Condition key |
Dependent action |
|
dms:GetTaskFlowGraph |
get |
*All Resource
|
None | None |
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| Tid |
integer |
No |
The ID of the tenant. Note
To view the tenant ID, hover over the profile picture in the upper-right corner of the DMS console. View information about the current tenant. |
3*** |
| DagId |
integer |
Yes |
The ID of the task flow. Call ListTaskFlow or ListLhTaskFlowAndScenario to query this ID. |
15*** |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
|||
| RequestId |
string |
The ID of the request. |
D9D91166-A626-5F4E-9CA6-7AB10C59DBD8 |
| ErrorCode |
string |
The error code if the request failed. |
UnknownError |
| ErrorMessage |
string |
The error message if the request failed. |
UnknownError |
| Success |
boolean |
Whether the request was successful. Valid values:
|
true |
| TaskFlowGraph |
object |
The DAG graph of the task flow. |
|
| DagName |
string |
The name of the task flow. |
test |
| Nodes |
object |
||
| Node |
array<object> |
The nodes in the task flow. |
|
|
object |
|||
| DagId |
integer |
The ID of the task flow. |
15*** |
| NodeId |
integer |
The ID of the node. |
44*** |
| NodeName |
string |
The name of the node. |
test |
| NodeType |
integer |
The node type. NodeType parameter. |
NORMAL_SQL |
| NodeContent |
string |
The configuration of the node. |
{ODI3OTNRVC****UHVFT29"} |
| TimeVariables |
string |
The time variables for the node. |
{\"variables\":[{\"name\":\"Today\",\"pattern\":\"yyyy-MM-dd|+1d\"}]} |
| NodeConfig |
string |
The advanced configuration of the node. |
{\"dbId\":39****,\"dbType\":\"mysql\",\"locale\":\"zh\",\"sql\":\"/* Make sure the following SQL meets your requirements before you submit it for execution */\\n\\nCREATE TABLE IF NOT EXISTS `momo_weekGather` (\\n\\t`id` bigint AUTO_INCREMENT DEFAULT '0',\\n\\t`age` bit NULL,\\n\\t`action` varchar(150) NULL,\\n\\t`elapse_time` datetime NULL,\\n\\tPRIMARY KEY (`id`)\\n) ENGINE=InnoDB\\nDEFAULT CHARACTER SET=utf8;\"} |
| GraphParam |
string |
The position of the node in the DAG. |
{\"x\":541,\"y\":322,\"layoutType\":\"Horizontal\"} |
| Edges |
object |
||
| Edge |
array<object> |
The edges in the task flow. |
|
|
object |
|||
| DagId |
integer |
The ID of the task flow. |
15*** |
| Id |
integer |
The ID of the task flow edge. |
24*** |
| NodeEnd |
integer |
The ID of the target node on the edge. |
44*** |
| NodeFrom |
integer |
The ID of the source node on the edge. |
44*** |
| Status |
integer |
The status of the task flow. Valid values:
|
2 |
| CanEdit |
boolean |
Whether the task flow is editable. Valid values:
|
true |
Examples
Success response
JSON format
{
"RequestId": "D9D91166-A626-5F4E-9CA6-7AB10C59DBD8",
"ErrorCode": "UnknownError",
"ErrorMessage": "UnknownError",
"Success": true,
"TaskFlowGraph": {
"DagName": "test",
"Nodes": {
"Node": [
{
"DagId": 0,
"NodeId": 0,
"NodeName": "test",
"NodeType": 0,
"NodeContent": "{ODI3OTNRVC****UHVFT29\"}",
"TimeVariables": "{\\\"variables\\\":[{\\\"name\\\":\\\"Today\\\",\\\"pattern\\\":\\\"yyyy-MM-dd|+1d\\\"}]}",
"NodeConfig": "{\\\"dbId\\\":39****,\\\"dbType\\\":\\\"mysql\\\",\\\"locale\\\":\\\"zh\\\",\\\"sql\\\":\\\"/* Make sure the following SQL meets your requirements before you submit it for execution */\\\\n\\\\nCREATE TABLE IF NOT EXISTS `momo_weekGather` (\\\\n\\\\t`id` bigint AUTO_INCREMENT DEFAULT '0',\\\\n\\\\t`age` bit NULL,\\\\n\\\\t`action` varchar(150) NULL,\\\\n\\\\t`elapse_time` datetime NULL,\\\\n\\\\tPRIMARY KEY (`id`)\\\\n) ENGINE=InnoDB\\\\nDEFAULT CHARACTER SET=utf8;\\\"}",
"GraphParam": "{\\\"x\\\":541,\\\"y\\\":322,\\\"layoutType\\\":\\\"Horizontal\\\"}"
}
]
},
"Edges": {
"Edge": [
{
"DagId": 0,
"Id": 0,
"NodeEnd": 0,
"NodeFrom": 0
}
]
},
"Status": 2,
"CanEdit": true
}
}
Error codes
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.