mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-30 04:20:53 +00:00
Conver to regular Go vendor + dep tool
This commit is contained in:
+5368
File diff suppressed because it is too large
Load Diff
+2886
File diff suppressed because it is too large
Load Diff
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
}
|
||||
}
|
||||
+66
@@ -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
@@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user