/** * 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 { Value, ValueFromSecretOrHost } from './'; /** * * @export * @interface EnvSpec */ export interface EnvSpec { /** * * @type {string} * @memberof EnvSpec */ description?: string; /** * * @type {boolean} * @memberof EnvSpec */ required?: boolean; /** * * @type {string} * @memberof EnvSpec */ type?: string; /** * * @type {Value} * @memberof EnvSpec */ value?: Value; /** * * @type {ValueFromSecretOrHost} * @memberof EnvSpec */ value_from?: ValueFromSecretOrHost; } export declare function EnvSpecFromJSON(json: any): EnvSpec; export declare function EnvSpecFromJSONTyped(json: any, ignoreDiscriminator: boolean): EnvSpec; export declare function EnvSpecToJSON(value?: EnvSpec | null): any;