pause_deployment_schedule
Pause the automated schedule of a Prefect deployment to temporarily halt workflow execution without deleting the deployment configuration.
Instructions
Pause a deployment's schedule.
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"
}