Onedata API Reference

REST API references for Onezone, Oneprovider, and Onepanel.

Support space

POST /provider/spaces

Supports an existing space.

Request body

application/json

Specification of the space support request including support size and token.

PropertyType & Description
token
string

The token for space creation or support.

size
integer

The storage space size in bytes that provider is willing to assign to the space.

storageId
string

The Id of the storage resource where the space data should be stored.

storageImport
object (StorageImport)

Configuration of the storage import within the space.

mode
string

Mode of the storage import within the space.

In case of auto mode, the storage will be automatically scanned and data will be imported from storage into the assigned Onedata space without need for copying the data.

Configuration of the auto storage import can be passed in the autoStorageImportConfig parameter. It is possible to enable periodical scans for automatic detection of changes on the storage (refer to the option continuousScan in the config).

In case of manual mode, the files must be registered manually by the space users with REST API. Registration of directories is not supported. For more info please read: https://onedata.org/#/home/api/stable/oneprovider?anchor=tag/File-registration

Enum:
automanual
autoStorageImportConfig
object (AutoStorageImportConfig)

Configuration of auto storage import mechanism. The auto import is based on scans - gradual traversing of the file system and registration of files and directories.

maxDepth
integer

Maximum depth of filesystem tree that will be traversed during the scan.

syncAcl
boolean

Flag that enables synchronization of NFSv4 ACLs.

continuousScan
boolean

With this option enabled the storage will be scanned periodically and direct changes on the storage will be reflected in the assigned Onedata space (upon the consecutive scan).

scanInterval
integer

Period between subsequent scans in seconds (counted from end of one scan till beginning of the following). This parameter is relevant only for continuous scans.

detectModifications
boolean

Flag determining that modifications of files on the synchronized storage will be detected. If disabled, the storage will be treated as immutable (only creations and deletions of files on storage will be detected). This parameter is relevant only for continuous scans.

detectDeletions
boolean

Flag determining that deletions of files from the synchronized storage will be detected. This parameter is relevant only for continuous scans.

Request Examples

application/json
{
  "token": "ASDJNASD87687ASDMNBMNASD87786asd",
  "size": 1024000,
  "storageId": "x7It3cpgNgLZ8RwOrOoW"
}

Responses

application/json
201

Created space support relation.

PropertyType & Description
id
string

Resource Id.

Example

application/json
{
  "id": "26cbc2b20f92416eb9f3cba65e50c1d2"
}
400

Invalid request.

PropertyType & Description
error
object

Object describing an error.

id required
string

String identifying the error type. Does not change between error instances.

description required
string

Human readable error description. May contain information specific to given error instance.

details
object

Details about the error instance. The object schema is specific to each error type.

Example

application/json
{
  "error": {
    "id": "badValueString",
    "details": {
      "key": "name"
    },
    "description": "Bad value: provided \"name\" must be a string."
  }
}
401

Unauthorized request.

403

Forbidden request.

500

Internal server error.

PropertyType & Description
error
object

Object describing an error.

id required
string

String identifying the error type. Does not change between error instances.

description required
string

Human readable error description. May contain information specific to given error instance.

details
object

Details about the error instance. The object schema is specific to each error type.

Example

application/json
{
  "error": {
    "id": "badValueString",
    "details": {
      "key": "name"
    },
    "description": "Bad value: provided \"name\" must be a string."
  }
}
503

Services needed to fulfill this request are not running.