/** * 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, GitCloneDetails } from './'; /** * * @export * @interface FunctionTaskAllOf */ export interface FunctionTaskAllOf { /** * * @type {Array} * @memberof FunctionTaskAllOf */ git_repositories?: Array; /** * * @type {EnumRuntimeEnvironment} * @memberof FunctionTaskAllOf */ runtime?: EnumRuntimeEnvironment; /** * * @type {EnumInstaller} * @memberof FunctionTaskAllOf */ installer?: EnumInstaller; /** * * @type {string} * @memberof FunctionTaskAllOf */ command?: string; /** * * @type {string} * @memberof FunctionTaskAllOf */ entrypoint?: string; /** * * @type {string} * @memberof FunctionTaskAllOf */ code?: string; /** * * @type {Array} * @memberof FunctionTaskAllOf */ packages?: Array; } export declare function FunctionTaskAllOfFromJSON(json: any): FunctionTaskAllOf; export declare function FunctionTaskAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): FunctionTaskAllOf; export declare function FunctionTaskAllOfToJSON(value?: FunctionTaskAllOf | null): any;