/** * Service Request Body */ export interface ServiceCreateRequest { /** * Description of the entity */ description?: string; /** * version of harness yaml */ harness_version?: string; /** * Identifier of the Service */ identifier: string; /** * Name of the Service */ name: string; /** * Service tags */ tags?: { [key: string]: string; }; /** * YAML for the Service Request */ yaml?: string; }