-
Notifications
You must be signed in to change notification settings - Fork 613
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06931a5
commit b589a08
Showing
8 changed files
with
38,679 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"pagination": { | ||
"ListClusters": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "clusterArns" | ||
}, | ||
"ListContainerInstances": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "containerInstanceArns" | ||
}, | ||
"ListTaskDefinitions": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "taskDefinitionArns" | ||
}, | ||
"ListTaskDefinitionFamilies": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "families" | ||
}, | ||
"ListTasks": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "taskArns" | ||
}, | ||
"ListServices": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "serviceArns" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
{ | ||
"version": 2, | ||
"waiters": { | ||
"TasksRunning": { | ||
"delay": 6, | ||
"operation": "DescribeTasks", | ||
"maxAttempts": 100, | ||
"acceptors": [ | ||
{ | ||
"expected": "STOPPED", | ||
"matcher": "pathAny", | ||
"state": "failure", | ||
"argument": "tasks[].lastStatus" | ||
}, | ||
{ | ||
"expected": "MISSING", | ||
"matcher": "pathAny", | ||
"state": "failure", | ||
"argument": "failures[].reason" | ||
}, | ||
{ | ||
"expected": "RUNNING", | ||
"matcher": "pathAll", | ||
"state": "success", | ||
"argument": "tasks[].lastStatus" | ||
} | ||
] | ||
}, | ||
"TasksStopped": { | ||
"delay": 6, | ||
"operation": "DescribeTasks", | ||
"maxAttempts": 100, | ||
"acceptors": [ | ||
{ | ||
"expected": "STOPPED", | ||
"matcher": "pathAll", | ||
"state": "success", | ||
"argument": "tasks[].lastStatus" | ||
} | ||
] | ||
}, | ||
"ServicesStable": { | ||
"delay": 15, | ||
"operation": "DescribeServices", | ||
"maxAttempts": 40, | ||
"acceptors": [ | ||
{ | ||
"expected": "MISSING", | ||
"matcher": "pathAny", | ||
"state": "failure", | ||
"argument": "failures[].reason" | ||
}, | ||
{ | ||
"expected": "DRAINING", | ||
"matcher": "pathAny", | ||
"state": "failure", | ||
"argument": "services[].status" | ||
}, | ||
{ | ||
"expected": "INACTIVE", | ||
"matcher": "pathAny", | ||
"state": "failure", | ||
"argument": "services[].status" | ||
}, | ||
{ | ||
"expected": true, | ||
"matcher": "path", | ||
"state": "success", | ||
"argument": "services | [@[?length(deployments)!=`1`], @[?desiredCount!=runningCount]][] | length(@) == `0`" | ||
} | ||
] | ||
}, | ||
"ServicesInactive": { | ||
"delay": 15, | ||
"operation": "DescribeServices", | ||
"maxAttempts": 40, | ||
"acceptors": [ | ||
{ | ||
"expected": "MISSING", | ||
"matcher": "pathAny", | ||
"state": "failure", | ||
"argument": "failures[].reason" | ||
}, | ||
{ | ||
"expected": "INACTIVE", | ||
"matcher": "pathAny", | ||
"state": "success", | ||
"argument": "services[].status" | ||
} | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.