resume_work_queue
Resume a paused work queue in Prefect to restart workflow execution. Provide the work queue UUID to activate queued tasks and resume automated processes.
Instructions
Resume 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"
}