/** * 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 { ReqCreateETLPipeline, RespResourceURL } from '../models'; export interface CreateETLPipelineRequest { groupId: string; reqCreateETLPipeline: ReqCreateETLPipeline; } /** * */ export declare class ETLApi extends runtime.BaseAPI { /** * Convenience endpoint for create ETL pipelines in the Tapis ecosystem. * Create an ETL pipeline */ createETLPipelineRaw(requestParameters: CreateETLPipelineRequest, initOverrides?: RequestInit): Promise>; /** * Convenience endpoint for create ETL pipelines in the Tapis ecosystem. * Create an ETL pipeline */ createETLPipeline(requestParameters: CreateETLPipelineRequest, initOverrides?: RequestInit): Promise; }