/** * 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 { SecretRef, TaskOutputRef } from './'; /** * * @export * @interface ValueFrom */ export interface ValueFrom { /** * * @type {string} * @memberof ValueFrom */ args?: string; /** * * @type {string} * @memberof ValueFrom */ env?: string; /** * * @type {TaskOutputRef} * @memberof ValueFrom */ task_output?: TaskOutputRef; /** * * @type {string} * @memberof ValueFrom */ host?: string; /** * * @type {SecretRef} * @memberof ValueFrom */ secret?: SecretRef; } export declare function ValueFromFromJSON(json: any): ValueFrom; export declare function ValueFromFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValueFrom; export declare function ValueFromToJSON(value?: ValueFrom | null): any;