forked from triggerflow/triggerflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmixed.json
More file actions
102 lines (102 loc) · 2.33 KB
/
mixed.json
File metadata and controls
102 lines (102 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"Comment": "Example State Machine",
"StartAt": "GenerateRandom",
"States": {
"GenerateRandom": {
"Type": "Task",
"Resource": "$step-generate-random",
"Next": "Verify"
},
"Verify": {
"Type": "Choice",
"Choices": [
{
"Variable": "$.random",
"NumericLessThan": 0,
"Next": "ToPositive"
},
{
"Variable": "$.random",
"NumericGreaterThan": 0,
"Next": "Pass"
}
]
},
"Pass": {
"Type": "Pass",
"Next": "GenerateList",
"InputPath": "$.random",
"ResultPath": "$.number"
},
"ToPositive": {
"Type": "Task",
"Resource": "$step-abs",
"Parameters": {
"number.$": "$.random"
},
"Next": "GenerateList"
},
"GenerateList": {
"Type": "Task",
"Resource": "$function:step-gen-list",
"Parameters": {
"size.$": "$.number"
},
"Next": "ParallelMap"
},
"ParallelMap": {
"Type": "Parallel",
"Branches": [
{
"StartAt": "MapAdd1",
"States": {
"MapAdd1": {
"Type": "Map",
"ItemsPath": "$.list",
"Iterator": {
"StartAt": "MapTask1",
"States": {
"MapTask1": {
"Type": "Task",
"Parameters": {
"x.$": "$",
"y": 100
},
"Resource": "$step-add",
"End": true
}
}
},
"End": true
}
}
},
{
"StartAt": "MapAdd2",
"States": {
"MapAdd2": {
"Type": "Map",
"ItemsPath": "$.list",
"Iterator": {
"StartAt": "MapTask2",
"States": {
"MapTask2": {
"Type": "Task",
"Parameters": {
"x.$": "$",
"y": -100
},
"Resource": "$function:step-add",
"End": true
}
}
},
"End": true
}
}
}
],
"End": true
}
}
}