Actions11
Overview
This node operation lists objects within a specified bucket in a MinIO storage service. It is useful for retrieving a list of objects stored in a bucket, optionally filtered by a prefix or listed recursively. Practical applications include managing and displaying stored files, performing batch operations on objects, or integrating with workflows that require object metadata.
Use Case Examples
- List all objects in a bucket to display them in a user interface.
- Retrieve objects with a specific prefix to process only certain files.
- Perform recursive listing to get all objects in nested directories within a bucket.
Properties
| Name | Meaning |
|---|---|
| Bucket Name | Specifies the bucket from which to list objects. It can be selected from a list of available buckets or provided as an ID. |
| Options | Additional options to filter or control the listing of objects. |
Output
JSON
objects- Array of objects listed from the specified bucket, each containing metadata about the object such as name, size, and other attributes.
Dependencies
- Requires connection to a MinIO storage service, typically authenticated via API credentials.
Troubleshooting
- Ensure the bucket name is correct and accessible with the provided credentials.
- If no objects are returned, verify the prefix and recursive options to match the expected object paths.
- Check network connectivity and MinIO service availability if the node fails to connect or list objects.
Links
- MinIO Client Quickstart Guide - Official documentation for MinIO client operations including listing objects.