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

74 lines
1.4 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",
2018-02-11 09:52:35 +01:00
"state": "success"
},
{
"expected": 301,
"matcher": "status",
"state": "success"
},
{
"expected": 403,
"matcher": "status",
2015-10-08 20:16:11 +02:00
"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
}
}
}