/** * 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. */ /** * * @export * @interface SecretRef */ export interface SecretRef { /** * * @type {string} * @memberof SecretRef */ engine?: string; /** * * @type {string} * @memberof SecretRef */ pk?: string; /** * * @type {Array} * @memberof SecretRef */ field_selector?: Array; } export declare function SecretRefFromJSON(json: any): SecretRef; export declare function SecretRefFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecretRef; export declare function SecretRefToJSON(value?: SecretRef | null): any;