delete_block_document
Remove a block document from Prefect workflows by specifying its unique identifier to manage storage and resource allocation.
Instructions
Delete a block document by ID.
Args: block_document_id: The block document UUID
Returns: Confirmation message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
block_document_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"block_document_id": {
"title": "Block Document Id",
"type": "string"
}
},
"required": [
"block_document_id"
],
"type": "object"
}