delete_object
Remove specific objects from MinIO storage buckets using bucket and object name inputs to manage storage resources efficiently.
Instructions
删除存储桶中的对象
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucketName | Yes | 存储桶名称 | |
objectName | Yes | 对象名称 |
Input Schema (JSON Schema)
{
"properties": {
"bucketName": {
"description": "存储桶名称",
"type": "string"
},
"objectName": {
"description": "对象名称",
"type": "string"
}
},
"required": [
"bucketName",
"objectName"
],
"type": "object"
}