UNPKG

@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_.

24 lines (18 loc) 1.11 kB
import { DeploymentScheduleCreate } from '@/models/DeploymentScheduleCreate' import { DeploymentScheduleUpdate } from '@/models/DeploymentScheduleUpdate' import { mapper } from '@/services/Mapper' import { WorkspaceApi } from '@/services/WorkspaceApi' export class WorkspaceDeploymentScheduleApi extends WorkspaceApi { protected override routePrefix = '/deployments' public createDeploymentSchedule(deploymentId: string, request: DeploymentScheduleCreate): Promise<void> { const body = mapper.map('DeploymentScheduleCreate', request, 'DeploymentScheduleCreateRequest') return this.post(`/${deploymentId}/schedules`, [body]) } public updateDeploymentSchedule(deploymentId: string, scheduleId: string, request: DeploymentScheduleUpdate): Promise<void> { const body = mapper.map('DeploymentScheduleUpdate', request, 'DeploymentScheduleUpdateRequest') return this.patch(`/${deploymentId}/schedules/${scheduleId}`, body) } public deleteDeploymentSchedule(deploymentId: string, scheduleId: string): Promise<void> { return this.delete(`/${deploymentId}/schedules/${scheduleId}`) } }