update_work_queue
Modify a Prefect work queue's settings including name, description, paused status, and concurrency limit to control workflow execution behavior.
Instructions
Update a work queue.
Args: work_queue_id: The work queue UUID name: New name description: New description is_paused: New paused status concurrency_limit: New concurrency limit
Returns: Details of the updated work queue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
concurrency_limit | No | ||
description | No | ||
is_paused | No | ||
name | No | ||
work_queue_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"concurrency_limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Concurrency Limit"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"is_paused": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Is Paused"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"work_queue_id": {
"title": "Work Queue Id",
"type": "string"
}
},
"required": [
"work_queue_id"
],
"type": "object"
}