/** * 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 { EnumBuilder, EnumPipelineType, ReqContext, ReqDestination } from './'; /** * * @export * @interface ReqCIPipeline */ export interface ReqCIPipeline { /** * * @type {string} * @memberof ReqCIPipeline */ id: string; /** * * @type {string} * @memberof ReqCIPipeline */ description?: string; /** * * @type {Array} * @memberof ReqCIPipeline */ archive_ids?: Array; /** * * @type {EnumBuilder} * @memberof ReqCIPipeline */ builder?: EnumBuilder; /** * * @type {EnumPipelineType} * @memberof ReqCIPipeline */ type: EnumPipelineType; /** * * @type {ReqContext} * @memberof ReqCIPipeline */ context: ReqContext; /** * * @type {ReqDestination} * @memberof ReqCIPipeline */ destination: ReqDestination; } export declare function ReqCIPipelineFromJSON(json: any): ReqCIPipeline; export declare function ReqCIPipelineFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqCIPipeline; export declare function ReqCIPipelineToJSON(value?: ReqCIPipeline | null): any;