import type { InfrastructureType } from '../schemas/InfrastructureType'; /** * This is the Infrastructure entity defined in Harness */ export interface Infrastructure { /** * Account Identifier */ account?: string; /** * Description of the entity */ description?: string; /** * Name of the parent Environment. */ environment?: string; /** * version of harness yaml */ harness_version?: string; /** * Identifier of the Environment Request. */ identifier: string; /** * Name of the Infrastructure. */ name: string; /** * Organization Identifier for the Entity. */ org?: string; /** * Project Identifier for the Entity. */ project?: string; /** * Infrastructure tags */ tags?: { [key: string]: string; }; type: InfrastructureType; /** * Yaml related to infrastructure */ yaml?: string; }