python-botocore/botocore/data/aws/s3/2006-03-01.waiters.json

64 lines
1.2 KiB
JSON
Raw Normal View History

2015-10-08 20:16:07 +02:00
{
2015-10-08 20:16:11 +02:00
"version": 2,
2015-10-08 20:16:07 +02:00
"waiters": {
"BucketExists": {
2015-10-08 20:16:11 +02:00
"delay": 5,
2015-10-08 20:16:07 +02:00
"operation": "HeadBucket",
2015-10-08 20:16:11 +02:00
"maxAttempts": 20,
"acceptors": [
{
"expected": 200,
"matcher": "status",
"state": "success"
},
{
"expected": 404,
"matcher": "status",
"state": "retry"
}
]
2015-10-08 20:16:07 +02:00
},
"BucketNotExists": {
2015-10-08 20:16:11 +02:00
"delay": 5,
2015-10-08 20:16:07 +02:00
"operation": "HeadBucket",
2015-10-08 20:16:11 +02:00
"maxAttempts": 20,
"acceptors": [
{
"expected": 404,
"matcher": "status",
"state": "success"
}
]
2015-10-08 20:16:07 +02:00
},
"ObjectExists": {
2015-10-08 20:16:11 +02:00
"delay": 5,
2015-10-08 20:16:07 +02:00
"operation": "HeadObject",
2015-10-08 20:16:11 +02:00
"maxAttempts": 20,
"acceptors": [
{
"expected": 200,
"matcher": "status",
"state": "success"
},
{
"expected": 404,
"matcher": "status",
"state": "retry"
}
]
2015-10-08 20:16:07 +02:00
},
"ObjectNotExists": {
2015-10-08 20:16:11 +02:00
"delay": 5,
2015-10-08 20:16:07 +02:00
"operation": "HeadObject",
2015-10-08 20:16:11 +02:00
"maxAttempts": 20,
"acceptors": [
{
"expected": 404,
"matcher": "status",
"state": "success"
}
]
2015-10-08 20:16:07 +02:00
}
}
}