/** * This is the Certificate Entity in Harness */ export interface CertificateInfoDto { /** * Certificate Content (Read only field whose value is populated only in response) */ certificate_value?: string; description?: string; /** * Identifier for the Entity. */ identifier: string; /** * Name for the Entity. */ name: string; /** * Organization Identifier for the Entity. */ org?: string; /** * Project Identifier for the Entity. */ project?: string; /** * Certificate tags */ tags?: { [key: string]: string; }; }