pause_work_queue
Stop a Prefect work queue from processing new workflow runs by providing its UUID, temporarily halting automated task execution.
Instructions
Pause a work queue.
Args: work_queue_id: The work queue UUID
Returns: Details of the updated work queue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
work_queue_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"work_queue_id": {
"title": "Work Queue Id",
"type": "string"
}
},
"required": [
"work_queue_id"
],
"type": "object"
}