import type { DeployableType } from '../schemas/DeployableType'; /** * Deployable update request body */ export interface DeployableUpdateRequest { /** * 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; }