/** * 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 { EnumInstaller, EnumRuntimeEnvironment, EnumTaskType, GitCloneDetails, SpecWithValue, TaskDependency, TaskExecutionProfile } from './'; /** * * @export * @interface ReqFunctionTask */ export interface ReqFunctionTask { /** * * @type {string} * @memberof ReqFunctionTask */ id: string; /** * * @type {EnumTaskType} * @memberof ReqFunctionTask */ type: EnumTaskType; /** * * @type {Array} * @memberof ReqFunctionTask */ depends_on?: Array; /** * * @type {string} * @memberof ReqFunctionTask */ description?: string; /** * * @type {TaskExecutionProfile} * @memberof ReqFunctionTask */ execution_profile?: TaskExecutionProfile; /** * * @type {{ [key: string]: SpecWithValue; }} * @memberof ReqFunctionTask */ input?: { [key: string]: SpecWithValue; }; /** * * @type {{ [key: string]: object; }} * @memberof ReqFunctionTask */ output?: { [key: string]: object; }; /** * * @type {Array<{ [key: string]: object; }>} * @memberof ReqFunctionTask */ conditions?: Array<{ [key: string]: object; }>; /** * * @type {Array} * @memberof ReqFunctionTask */ tags?: Array; /** * * @type {Array} * @memberof ReqFunctionTask */ git_repositories?: Array; /** * * @type {EnumRuntimeEnvironment} * @memberof ReqFunctionTask */ runtime: EnumRuntimeEnvironment; /** * * @type {EnumInstaller} * @memberof ReqFunctionTask */ installer: EnumInstaller; /** * * @type {string} * @memberof ReqFunctionTask */ command?: string; /** * * @type {string} * @memberof ReqFunctionTask */ entrypoint?: string; /** * * @type {string} * @memberof ReqFunctionTask */ code?: string; /** * * @type {Array} * @memberof ReqFunctionTask */ packages?: Array; } export declare function ReqFunctionTaskFromJSON(json: any): ReqFunctionTask; export declare function ReqFunctionTaskFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqFunctionTask; export declare function ReqFunctionTaskToJSON(value?: ReqFunctionTask | null): any;