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