blob_container_delete
Remove a Blob Storage container from Azure using the Model Context Protocol, ensuring automatic logging and audit tracking for the deletion operation. Input the container name to execute.
Instructions
Delete a Blob Storage container
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_name | Yes | Name of the Blob Storage container to delete |
Input Schema (JSON Schema)
{
"properties": {
"container_name": {
"description": "Name of the Blob Storage container to delete",
"type": "string"
}
},
"required": [
"container_name"
],
"type": "object"
}