delete_bucket
Remove a specified storage bucket from MinIO object storage to manage storage resources effectively. Requires the bucket name for precise deletion.
Instructions
删除存储桶
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucketName | Yes | 存储桶名称 |
Input Schema (JSON Schema)
{
"properties": {
"bucketName": {
"description": "存储桶名称",
"type": "string"
}
},
"required": [
"bucketName"
],
"type": "object"
}