/** * 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, PipelineExecutionProfile, Spec, Task, Uses } from './'; /** * * @export * @interface Pipeline */ export interface Pipeline { /** * * @type {string} * @memberof Pipeline */ id?: string; /** * * @type {Array} * @memberof Pipeline */ archive_ids?: Array; /** * * @type {string} * @memberof Pipeline */ description?: string; /** * * @type {Uses} * @memberof Pipeline */ uses?: Uses; /** * * @type {{ [key: string]: EnvSpec; }} * @memberof Pipeline */ env?: { [key: string]: EnvSpec; }; /** * * @type {boolean} * @memberof Pipeline */ enabled?: boolean; /** * * @type {{ [key: string]: Spec; }} * @memberof Pipeline */ params?: { [key: string]: Spec; }; /** * * @type {string} * @memberof Pipeline */ group?: string; /** * * @type {string} * @memberof Pipeline */ owner?: string; /** * * @type {string} * @memberof Pipeline */ uuid?: string; /** * * @type {PipelineExecutionProfile} * @memberof Pipeline */ execution_profile?: PipelineExecutionProfile; /** * * @type {string} * @memberof Pipeline */ current_run?: string; /** * * @type {string} * @memberof Pipeline */ last_run?: string; /** * * @type {Array} * @memberof Pipeline */ tasks?: Array; /** * * @type {Array} * @memberof Pipeline */ tags?: Array; } export declare function PipelineFromJSON(json: any): Pipeline; export declare function PipelineFromJSONTyped(json: any, ignoreDiscriminator: boolean): Pipeline; export declare function PipelineToJSON(value?: Pipeline | null): any;