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