@prefecthq/prefect-ui-library
Version:
This library is the Vue and Typescript component library for [Prefect 2](https://github.com/PrefectHQ/prefect) and [Prefect Cloud 2](https://www.prefect.io/cloud/). _The components and utilities in this project are not meant to be used independently_.
17 lines (16 loc) • 512 B
TypeScript
import { DateString } from '../../types/dates';
export type WorkPoolQueueResponseStatus = 'READY' | 'PAUSED' | 'NOT_READY';
export type WorkPoolQueueResponse = {
id: string;
created: DateString;
updated: DateString;
work_pool_id: string;
work_pool_name?: string;
name: string;
description: string | null;
is_paused: boolean | null;
concurrency_limit: number | null;
priority: number;
last_polled: DateString | null;
status?: WorkPoolQueueResponseStatus | null;
};