list_object_storage_objects
List objects in an Object Storage bucket with optional prefix filtering and pagination using continuation tokens.
Instructions
List objects in an Object Storage bucket. Supports an optional prefix to filter by key path (e.g. 'images/' to list only objects under that prefix), an optional continuation_token to continue from a previous page, and an optional max_keys to control page size. Returns up to 1000 objects per call by default; use the next_continuation_token from the response as continuation_token in a subsequent call to page through larger result sets.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bucket | Yes | the name of the object storage bucket | |
| prefix | No | optional key prefix to filter results (e.g. 'images/' to list only objects under that path) | |
| max_keys | No | optional maximum number of objects to return in a single page | |
| continuation_token | No | optional pagination token returned by a previous list operation to continue listing objects |