import type { EnvironmentType } from '../schemas/EnvironmentType'; /** * Environment Request Body */ export interface EnvironmentCreateRequest { /** * Environment color */ color?: string; /** * Description of the Environment */ description?: string; /** * version of harness yaml */ harness_version?: string; /** * Identifier of the Environment */ identifier: string; /** * Name of the Environment */ name: string; /** * Environment tags */ tags?: { [key: string]: string; }; type: EnvironmentType; /** * YAML for the Environment Request */ yaml?: string; }