You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<pre>Retrieves a list of objects matching the criteria.
876
876
877
877
Args:
878
878
bucket: string, Name of the bucket in which to look for objects. (required)
879
879
delimiter: string, Returns results in a directory-like mode. items will contain only objects whose names, aside from the prefix, do not contain delimiter. Objects whose names, aside from the prefix, contain delimiter will have their name, truncated after the delimiter, returned in prefixes. Duplicate prefixes are omitted.
880
880
endOffset: string, Filter results to objects whose names are lexicographically before endOffset. If startOffset is also set, the objects listed will have names between startOffset (inclusive) and endOffset (exclusive).
881
881
includeTrailingDelimiter: boolean, If true, objects that end in exactly one instance of delimiter will have their metadata included in items in addition to prefixes.
882
+
matchGlob: string, Filter results to objects and prefixes that match this glob pattern.
882
883
maxResults: integer, Maximum number of items plus prefixes to return in a single page of responses. As duplicate prefixes are omitted, fewer total results may be returned than requested. The service will use this parameter or 1,000 items, whichever is smaller.
883
884
pageToken: string, A previously-returned page token representing part of the larger set of results to view.
884
885
prefix: string, Filter results to objects whose names begin with this prefix.
"description": "Filter results to objects and prefixes that match this glob pattern.",
2146
+
"location": "query",
2147
+
"type": "string"
2148
+
},
2144
2149
"maxResults": {
2145
2150
"default": "1000",
2146
2151
"description": "Maximum number of items plus prefixes to return in a single page of responses. As duplicate prefixes are omitted, fewer total results may be returned than requested. The service will use this parameter or 1,000 items, whichever is smaller.",
0 commit comments