Inital Commit
This commit is contained in:
Binary file not shown.
1137
Function Source Files/botocore/data/ecs/2014-11-13/examples-1.json
Normal file
1137
Function Source Files/botocore/data/ecs/2014-11-13/examples-1.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"ListAccountSettings": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "settings"
|
||||
},
|
||||
"ListAttributes": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "attributes"
|
||||
},
|
||||
"ListServicesByNamespace": {
|
||||
"input_token": "nextToken",
|
||||
"limit_key": "maxResults",
|
||||
"output_token": "nextToken",
|
||||
"result_key": "serviceArns"
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -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": "length(services[?!(length(deployments) == `1` && runningCount == desiredCount)]) == `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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user