Skip to content

[Update] GET /object-storage/buckets/{clusterId}/{bucket}/object-list #127

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9151,8 +9151,9 @@ paths:
required: false
description: >
The "marker" for this request, which can be used to paginate through large buckets.
This should be the name of the last object on the last page of results. Listing
bucket contents *does not* support arbitrary page access.
Its value should be the value of the `next_marker` property returned with the last page.
Listing bucket contents *does not* support arbitrary page access. See the `next_marker`
property in the responses section for more details.
schema:
type: string
- name: delimiter
Expand Down Expand Up @@ -15917,6 +15918,17 @@ components:
The size of this object, in bytes. `null` if this object represents
a prefix.
example: 123
next_marker:
type: string
description: >
Returns the value you should pass to the `marker` query parameter to get the next page of objects.
If there is no next page, `null` will be returned.
example: bd021c21-e734-4823-97a4-58b41c2cd4c8.892602.184
nullable: true
is_truncated:
type: boolean
description: Designates if there is another page of bucket objects.
example: true
ObjectStorageCluster:
type: object
description: An Object Storage Cluster
Expand Down