Inital Commit

This commit is contained in:
Brett Woodruff
2024-06-10 12:24:37 -04:00
commit 106024bcb4
2223 changed files with 241071 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,70 @@
{
"pagination": {
"ListMultipartUploads": {
"limit_key": "MaxUploads",
"more_results": "IsTruncated",
"output_token": [
"NextKeyMarker",
"NextUploadIdMarker"
],
"input_token": [
"KeyMarker",
"UploadIdMarker"
],
"result_key": [
"Uploads",
"CommonPrefixes"
]
},
"ListObjectVersions": {
"more_results": "IsTruncated",
"limit_key": "MaxKeys",
"output_token": [
"NextKeyMarker",
"NextVersionIdMarker"
],
"input_token": [
"KeyMarker",
"VersionIdMarker"
],
"result_key": [
"Versions",
"DeleteMarkers",
"CommonPrefixes"
]
},
"ListObjects": {
"more_results": "IsTruncated",
"limit_key": "MaxKeys",
"output_token": "NextMarker || Contents[-1].Key",
"input_token": "Marker",
"result_key": [
"Contents",
"CommonPrefixes"
]
},
"ListObjectsV2": {
"more_results": "IsTruncated",
"limit_key": "MaxKeys",
"output_token": "NextContinuationToken",
"input_token": "ContinuationToken",
"result_key": [
"Contents",
"CommonPrefixes"
]
},
"ListParts": {
"more_results": "IsTruncated",
"limit_key": "MaxParts",
"output_token": "NextPartNumberMarker",
"input_token": "PartNumberMarker",
"result_key": "Parts"
},
"ListDirectoryBuckets": {
"input_token": "ContinuationToken",
"limit_key": "MaxDirectoryBuckets",
"output_token": "ContinuationToken",
"result_key": "Buckets"
}
}
}

View File

@@ -0,0 +1,35 @@
{
"version": 1.0,
"merge": {
"pagination": {
"ListMultipartUploads": {
"non_aggregate_keys": [
"RequestCharged"
]
},
"ListObjectVersions": {
"non_aggregate_keys": [
"RequestCharged"
]
},
"ListObjects": {
"non_aggregate_keys": [
"RequestCharged"
]
},
"ListObjectsV2": {
"non_aggregate_keys": [
"RequestCharged"
]
},
"ListParts": {
"non_aggregate_keys": [
"ChecksumAlgorithm",
"Initiator",
"Owner",
"StorageClass"
]
}
}
}
}

View File

@@ -0,0 +1,73 @@
{
"version": 2,
"waiters": {
"BucketExists": {
"delay": 5,
"operation": "HeadBucket",
"maxAttempts": 20,
"acceptors": [
{
"expected": 200,
"matcher": "status",
"state": "success"
},
{
"expected": 301,
"matcher": "status",
"state": "success"
},
{
"expected": 403,
"matcher": "status",
"state": "success"
},
{
"expected": 404,
"matcher": "status",
"state": "retry"
}
]
},
"BucketNotExists": {
"delay": 5,
"operation": "HeadBucket",
"maxAttempts": 20,
"acceptors": [
{
"expected": 404,
"matcher": "status",
"state": "success"
}
]
},
"ObjectExists": {
"delay": 5,
"operation": "HeadObject",
"maxAttempts": 20,
"acceptors": [
{
"expected": 200,
"matcher": "status",
"state": "success"
},
{
"expected": 404,
"matcher": "status",
"state": "retry"
}
]
},
"ObjectNotExists": {
"delay": 5,
"operation": "HeadObject",
"maxAttempts": 20,
"acceptors": [
{
"expected": 404,
"matcher": "status",
"state": "success"
}
]
}
}
}