delete-bucket
Remove a storage bucket from the Insforge backend service to free up resources and manage your cloud storage infrastructure.
Instructions
Deletes a storage bucket
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | API key for authentication (optional if provided via --api_key) | |
bucketName | Yes | Name of the bucket to delete |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"description": "API key for authentication (optional if provided via --api_key)",
"type": "string"
},
"bucketName": {
"description": "Name of the bucket to delete",
"type": "string"
}
},
"required": [
"bucketName"
],
"type": "object"
}