Skip to content

Commit

Permalink
Add support for search using listOjbectsV2 API
Browse files Browse the repository at this point in the history
  • Loading branch information
JBWatenbergScality committed Oct 4, 2022
1 parent da29874 commit b5807de
Showing 1 changed file with 88 additions and 0 deletions.
88 changes: 88 additions & 0 deletions zenko-2018-07-11-xml.api.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,94 @@
}
}
},
"searchBucketV2": {
"http": {
"method": "GET",
"requestUri": "/{Bucket}?list-type=2"
},
"input": {
"type": "structure",
"required": [
"Bucket",
"Query"
],
"members": {
"Query": {
"location": "querystring",
"locationName": "search"
},
"Bucket": {
"location": "uri",
"locationName": "Bucket"
},
"Delimiter": {
"location": "querystring",
"locationName": "delimiter"
},
"EncodingType": {
"location": "querystring",
"locationName": "encoding-type"
},
"MaxKeys": {
"location": "querystring",
"locationName": "max-keys",
"type": "integer"
},
"Prefix": {
"location": "querystring",
"locationName": "prefix"
},
"ContinuationToken": {
"location": "querystring",
"locationName": "continuation-token"
},
"FetchOwner": {
"location": "querystring",
"locationName": "fetch-owner",
"type": "boolean"
},
"StartAfter": {
"location": "querystring",
"locationName": "start-after"
},
"RequestPayer": {
"location": "header",
"locationName": "x-amz-request-payer"
},
"ExpectedBucketOwner": {
"location": "header",
"locationName": "x-amz-expected-bucket-owner"
}
}
},
"output": {
"type": "structure",
"members": {
"IsTruncated": {
"type": "boolean"
},
"Contents": {
"shape": "ContentsStructure"
},
"Name": {},
"Prefix": {},
"Delimiter": {},
"MaxKeys": {
"type": "integer"
},
"CommonPrefixes": {
"shape": "CommonPrefixesStructure"
},
"EncodingType": {},
"KeyCount": {
"type": "integer"
},
"ContinuationToken": {},
"NextContinuationToken": {},
"StartAfter": {}
}
}
},
"searchBucket": {
"http": {
"method": "GET",
Expand Down

0 comments on commit b5807de

Please sign in to comment.