/** * 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, ReqS3Cred } from './'; /** * * @export * @interface ReqS3Archive */ export interface ReqS3Archive { /** * * @type {string} * @memberof ReqS3Archive */ id: string; /** * * @type {EnumArchiveType} * @memberof ReqS3Archive */ type: EnumArchiveType; /** * * @type {string} * @memberof ReqS3Archive */ archive_dir?: string; /** * * @type {string} * @memberof ReqS3Archive */ endpoint: string; /** * * @type {string} * @memberof ReqS3Archive */ bucket: string; /** * * @type {string} * @memberof ReqS3Archive */ region: string; /** * * @type {ReqS3Cred} * @memberof ReqS3Archive */ credentials?: ReqS3Cred; /** * * @type {string} * @memberof ReqS3Archive */ identity_uuid?: string; } export declare function ReqS3ArchiveFromJSON(json: any): ReqS3Archive; export declare function ReqS3ArchiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqS3Archive; export declare function ReqS3ArchiveToJSON(value?: ReqS3Archive | null): any;