delete_variable
Remove a specific variable from Prefect's workflow automation platform by providing its name to maintain clean and organized workflow configurations.
Instructions
Delete a variable by name.
Args: name: The variable name
Returns: Confirmation message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}