/** * 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 ReqFunctionTaskAllOf */ export interface ReqFunctionTaskAllOf { /** * * @type {Array} * @memberof ReqFunctionTaskAllOf */ git_repositories?: Array; /** * * @type {EnumRuntimeEnvironment} * @memberof ReqFunctionTaskAllOf */ runtime: EnumRuntimeEnvironment; /** * * @type {EnumInstaller} * @memberof ReqFunctionTaskAllOf */ installer: EnumInstaller; /** * * @type {string} * @memberof ReqFunctionTaskAllOf */ command?: string; /** * * @type {string} * @memberof ReqFunctionTaskAllOf */ entrypoint?: string; /** * * @type {string} * @memberof ReqFunctionTaskAllOf */ code?: string; /** * * @type {Array} * @memberof ReqFunctionTaskAllOf */ packages?: Array; } export declare function ReqFunctionTaskAllOfFromJSON(json: any): ReqFunctionTaskAllOf; export declare function ReqFunctionTaskAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqFunctionTaskAllOf; export declare function ReqFunctionTaskAllOfToJSON(value?: ReqFunctionTaskAllOf | null): any;