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