Skip to content

Commit 7480e9f

Browse files
leslitagorditahzoppetti
authored andcommitted
[Update] GET /object-storage/buckets/{clusterId}/{bucket}/object-list (#127)
* Update GET /object-storage/buckets/{clusterId}/{bucket}/object-list Add `next_marker` and `is_truncated` properties. * Update `getObjectStorageBucketContent` Fix the description for `marker`
1 parent acbd17d commit 7480e9f

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

openapi.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9155,8 +9155,9 @@ paths:
91559155
required: false
91569156
description: >
91579157
The "marker" for this request, which can be used to paginate through large buckets.
9158-
This should be the name of the last object on the last page of results. Listing
9159-
bucket contents *does not* support arbitrary page access.
9158+
Its value should be the value of the `next_marker` property returned with the last page.
9159+
Listing bucket contents *does not* support arbitrary page access. See the `next_marker`
9160+
property in the responses section for more details.
91609161
schema:
91619162
type: string
91629163
- name: delimiter
@@ -15921,6 +15922,17 @@ components:
1592115922
The size of this object, in bytes. `null` if this object represents
1592215923
a prefix.
1592315924
example: 123
15925+
next_marker:
15926+
type: string
15927+
description: >
15928+
Returns the value you should pass to the `marker` query parameter to get the next page of objects.
15929+
If there is no next page, `null` will be returned.
15930+
example: bd021c21-e734-4823-97a4-58b41c2cd4c8.892602.184
15931+
nullable: true
15932+
is_truncated:
15933+
type: boolean
15934+
description: Designates if there is another page of bucket objects.
15935+
example: true
1592415936
ObjectStorageCluster:
1592515937
type: object
1592615938
description: An Object Storage Cluster

0 commit comments

Comments
 (0)