affine_delete_blob
Remove a specific blob/file from workspace storage by specifying the workspace ID and blob key/ID, with an option to delete permanently.
Instructions
Delete a blob/file from workspace storage.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Blob key/ID to delete | |
permanently | No | Delete permanently | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"key": {
"description": "Blob key/ID to delete",
"type": "string"
},
"permanently": {
"description": "Delete permanently",
"type": "boolean"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"key"
],
"type": "object"
}