Add all dependency of go-getter

This commit is contained in:
Jingfang Liu
2018-08-15 11:34:38 -07:00
parent c9a8bc1121
commit ec95e5f97e
2894 changed files with 1945864 additions and 0 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,18 @@
{
"pagination": {
"DescribeInstanceHealth": {
"result_key": "InstanceStates"
},
"DescribeLoadBalancerPolicies": {
"result_key": "PolicyDescriptions"
},
"DescribeLoadBalancerPolicyTypes": {
"result_key": "PolicyTypeDescriptions"
},
"DescribeLoadBalancers": {
"input_token": "Marker",
"output_token": "NextMarker",
"result_key": "LoadBalancerDescriptions"
}
}
}

View File

@@ -0,0 +1,54 @@
{
"version":2,
"waiters":{
"InstanceDeregistered": {
"delay": 15,
"operation": "DescribeInstanceHealth",
"maxAttempts": 40,
"acceptors": [
{
"expected": "OutOfService",
"matcher": "pathAll",
"state": "success",
"argument": "InstanceStates[].State"
},
{
"matcher": "error",
"expected": "InvalidInstance",
"state": "success"
}
]
},
"AnyInstanceInService":{
"acceptors":[
{
"argument":"InstanceStates[].State",
"expected":"InService",
"matcher":"pathAny",
"state":"success"
}
],
"delay":15,
"maxAttempts":40,
"operation":"DescribeInstanceHealth"
},
"InstanceInService":{
"acceptors":[
{
"argument":"InstanceStates[].State",
"expected":"InService",
"matcher":"pathAll",
"state":"success"
},
{
"matcher": "error",
"expected": "InvalidInstance",
"state": "retry"
}
],
"delay":15,
"maxAttempts":40,
"operation":"DescribeInstanceHealth"
}
}
}