/** * 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 { EnumArchiveType } from './'; /** * * @export * @interface S3Archive */ export interface S3Archive { /** * * @type {string} * @memberof S3Archive */ id: string; /** * * @type {EnumArchiveType} * @memberof S3Archive */ type: EnumArchiveType; /** * * @type {string} * @memberof S3Archive */ group: string; /** * * @type {string} * @memberof S3Archive */ tenant_id: string; /** * * @type {string} * @memberof S3Archive */ owner: string; /** * * @type {string} * @memberof S3Archive */ uuid?: string; /** * * @type {string} * @memberof S3Archive */ archive_dir: string; /** * * @type {string} * @memberof S3Archive */ endpoint: string; /** * * @type {string} * @memberof S3Archive */ bucket: string; /** * * @type {string} * @memberof S3Archive */ region: string; } export declare function S3ArchiveFromJSON(json: any): S3Archive; export declare function S3ArchiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): S3Archive; export declare function S3ArchiveToJSON(value?: S3Archive | null): any;