delete_deployment
Remove a Prefect deployment by its UUID to clean up workflow automation resources and manage your deployment lifecycle.
Instructions
Delete a deployment by ID.
Args: deployment_id: The deployment UUID
Returns: Confirmation message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deployment_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"deployment_id": {
"title": "Deployment Id",
"type": "string"
}
},
"required": [
"deployment_id"
],
"type": "object"
}