/** * Tapis Workflows API * Create and manage pipelines * * The version of the OpenAPI document: 1.6.0 * Contact: cicsupport@tacc.utexas.edu * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import { RespArchiveList } from '../models'; export interface ListPipelineArchivesRequest { groupId: string; pipelineId: string; } /** * */ export declare class PipelineArchivesApi extends runtime.BaseAPI { /** * Retrieve a list of archives attached to a pipeline * Retrieve pipeline archives */ listPipelineArchivesRaw(requestParameters: ListPipelineArchivesRequest, initOverrides?: RequestInit): Promise>; /** * Retrieve a list of archives attached to a pipeline * Retrieve pipeline archives */ listPipelineArchives(requestParameters: ListPipelineArchivesRequest, initOverrides?: RequestInit): Promise; }