Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 2.41 KB

File metadata and controls

27 lines (18 loc) · 2.41 KB

Onepanel.S3

Properties

Name Type Description Notes
type String The type of storage. `type = "s3"` Amazon S3 compatible storage.
hostname String The hostname of a machine where S3 storage is installed.
bucketName String The storage bucket name.
signatureVersion Number The version of signature used to sign requests. Only version 4 is supported. [optional]
verifyServerCertificate Boolean Enables or disables verification of the S3 server SSL certificate. [optional] [default to true]
region String Allows to specify a custom S3 region, which will be send with each request to the S3 server. [optional] [default to 'us-east-1']
blockSize Number Storage block size in bytes. In case the block size is `0` and `canonical` path type is selected, each file is stored in a single S3 object. This value must be set to `0` to enable data import from an existing S3 bucket. [optional]
maximumCanonicalObjectSize Number Defines the maximum size for objects, which can be modified on the S3 storage in `canonical` path mode. In this mode, entire file needs to be downloaded to memory, modified and uploaded back, which is impractical for large files (default 64 MiB). [optional]
fileMode String Defines the file permissions, which files imported from S3 storage will have in Onedata. Values should be provided in octal format e.g. `0644`. [optional] [default to '0664']
dirMode String Defines the directory mode which directories imported from S3 storage will have in Onedata. Values should be provided in octal format e.g. `0775`. [optional] [default to '0775']
storagePathType String Determines how the logical file paths will be mapped on the storage. 'canonical' paths reflect the logical file names and directory structure, however each rename operation will require renaming the files on the storage. 'flat' paths are based on unique file UUID's and do not require on-storage rename when logical file name is changed. [optional] [default to 'flat']

Enum: TypeEnum

  • s3 (value: "s3")