/** * 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. */ /** * The external upload destination setting contains information to generate an external Google Cloud Storage upload destination connected with Synapse. For details on how to create a custom Google Cloud storage location in the web client, see Custom Storage Locations * @export * @interface ExternalGoogleCloudStorageLocationSetting */ export interface ExternalGoogleCloudStorageLocationSetting { /** * Indicates which implementation this object represents. * @type {string} * @memberof ExternalGoogleCloudStorageLocationSetting */ concreteType: ExternalGoogleCloudStorageLocationSettingConcreteTypeEnum; /** * The unique ID for this storage location * @type {number} * @memberof ExternalGoogleCloudStorageLocationSetting */ storageLocationId?: number; /** * The enumeration of possible upload types. * @type {string} * @memberof ExternalGoogleCloudStorageLocationSetting */ uploadType?: ExternalGoogleCloudStorageLocationSettingUploadTypeEnum; /** * The banner text to display to a user every time a file is uploaded. This field is optional. * @type {string} * @memberof ExternalGoogleCloudStorageLocationSetting */ banner?: string; /** * A description of the storage location. This description is shown when a user has to choose which upload destination to use. * @type {string} * @memberof ExternalGoogleCloudStorageLocationSetting */ description?: string; /** * Synapse employs an Optimistic Concurrency Control (OCC) scheme to handle concurrent updates. Since the E-Tag changes every time a Project Setting is updated it is used to detect when a client's current representation of a Project Setting is out-of-date. * @type {string} * @memberof ExternalGoogleCloudStorageLocationSetting */ etag?: string; /** * The date this storage location setting was created. * @type {string} * @memberof ExternalGoogleCloudStorageLocationSetting */ createdOn?: string; /** * The ID of the user that created this storage location setting. * @type {number} * @memberof ExternalGoogleCloudStorageLocationSetting */ createdBy?: number; /** * The bucket name * @type {string} * @memberof ExternalGoogleCloudStorageLocationSetting */ bucket: string; /** * the optional base key, which acts as a prefix or a base folder * @type {string} * @memberof ExternalGoogleCloudStorageLocationSetting */ baseKey?: string; } /** * @export */ export declare const ExternalGoogleCloudStorageLocationSettingConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_project_ExternalGoogleCloudStorageLocationSetting: "org.sagebionetworks.repo.model.project.ExternalGoogleCloudStorageLocationSetting"; }; export type ExternalGoogleCloudStorageLocationSettingConcreteTypeEnum = typeof ExternalGoogleCloudStorageLocationSettingConcreteTypeEnum[keyof typeof ExternalGoogleCloudStorageLocationSettingConcreteTypeEnum]; /** * @export */ export declare const ExternalGoogleCloudStorageLocationSettingUploadTypeEnum: { readonly S3: "S3"; readonly GOOGLECLOUDSTORAGE: "GOOGLECLOUDSTORAGE"; readonly SFTP: "SFTP"; readonly HTTPS: "HTTPS"; readonly PROXYLOCAL: "PROXYLOCAL"; readonly NONE: "NONE"; }; export type ExternalGoogleCloudStorageLocationSettingUploadTypeEnum = typeof ExternalGoogleCloudStorageLocationSettingUploadTypeEnum[keyof typeof ExternalGoogleCloudStorageLocationSettingUploadTypeEnum]; /** * Check if a given object implements the ExternalGoogleCloudStorageLocationSetting interface. */ export declare function instanceOfExternalGoogleCloudStorageLocationSetting(value: object): value is ExternalGoogleCloudStorageLocationSetting; export declare function ExternalGoogleCloudStorageLocationSettingFromJSON(json: any): ExternalGoogleCloudStorageLocationSetting; export declare function ExternalGoogleCloudStorageLocationSettingFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExternalGoogleCloudStorageLocationSetting; export declare function ExternalGoogleCloudStorageLocationSettingToJSON(json: any): ExternalGoogleCloudStorageLocationSetting; export declare function ExternalGoogleCloudStorageLocationSettingToJSONTyped(value?: ExternalGoogleCloudStorageLocationSetting | null, ignoreDiscriminator?: boolean): any;