prefect global-concurrency-limit
 Manage global concurrency limits.
prefect global-concurrency-limit ls
 List all global concurrency limits.
prefect global-concurrency-limit inspect
 Inspect a global concurrency limit.
Arguments
Arguments
The name of the global concurrency limit to inspect. [required]
prefect global-concurrency-limit delete
 Delete a global concurrency limit.
Arguments
Arguments
The name of the global concurrency limit to delete. [required]
prefect global-concurrency-limit enable
 Enable a global concurrency limit.
Arguments
Arguments
The name of the global concurrency limit to enable. [required]
prefect global-concurrency-limit disable
 Disable a global concurrency limit.
Arguments
Arguments
The name of the global concurrency limit to disable. [required]
prefect global-concurrency-limit update
 Update a global concurrency limit.
Arguments
Arguments
The name of the global concurrency limit to update. [required]
Example: prefect gcl update my-gcl —active-slots 5  prefect gcl update my-gcl —enable $ prefect gcl update my-gcl —disable —limit 5
prefect global-concurrency-limit create
 Create a global concurrency limit.Arguments:name (str): The name of the global concurrency limit to create.limit (int): The limit of the global concurrency limit.disable (Optional[bool]): Create an inactive global concurrency limit.active_slots (Optional[int]): The number of active slots.slot_decay_per_second (Optional[float]): The slot decay per second.Examples:$ prefect global-concurrency-limit create my-gcl —limit 10$ prefect gcl create my-gcl —limit 5 —active-slots 3$ prefect gcl create my-gcl —limit 5 —active-slots 3 —slot-decay-per-second 0.5$ prefect gcl create my-gcl —limit 5 —inactive