/** * 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 } from './'; /** * * @export * @interface ValueFromSecretOrHost */ export interface ValueFromSecretOrHost { /** * * @type {SecretRef} * @memberof ValueFromSecretOrHost */ secret?: SecretRef; /** * * @type {string} * @memberof ValueFromSecretOrHost */ host?: string; } export declare function ValueFromSecretOrHostFromJSON(json: any): ValueFromSecretOrHost; export declare function ValueFromSecretOrHostFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValueFromSecretOrHost; export declare function ValueFromSecretOrHostToJSON(value?: ValueFromSecretOrHost | null): any;