/** * 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 Secret */ export interface Secret { /** * * @type {string} * @memberof Secret */ id?: string; /** * * @type {string} * @memberof Secret */ description?: string; /** * * @type {string} * @memberof Secret */ tenant_id?: string; /** * * @type {string} * @memberof Secret */ owner?: string; /** * * @type {string} * @memberof Secret */ sk_secret_name?: string; /** * * @type {string} * @memberof Secret */ uuid?: string; } export declare function SecretFromJSON(json: any): Secret; export declare function SecretFromJSONTyped(json: any, ignoreDiscriminator: boolean): Secret; export declare function SecretToJSON(value?: Secret | null): any;