blob_delete
Remove a specific blob from Azure Blob Storage by specifying the container and blob name, ensuring efficient storage management and data cleanup.
Instructions
Delete a blob from Blob Storage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blob_name | Yes | Name of the blob to delete | |
container_name | Yes | Name of the Blob Storage container |
Input Schema (JSON Schema)
{
"properties": {
"blob_name": {
"description": "Name of the blob to delete",
"type": "string"
},
"container_name": {
"description": "Name of the Blob Storage container",
"type": "string"
}
},
"required": [
"container_name",
"blob_name"
],
"type": "object"
}