/** * 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 { EnvSpec, ReqTask, Spec } from './'; /** * * @export * @interface ReqPatchPipeline */ export interface ReqPatchPipeline { /** * * @type {string} * @memberof ReqPatchPipeline */ description?: string; /** * * @type {{ [key: string]: EnvSpec; }} * @memberof ReqPatchPipeline */ env?: { [key: string]: EnvSpec; }; /** * * @type {boolean} * @memberof ReqPatchPipeline */ enabled?: boolean; /** * * @type {{ [key: string]: Spec; }} * @memberof ReqPatchPipeline */ params?: { [key: string]: Spec; }; /** * * @type {Array} * @memberof ReqPatchPipeline */ tasks?: Array; /** * * @type {Array} * @memberof ReqPatchPipeline */ tags?: Array; } export declare function ReqPatchPipelineFromJSON(json: any): ReqPatchPipeline; export declare function ReqPatchPipelineFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqPatchPipeline; export declare function ReqPatchPipelineToJSON(value?: ReqPatchPipeline | null): any;