Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The create storage unit GET/PUT/POST request requires the storage unit name.

Code Block
languagetext
themeRDark
PUT admin/create/<storage-unit-name>

...

The drop storage unit GET/DELETE/POST request requires the name of the storage unit to delete.

Code Block
languagetext
themeRDark
DELETE admin/drop/<storage-unit-name>

...

The list storage units GET/POST request can receive a withStats parameter to return content and transaction statistics for each storage unit.

Code Block
languagetext
themeRDark
GET admin/list?withStats

Response

...

The get storage unit statistics GET/POST request requires the name of the storage unit.

Code Block
languagejs
themeRDark
GET admin/getStatistics/<storage-unit-name>

...

The create dump GET request requires the name of the storage unit to dump.

Code Block
languagetext
themeRDark
GET admin/createDump/<storage-unit-name>

...

The download dump GET request requires the fileId returned by the create dump request.

Code Block
languagetext
themeRDark
GET admin/downloadDump/<file-id>

...

Enable

Code Block
languagetext
themeRDark
PUT admin/enableContentProcessing/<storage-unit-name>/true

Disable

Code Block
languagetext
themeRDark
PUT admin/enableContentProcessing/<storage-unit-name>/false

...

Enable

Code Block
languagetext
themeRDark
PUT admin/enableContentEncryption/<storage-unit-name>/true

Disable

Code Block
languagejs
themeRDark
PUT admin/enableContentEncryption/<storage-unit-name>/false

...

Enable

Code Block
languagetext
themeRDark
PUT admin/enableContentCompression/<storage-unit-name>/true

Disable

Code Block
languagejs
themeRDark
PUT admin/enableContentCompression/<storage-unit-name>/false

...

Enable

Code Block
languagetext
themeRDark
PUT admin/enableReprocessingQueue/<storage-unit-name>/true

Disable

Code Block
languagetext
themeRDark
PUT admin/enableReprocessingQueue/<storage-unit-name>/false

...

The storage unit GET get configuration request requires the name of the storage unit in the URL.

Code Block
languagetext
themeRDark
 GET admin/getConfiguration/<storage-unit-name>

...