Inital Commit
This commit is contained in:
Binary file not shown.
1384
Function Source Files/botocore/data/elbv2/2015-12-01/examples-1.json
Normal file
1384
Function Source Files/botocore/data/elbv2/2015-12-01/examples-1.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"pagination": {
|
||||
"DescribeLoadBalancers": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "NextMarker",
|
||||
"limit_key": "PageSize",
|
||||
"result_key": "LoadBalancers"
|
||||
},
|
||||
"DescribeTargetGroups": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "NextMarker",
|
||||
"limit_key": "PageSize",
|
||||
"result_key": "TargetGroups"
|
||||
},
|
||||
"DescribeListeners": {
|
||||
"input_token": "Marker",
|
||||
"output_token": "NextMarker",
|
||||
"limit_key": "PageSize",
|
||||
"result_key": "Listeners"
|
||||
},
|
||||
"DescribeAccountLimits": {
|
||||
"input_token": "Marker",
|
||||
"limit_key": "PageSize",
|
||||
"output_token": "NextMarker",
|
||||
"result_key": "Limits"
|
||||
},
|
||||
"DescribeListenerCertificates": {
|
||||
"input_token": "Marker",
|
||||
"limit_key": "PageSize",
|
||||
"output_token": "NextMarker",
|
||||
"result_key": "Certificates"
|
||||
},
|
||||
"DescribeRules": {
|
||||
"input_token": "Marker",
|
||||
"limit_key": "PageSize",
|
||||
"output_token": "NextMarker",
|
||||
"result_key": "Rules"
|
||||
},
|
||||
"DescribeSSLPolicies": {
|
||||
"input_token": "Marker",
|
||||
"limit_key": "PageSize",
|
||||
"output_token": "NextMarker",
|
||||
"result_key": "SslPolicies"
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,100 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"LoadBalancerExists": {
|
||||
"delay": 15,
|
||||
"operation": "DescribeLoadBalancers",
|
||||
"maxAttempts": 40,
|
||||
"acceptors": [
|
||||
{
|
||||
"matcher": "status",
|
||||
"expected": 200,
|
||||
"state": "success"
|
||||
},
|
||||
{
|
||||
"matcher": "error",
|
||||
"expected": "LoadBalancerNotFound",
|
||||
"state": "retry"
|
||||
}
|
||||
]
|
||||
},
|
||||
"LoadBalancerAvailable": {
|
||||
"delay": 15,
|
||||
"operation": "DescribeLoadBalancers",
|
||||
"maxAttempts": 40,
|
||||
"acceptors": [
|
||||
{
|
||||
"state": "success",
|
||||
"matcher": "pathAll",
|
||||
"argument": "LoadBalancers[].State.Code",
|
||||
"expected": "active"
|
||||
},
|
||||
{
|
||||
"state": "retry",
|
||||
"matcher": "pathAny",
|
||||
"argument": "LoadBalancers[].State.Code",
|
||||
"expected": "provisioning"
|
||||
},
|
||||
{
|
||||
"state": "retry",
|
||||
"matcher": "error",
|
||||
"expected": "LoadBalancerNotFound"
|
||||
}
|
||||
]
|
||||
},
|
||||
"LoadBalancersDeleted": {
|
||||
"delay": 15,
|
||||
"operation": "DescribeLoadBalancers",
|
||||
"maxAttempts": 40,
|
||||
"acceptors": [
|
||||
{
|
||||
"state": "retry",
|
||||
"matcher": "pathAll",
|
||||
"argument": "LoadBalancers[].State.Code",
|
||||
"expected": "active"
|
||||
},
|
||||
{
|
||||
"matcher": "error",
|
||||
"expected": "LoadBalancerNotFound",
|
||||
"state": "success"
|
||||
}
|
||||
]
|
||||
},
|
||||
"TargetInService":{
|
||||
"delay":15,
|
||||
"maxAttempts":40,
|
||||
"operation":"DescribeTargetHealth",
|
||||
"acceptors":[
|
||||
{
|
||||
"argument":"TargetHealthDescriptions[].TargetHealth.State",
|
||||
"expected":"healthy",
|
||||
"matcher":"pathAll",
|
||||
"state":"success"
|
||||
},
|
||||
{
|
||||
"matcher": "error",
|
||||
"expected": "InvalidInstance",
|
||||
"state": "retry"
|
||||
}
|
||||
]
|
||||
},
|
||||
"TargetDeregistered": {
|
||||
"delay": 15,
|
||||
"maxAttempts": 40,
|
||||
"operation": "DescribeTargetHealth",
|
||||
"acceptors": [
|
||||
{
|
||||
"matcher": "error",
|
||||
"expected": "InvalidTarget",
|
||||
"state": "success"
|
||||
},
|
||||
{
|
||||
"argument":"TargetHealthDescriptions[].TargetHealth.State",
|
||||
"expected":"unused",
|
||||
"matcher":"pathAll",
|
||||
"state":"success"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user