delete_objects
Remove multiple objects from a specified bucket in MinIO Storage MCP, streamlining batch deletions for efficient storage management.
Instructions
批量删除存储桶中的对象
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucketName | Yes | 存储桶名称 | |
objectNames | Yes | 对象名称列表 |
Input Schema (JSON Schema)
{
"properties": {
"bucketName": {
"description": "存储桶名称",
"type": "string"
},
"objectNames": {
"description": "对象名称列表",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"bucketName",
"objectNames"
],
"type": "object"
}