import type { DeployableType } from '../schemas/DeployableType'; /** * Deployable create request body */ export interface DeployableCreateRequest { /** * Description of the entity */ description?: string; /** * Identifier of the Deployable */ identifier: string; /** * Name of the Deployable */ name: string; /** * Deployable tags */ tags?: { [key: string]: string; }; type: DeployableType; /** * YAML for the Deployable configuration */ yaml: string; }