/** * 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 { ReqS3Cred } from './'; /** * * @export * @interface ReqS3ArchiveAllOf */ export interface ReqS3ArchiveAllOf { /** * * @type {string} * @memberof ReqS3ArchiveAllOf */ endpoint: string; /** * * @type {string} * @memberof ReqS3ArchiveAllOf */ bucket: string; /** * * @type {string} * @memberof ReqS3ArchiveAllOf */ region: string; /** * * @type {ReqS3Cred} * @memberof ReqS3ArchiveAllOf */ credentials?: ReqS3Cred; /** * * @type {string} * @memberof ReqS3ArchiveAllOf */ identity_uuid?: string; } export declare function ReqS3ArchiveAllOfFromJSON(json: any): ReqS3ArchiveAllOf; export declare function ReqS3ArchiveAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqS3ArchiveAllOf; export declare function ReqS3ArchiveAllOfToJSON(value?: ReqS3ArchiveAllOf | null): any;