Switch to using the dep tool and update all the dependencies
This commit is contained in:
parent
5135ff73cb
commit
98c2d2c41b
5321 changed files with 4483201 additions and 5922 deletions
5368
vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/api-2.json
generated
vendored
Normal file
5368
vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/api-2.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
2886
vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/docs-2.json
generated
vendored
Normal file
2886
vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/docs-2.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
5
vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/examples-1.json
generated
vendored
Normal file
5
vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/examples-1.json
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
}
|
||||
}
|
66
vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/paginators-1.json
generated
vendored
Normal file
66
vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/paginators-1.json
generated
vendored
Normal file
|
@ -0,0 +1,66 @@
|
|||
{
|
||||
"pagination": {
|
||||
"ListBuckets": {
|
||||
"result_key": "Buckets"
|
||||
},
|
||||
"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": {
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
73
vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/waiters-2.json
generated
vendored
Normal file
73
vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/waiters-2.json
generated
vendored
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue