bucket_exists
Verify the existence of a specific bucket in MinIO object storage by providing the bucket name. Essential for managing storage operations and ensuring data organization.
Instructions
检查存储桶是否存在
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucketName | Yes | 存储桶名称 |
Input Schema (JSON Schema)
{
"properties": {
"bucketName": {
"description": "存储桶名称",
"type": "string"
}
},
"required": [
"bucketName"
],
"type": "object"
}