Join us at inaugural PyAI Conf in San Francisco on March 10th! Learn more
prefect.cli.work_queue
create
create(name: Annotated[str, cyclopts.Parameter(help='The unique name to assign this work queue')])
set_concurrency_limit
set_concurrency_limit(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue')], limit: Annotated[int, cyclopts.Parameter(help='The concurrency limit to set on the queue.')])
clear_concurrency_limit
clear_concurrency_limit(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to clear')])
pause
pause(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to pause')])
resume
resume(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to resume')])
inspect
inspect(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to inspect')])
ls
ls()
preview
preview(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to preview')])
delete
delete(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to delete')])
read_wq_runs
read_wq_runs(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to poll')])
Was this page helpful?