/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ExternalGoogleCloudStorageLocationSetting } from './ExternalGoogleCloudStorageLocationSetting'; import type { ExternalObjectStorageLocationSetting } from './ExternalObjectStorageLocationSetting'; import type { ExternalS3StorageLocationSetting } from './ExternalS3StorageLocationSetting'; import type { ExternalStorageLocationSetting } from './ExternalStorageLocationSetting'; import type { ProxyStorageLocationSettings } from './ProxyStorageLocationSettings'; import type { S3StorageLocationSetting } from './S3StorageLocationSetting'; /** * @type StorageLocationSetting * A storage location setting describes a location where files are uploaded to and downloaded from via Synapse. Storage location settings may be created for external locations, such as user-owned Amazon S3 buckets * @export */ export type StorageLocationSetting = { concreteType: 'org.sagebionetworks.repo.model.project.ExternalGoogleCloudStorageLocationSetting'; } & ExternalGoogleCloudStorageLocationSetting | { concreteType: 'org.sagebionetworks.repo.model.project.ExternalObjectStorageLocationSetting'; } & ExternalObjectStorageLocationSetting | { concreteType: 'org.sagebionetworks.repo.model.project.ExternalS3StorageLocationSetting'; } & ExternalS3StorageLocationSetting | { concreteType: 'org.sagebionetworks.repo.model.project.ExternalStorageLocationSetting'; } & ExternalStorageLocationSetting | { concreteType: 'org.sagebionetworks.repo.model.project.ProxyStorageLocationSettings'; } & ProxyStorageLocationSettings | { concreteType: 'org.sagebionetworks.repo.model.project.S3StorageLocationSetting'; } & S3StorageLocationSetting; export declare function StorageLocationSettingFromJSON(json: any): StorageLocationSetting; export declare function StorageLocationSettingFromJSONTyped(json: any, ignoreDiscriminator: boolean): StorageLocationSetting; export declare function StorageLocationSettingToJSON(json: any): any; export declare function StorageLocationSettingToJSONTyped(value?: StorageLocationSetting | null, ignoreDiscriminator?: boolean): any;