@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) • 549 B
text/typescript
import { StateRequest } from '@/models/api/StateRequest'
import { SchemaValues } from '@/types/schemas'
export type DeploymentFlowRunRequest = Partial<{
name: string | null,
parameters: SchemaValues,
idempotency_key: string | null,
context: unknown,
empirical_policy: unknown,
tags: string[] | null,
parent_task_run_id: string | null,
infrastructure_document_id: string | null,
state: Partial<StateRequest>,
work_queue_name: string | null,
job_variables: Record<string, unknown>,
enforce_parameter_schema: boolean | null,
}>