import type { DeployableType } from '../schemas/DeployableType'; /** * Deployable entity with full configuration */ export interface Deployable { /** * Account identifier */ account?: string; /** * Description of the entity */ description?: string; /** * Identifier of the Deployable */ identifier: string; /** * Name of the Deployable */ name: string; /** * Organization identifier */ org?: string; /** * Optional parent unique identifier */ parentUniqueId?: string; /** * Project identifier */ project?: string; /** * Deployable tags */ tags?: { [key: string]: string; }; type: DeployableType; /** * YAML for the Deployable configuration */ yaml: string; }