1.88.0 • Published 4 years ago

nodeum_api v1.88.0

Weekly downloads
1
License
Unlicense
Repository
-
Last release
4 years ago

nodeum_api

NodeumApi - JavaScript client for nodeum_api The Nodeum API makes it easy to tap into the digital data mesh that runs across your organisation. Make requests to our API endpoints and we’ll give you everything you need to interconnect your business workflows with your storage.

All production API requests are made to:

http://nodeumhostname/api/

The current production version of the API is v1.

REST The Nodeum API is a RESTful API. This means that the API is designed to allow you to get, create, update, & delete objects with the HTTP verbs GET, POST, PUT, PATCH, & DELETE.

JSON The Nodeum API speaks exclusively in JSON. This means that you should always set the Content-Type header to application/json to ensure that your requests are properly accepted and processed by the API.

Authentication All API calls require user-password authentication.

Cross-Origin Resource Sharing The Nodeum API supports CORS for communicating from Javascript for these endpoints. You will need to specify an Origin URI when creating your application to allow for CORS to be whitelisted for your domain.

Pagination Some endpoints such as File Listing return a potentially lengthy array of objects. In order to keep the response sizes manageable the API will take advantage of pagination. Pagination is a mechanism for returning a subset of the results for a request and allowing for subsequent requests to “page” through the rest of the results until the end is reached. Paginated endpoints follow a standard interface that accepts two query parameters, limit and offset, and return a payload that follows a standard form. These parameters names and their behavior are borrowed from SQL LIMIT and OFFSET keywords.

Versioning The Nodeum API is constantly being worked on to add features, make improvements, and fix bugs. This means that you should expect changes to be introduced and documented.

However, there are some changes or additions that are considered backwards-compatible and your applications should be flexible enough to handle them. These include:

  • Adding new endpoints to the API
  • Adding new attributes to the response of an existing endpoint
  • Changing the order of attributes of responses (JSON by definition is an object of unordered key/value pairs)

Filter parameters When browsing a list of items, multiple filter parameters may be applied. Some operators can be added to the value as a prefix:

  • = value is equal. Default operator, may be omitted
  • != value is different
  • > greater than
  • >= greater than or equal
  • < lower than
  • >= lower than or equal
  • >< included in list, items should be separated by |
  • !>< not included in list, items should be separated by |
  • ~ pattern matching, may include % (any characters) and _ (one character)
  • !~ pattern not matching, may include % (any characters) and _ (one character)

This SDK is automatically generated by the OpenAPI Generator project:

  • API version: 2.1.0
  • Package version: 1.88.0
  • Build package: org.openapitools.codegen.languages.JavascriptClientCodegen For more information, please visit https://www.nodeum.io/

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install nodeum_api --save

Finally, you need to build the module:

npm run build
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

To use the link you just defined in your project, switch to the directory you want to use your nodeum_api from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

Finally, you need to build the module:

npm run build

git

If the library is hosted at a git repository, e.g.https://github.com/nodeum-io/nodeum-sdk-js then install it via:

    npm install nodeum-io/nodeum-sdk-js --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var NodeumApi = require('nodeum_api');

var defaultClient = NodeumApi.ApiClient.instance;
// Configure HTTP basic authorization: BasicAuth
var BasicAuth = defaultClient.authentications['BasicAuth'];
BasicAuth.username = 'YOUR USERNAME'
BasicAuth.password = 'YOUR PASSWORD'
// Configure API key authorization: BearerAuth
var BearerAuth = defaultClient.authentications['BearerAuth'];
BearerAuth.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//BearerAuth.apiKeyPrefix['Authorization'] = "Token"

var api = new NodeumApi.CloudBucketsApi()
var opts = {
  'limit': 56, // {Number} The number of items to display for pagination.
  'offset': 56, // {Number} The number of items to skip for pagination.
  'sortBy': ["null"], // {[String]} Sort results by attribute.  Can sort on multiple attributes, separated by `|`. Order direction can be suffixing the attribute by either `:asc` (default) or `:desc`.
  'id': "id_example", // {String} Filter on id
  'cloudConnectorId': "cloudConnectorId_example", // {String} Filter on cloud connector id
  'poolId': "poolId_example", // {String} Filter on a pool id
  'name': "name_example", // {String} Filter on name
  'location': "location_example", // {String} Filter on location
  'price': "price_example" // {String} Filter on price
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.indexCloudBuckets(opts, callback);

Documentation for API Endpoints

All URIs are relative to http://localhost/api/v2

ClassMethodHTTP requestDescription
NodeumApi.CloudBucketsApiindexCloudBucketsGET /cloud_bucketsLists all cloud buckets.
NodeumApi.CloudBucketsApiindexCloudBucketsByCloudConnectorGET /cloud_connectors/{cloud_connector_id}/cloud_bucketsLists all cloud buckets.
NodeumApi.CloudBucketsApiindexCloudBucketsByPoolGET /pools/{pool_id}/cloud_bucketsLists all cloud buckets from pool.
NodeumApi.CloudBucketsApimountStatusCloudBucketGET /cloud_buckets/{cloud_bucket_id}/mountGet mount status of Cloud bucket.
NodeumApi.CloudBucketsApimountStatusCloudBucketByCloudConnectorGET /cloud_connectors/{cloud_connector_id}/cloud_buckets/{cloud_bucket_id}/mountGet mount status of Cloud bucket.
NodeumApi.CloudBucketsApimountStatusCloudBucketByPoolGET /pools/{pool_id}/cloud_buckets/{cloud_bucket_id}/mountGet mount status of Cloud bucket.
NodeumApi.CloudBucketsApishowCloudBucketGET /cloud_buckets/{cloud_bucket_id}Displays a specific cloud bucket.
NodeumApi.CloudBucketsApishowCloudBucketByCloudConnectorGET /cloud_connectors/{cloud_connector_id}/cloud_buckets/{cloud_bucket_id}Displays a specific cloud bucket.
NodeumApi.CloudBucketsApishowCloudBucketByPoolGET /pools/{pool_id}/cloud_buckets/{cloud_bucket_id}Displays a specific cloud bucket.
NodeumApi.CloudBucketsApisyncCloudBucketsPUT /cloud_connectors/{cloud_connector_id}/cloud_buckets/-/syncSynchronize internal cloud buckets with their remote equivalent.
NodeumApi.CloudBucketsApisyncResultCloudBucketsGET /cloud_connectors/{cloud_connector_id}/cloud_buckets/-/syncCheck result of cloud connector sync job.
NodeumApi.CloudBucketsApiupdateCloudBucketPUT /cloud_buckets/{cloud_bucket_id}Updates a specific cloud bucket.
NodeumApi.CloudBucketsApiupdateCloudBucketByCloudConnectorPUT /cloud_connectors/{cloud_connector_id}/cloud_buckets/{cloud_bucket_id}Updates a specific cloud bucket.
NodeumApi.CloudBucketsApiupdateCloudBucketByPoolPUT /pools/{pool_id}/cloud_buckets/{cloud_bucket_id}Updates a specific cloud bucket.
NodeumApi.CloudBucketsApiupdateConfigFileCloudBucketPUT /cloud_buckets/{cloud_bucket_id}/config_fileUpdates a specific cloud bucket.
NodeumApi.CloudConnectorsApicreateCloudConnectorPOST /cloud_connectorsCreates a new cloud connector.
NodeumApi.CloudConnectorsApidestroyCloudConnectorDELETE /cloud_connectors/{cloud_connector_id}Destroys a specific cloud connector.
NodeumApi.CloudConnectorsApiindexCloudConnectorsGET /cloud_connectorsLists all cloud connectors.
NodeumApi.CloudConnectorsApishowCloudConnectorGET /cloud_connectors/{cloud_connector_id}Displays a specific cloud connector.
NodeumApi.CloudConnectorsApitestCloudConnectorPUT /cloud_connectors/-/testTest an unsaved cloud connector.
NodeumApi.CloudConnectorsApitestResultCloudConnectorGET /cloud_connectors/-/testCheck result of cloud connector test job.
NodeumApi.CloudConnectorsApiupdateCloudConnectorPUT /cloud_connectors/{cloud_connector_id}Updates a specific cloud connector.
NodeumApi.ContainersApicreateContainerPOST /containersCreates a new container.
NodeumApi.ContainersApicreateContainerPrivilegePOST /containers/{container_id}/container_privilegesCreates a new privilege on the container.
NodeumApi.ContainersApidestroyContainerDELETE /containers/{container_id}Destroys a specific container.
NodeumApi.ContainersApidestroyContainerPrivilegeDELETE /containers/{container_id}/container_privileges/{container_privilege_id}Destroys a specific privilege.
NodeumApi.ContainersApiindexContainerPrivilegesGET /containers/{container_id}/container_privilegesLists all privilege on the container.
NodeumApi.ContainersApiindexContainersGET /containersLists all containers.
NodeumApi.ContainersApishowContainerGET /containers/{container_id}Displays a specific container.
NodeumApi.ContainersApishowContainerPrivilegeGET /containers/{container_id}/container_privileges/{container_privilege_id}Displays a specific privilege.
NodeumApi.ContainersApiupdateContainerPUT /containers/{container_id}Updates a specific container.
NodeumApi.ContainersApiupdateContainerPrivilegePUT /containers/{container_id}/container_privileges/{container_privilege_id}Updates a specific privilege.
NodeumApi.FilesApifilesChildrenGET /files/{file_parent_id}/childrenLists files under a specific folder.
NodeumApi.FilesApifilesChildrenByContainerGET /containers/{container_id}/files/{file_parent_id}/childrenLists files under a specific folder.
NodeumApi.FilesApifilesChildrenByPoolGET /pools/{pool_id}/files/{file_parent_id}/childrenLists files under a specific folder.
NodeumApi.FilesApifilesChildrenByTaskGET /tasks/{task_id}/files/{file_parent_id}/childrenLists files under a specific folder.
NodeumApi.FilesApifilesChildrenByTaskExecutionGET /task_executions/{task_execution_id}/files/{file_parent_id}/childrenLists files under a specific folder.
NodeumApi.FilesApifilesChildrenByTaskExecutionByTaskGET /tasks/{task_id}/task_executions/{task_execution_id}/files/{file_parent_id}/childrenLists files under a specific folder.
NodeumApi.FilesApiimportFilesChildrenByPoolGET /pools/{pool_id}/import_files/{file_parent_id}/childrenLists files under a specific folder on tape of pools, specific for Data Exchange.
NodeumApi.FilesApiindexFilesGET /filesLists files on root.
NodeumApi.FilesApiindexFilesByContainerGET /containers/{container_id}/filesLists files on root.
NodeumApi.FilesApiindexFilesByPoolGET /pools/{pool_id}/filesLists files on root.
NodeumApi.FilesApiindexFilesByTaskGET /tasks/{task_id}/filesLists files on root.
NodeumApi.FilesApiindexFilesByTaskExecutionGET /task_executions/{task_execution_id}/filesLists files on root.
NodeumApi.FilesApiindexFilesByTaskExecutionByTaskGET /tasks/{task_id}/task_executions/{task_execution_id}/filesLists files on root.
NodeumApi.FilesApiindexImportFilesByPoolGET /pools/{pool_id}/import_filesLists files on root of tape of pools, specific for Data Exchange.
NodeumApi.FilesApiindexOnTapesFilesByPoolGET /pools/{pool_id}/on_tapes_filesLists files on root of tape of pools, specific for Active and Offline.
NodeumApi.FilesApiindexTapesByFileByPoolGET /pools/{pool_id}/files/{file_id}/tapesDisplays tapes containing specific file, related to the specific pool.
NodeumApi.FilesApiindexTapesByFileByTaskGET /tasks/{task_id}/files/{file_id}/tapesDisplays tapes containing specific file, related to the specific task.
NodeumApi.FilesApiindexTapesByFileByTaskExecutionGET /task_executions/{task_execution_id}/files/{file_id}/tapesDisplays tapes containing specific file, related to the specific task.
NodeumApi.FilesApiindexTapesByFileByTaskExecutionByTaskGET /tasks/{task_id}/task_executions/{task_execution_id}/files/{file_id}/tapesDisplays tapes containing specific file, related to the specific task.
NodeumApi.FilesApionTapesFilesChildrenByPoolGET /pools/{pool_id}/on_tapes_files/{file_parent_id}/childrenLists files under a specific folder on tape of pools, specific for Active and Offline.
NodeumApi.FilesApishowFileGET /files/{file_id}Displays a specific file.
NodeumApi.FilesApishowFileByContainerGET /containers/{container_id}/files/{file_id}Displays a specific file.
NodeumApi.FilesApishowFileByPoolGET /pools/{pool_id}/files/{file_id}Displays a specific file.
NodeumApi.FilesApishowFileByTaskGET /tasks/{task_id}/files/{file_id}Displays a specific file.
NodeumApi.FilesApishowFileByTaskExecutionGET /task_executions/{task_execution_id}/files/{file_id}Displays a specific file.
NodeumApi.FilesApishowFileByTaskExecutionByTaskGET /tasks/{task_id}/task_executions/{task_execution_id}/files/{file_id}Displays a specific file.
NodeumApi.FilesApishowImportFileByPoolGET /pools/{pool_id}/import_files/{file_id}Displays a specific file on tape of pools, specific for Data Exchange.
NodeumApi.FilesApishowOnTapeFileByPoolGET /pools/{pool_id}/on_tapes_files/{file_id}Displays a specific file on tape of pools, specific for Active and Offline.
NodeumApi.MetadataApiindexFileMetadataDefinitionsGET /file_metadata_definitionsList file metadata definitions
NodeumApi.MetadataApiindexTaskMetadataDefinitionsGET /task_metadata_definitionsList task metadata definitions
NodeumApi.MetadataApishowFileMetadataDefinitionGET /file_metadata_definitions/{metadata_definition_id}Displays a specific task metadata definition.
NodeumApi.MetadataApishowTaskMetadataDefinitionGET /task_metadata_definitions/{metadata_definition_id}Displays a specific task metadata definition.
NodeumApi.MountsApiindexMountsGET /mountsList all mounted storages.
NodeumApi.NasApicreateNasPOST /nasCreates a new NAS.
NodeumApi.NasApidestroyNasDELETE /nas/{nas_id}Destroys a specific NAS.
NodeumApi.NasApiindexNasGET /nasLists all NAS.
NodeumApi.NasApishowNasGET /nas/{nas_id}Displays a specific NAS.
NodeumApi.NasApiupdateNasPUT /nas/{nas_id}Updates a specific NAS.
NodeumApi.NasSharesApicreateNasShareByNasPOST /nas/{nas_id}/nas_sharesCreates a new NAS share.
NodeumApi.NasSharesApidestroyNasShareDELETE /nas_shares/{nas_share_id}Destroys a specific NAS share.
NodeumApi.NasSharesApidestroyNasShareByNasDELETE /nas/{nas_id}/nas_shares/{nas_share_id}Destroys a specific NAS share.
NodeumApi.NasSharesApidestroyNasShareByPoolDELETE /pools/{pool_id}/nas_shares/{nas_share_id}Destroys a specific NAS share.
NodeumApi.NasSharesApiindexNasSharesGET /nas_sharesLists all NAS shares.
NodeumApi.NasSharesApiindexNasSharesByNasGET /nas/{nas_id}/nas_sharesLists all NAS shares.
NodeumApi.NasSharesApiindexNasSharesByPoolGET /pools/{pool_id}/nas_sharesLists all NAS shares from pool.
NodeumApi.NasSharesApimountStatusNasShareGET /nas_shares/{nas_share_id}/mountGet mount status of NAS Share.
NodeumApi.NasSharesApimountStatusNasShareByNasGET /nas/{nas_id}/nas_shares/{nas_share_id}/mountGet mount status of NAS Share.
NodeumApi.NasSharesApimountStatusNasShareByPoolGET /pools/{pool_id}/nas_shares/{nas_share_id}/mountGet mount status of NAS Share.
NodeumApi.NasSharesApishowNasShareGET /nas_shares/{nas_share_id}Displays a specific NAS share.
NodeumApi.NasSharesApishowNasShareByNasGET /nas/{nas_id}/nas_shares/{nas_share_id}Displays a specific NAS share.
NodeumApi.NasSharesApishowNasShareByPoolGET /pools/{pool_id}/nas_shares/{nas_share_id}Displays a specific NAS share.
NodeumApi.NasSharesApitestNasSharePUT /nas/{nas_id}/nas_shares/-/testTest an unsaved NAS Share.
NodeumApi.NasSharesApitestResultNasShareGET /nas/{nas_id}/nas_shares/-/testCheck result of a NAS Share test job.
NodeumApi.NasSharesApiupdateNasSharePUT /nas_shares/{nas_share_id}Updates a specific NAS share.
NodeumApi.NasSharesApiupdateNasShareByNasPUT /nas/{nas_id}/nas_shares/{nas_share_id}Updates a specific NAS share.
NodeumApi.NasSharesApiupdateNasShareByPoolPUT /pools/{pool_id}/nas_shares/{nas_share_id}Updates a specific NAS share.
NodeumApi.PoolsApicreatePoolPOST /poolsCreates a new pool.
NodeumApi.PoolsApicreatePrimaryScanPOST /pools/{pool_id}/primary_scanSet a new primary pool scan option.
NodeumApi.PoolsApidestroyPoolDELETE /pools/{pool_id}Destroys a specific tape pool.
NodeumApi.PoolsApidestroyPrimaryScanDELETE /pools/{pool_id}/primary_scanDisable the primary pool scan.
NodeumApi.PoolsApiindexPoolsGET /poolsLists all pools.
NodeumApi.PoolsApimountPoolPUT /pools/{pool_id}/mountMount Pool.
NodeumApi.PoolsApimountStatusPoolGET /pools/{pool_id}/mountGet mount status of Pool.
NodeumApi.PoolsApishowPoolGET /pools/{pool_id}Displays a specific pool.
NodeumApi.PoolsApishowPrimaryScanGET /pools/{pool_id}/primary_scanDisplays the primary pool scan status.
NodeumApi.PoolsApisyncPrimaryPoolPOST /pools/{pool_id}/syncSynchronize a primary after a scan (for internal use only).
NodeumApi.PoolsApiunmountPoolDELETE /pools/{pool_id}/mountUnmount Pool.
NodeumApi.PoolsApiupdatePoolPUT /pools/{pool_id}Updates a specific pool.
NodeumApi.PoolsApiupdatePrimaryScanPUT /pools/{pool_id}/primary_scanUpdates the existing primary pool scan option.
NodeumApi.StatisticsApistatisticsByDateGET /statistics/by_dateGet statistics about files, grouped by date
NodeumApi.StatisticsApistatisticsByFileExtensionGET /statistics/by_file_extensionGet statistics about files, grouped by file extension
NodeumApi.StatisticsApistatisticsByGroupOwnerGET /statistics/by_group_ownerGet statistics about files, grouped by owner (group)
NodeumApi.StatisticsApistatisticsByMetadataGET /statistics/by_metadataGet statistics about files, grouped by metadata
NodeumApi.StatisticsApistatisticsByPrimaryCloudGET /statistics/by_primary_cloudGet statistics about files, grouped by primary Cloud
NodeumApi.StatisticsApistatisticsByPrimaryNameGET /statistics/by_primary_nameGet statistics about files, grouped by primary storages
NodeumApi.StatisticsApistatisticsByPrimaryNasGET /statistics/by_primary_nasGet statistics about files, grouped by primary NAS
NodeumApi.StatisticsApistatisticsByPrimaryStorageGET /statistics/by_primary_storageGet statistics about files, grouped by primary storage
NodeumApi.StatisticsApistatisticsBySecondaryCloudGET /statistics/by_secondary_cloudGet statistics about files, grouped by secondary Cloud
NodeumApi.StatisticsApistatisticsBySecondaryNasGET /statistics/by_secondary_nasGet statistics about files, grouped by secondary NAS
NodeumApi.StatisticsApistatisticsBySecondaryStorageGET /statistics/by_secondary_storageGet statistics about files, grouped by secondary storage
NodeumApi.StatisticsApistatisticsBySecondaryTapeGET /statistics/by_secondary_tapeGet statistics about files, grouped by secondary Tape
NodeumApi.StatisticsApistatisticsBySizeGET /statistics/by_sizeGet statistics about files, grouped by size
NodeumApi.StatisticsApistatisticsByUserOwnerGET /statistics/by_user_ownerGet statistics about files, grouped by owner (user)
NodeumApi.StatisticsApistatisticsStorageGET /statistics/storageGet statistics about storages, grouped by types
NodeumApi.StatisticsApistatisticsTaskByMetadataGET /statistics/task_by_metadataGet statistics about tasks executions, grouped by metadata
NodeumApi.StatisticsApistatisticsTaskByStatusGET /statistics/task_by_statusGet statistics about tasks executions, grouped by status
NodeumApi.StatisticsApistatisticsTaskByStorageGET /statistics/task_by_storageGet statistics about tasks executions, grouped by source and destination
NodeumApi.StatisticsApistatisticsTaskByWorkflowGET /statistics/task_by_workflowGet statistics about tasks executions, grouped by workflow
NodeumApi.SystemsApidownloadResetVarsPOST /systems/reset/generate_varsCreates a YAML file with selected tables and downloads it
NodeumApi.SystemsApiresultDownloadTracesGET /systems/download_tracesCheck result of a download traces job.
NodeumApi.SystemsApitriggerDownloadTracesPUT /systems/download_tracesTrigger a download traces request.
NodeumApi.TapeDrivesApicreateTapeDriveByTapeLibraryPOST /tape_libraries/{tape_library_id}/tape_drivesCreates a new tape drive.
NodeumApi.TapeDrivesApidestroyTapeDriveDELETE /tape_drives/{tape_drive_id}Destroys a specific tape drive.
NodeumApi.TapeDrivesApidestroyTapeDriveByTapeLibraryDELETE /tape_libraries/{tape_library_id}/tape_drives/{tape_drive_id}Destroys a specific tape drive.
NodeumApi.TapeDrivesApiindexTapeDriveDevicesGET /tape_libraries/{tape_library_id}/tape_drives/-/devicesLists tape drives devices.
NodeumApi.TapeDrivesApiindexTapeDrivesGET /tape_drivesLists all tape drives.
NodeumApi.TapeDrivesApiindexTapeDrivesByTapeLibraryGET /tape_libraries/{tape_library_id}/tape_drivesLists all tape drives.
NodeumApi.TapeDrivesApishowTapeDriveGET /tape_drives/{tape_drive_id}Displays a specific tape drive.
NodeumApi.TapeDrivesApishowTapeDriveByTapeLibraryGET /tape_libraries/{tape_library_id}/tape_drives/{tape_drive_id}Displays a specific tape drive.
NodeumApi.TapeDrivesApiupdateTapeDrivePUT /tape_drives/{tape_drive_id}Updates a specific tape drive.
NodeumApi.TapeDrivesApiupdateTapeDriveByTapeLibraryPUT /tape_libraries/{tape_library_id}/tape_drives/{tape_drive_id}Updates a specific tape drive.
NodeumApi.TapeLibrariesApicreateTapeLibraryPOST /tape_librariesCreates a new tape library.
NodeumApi.TapeLibrariesApidestroyTapeLibraryDELETE /tape_libraries/{tape_library_id}Destroys a specific tape library.
NodeumApi.TapeLibrariesApiindexTapeLibrariesGET /tape_librariesLists all tape libraries.
NodeumApi.TapeLibrariesApiindexTapeLibraryDevicesGET /tape_libraries/-/devicesLists tape libraries devices.
NodeumApi.TapeLibrariesApishowTapeLibraryGET /tape_libraries/{tape_library_id}Displays a specific tape library.
NodeumApi.TapeLibrariesApiupdateTapeLibraryPUT /tape_libraries/{tape_library_id}Updates a specific tape library.
NodeumApi.TapesApidestroyTapeDELETE /tapes/{tape_id}Destroys a specific tape. Only when it's an orphan.
NodeumApi.TapesApiindexTapeStatsGET /tape_statsList all tape statistics.
NodeumApi.TapesApiindexTapesGET /tapesLists all tapes.
NodeumApi.TapesApiindexTapesByPoolGET /pools/{pool_id}/tapesLists all tapes.
NodeumApi.TapesApiindexTapesByTapeLibraryGET /tape_libraries/{tape_library_id}/tapesLists all tapes.
NodeumApi.TapesApimountStatusTapeGET /tapes/{tape_id}/mountGet mount status of Tape.
NodeumApi.TapesApimountStatusTapeByPoolGET /pools/{pool_id}/tapes/{tape_id}/mountGet mount status of Tape.
NodeumApi.TapesApimountStatusTapeByTapeLibraryGET /tape_libraries/{tape_library_id}/tapes/{tape_id}/mountGet mount status of Tape.
NodeumApi.TapesApishowTapeGET /tapes/{tape_id}Displays a specific tape.
NodeumApi.TapesApishowTapeByPoolGET /pools/{pool_id}/tapes/{tape_id}Displays a specific tape.
NodeumApi.TapesApishowTapeByTapeLibraryGET /tape_libraries/{tape_library_id}/tapes/{tape_id}Displays a specific tape.
NodeumApi.TapesApishowTapeStatGET /tapes/{tape_id}/tape_statDisplay statistic for a specific tape.
NodeumApi.TapesApishowTapeStatByPoolGET /pools/{pool_id}/tapes/{tape_id}/tape_statDisplay statistic for a specific tape.
NodeumApi.TapesApishowTapeStatByTapeLibraryGET /tape_libraries/{tape_library_id}/tapes/{tape_id}/tape_statDisplay statistic for a specific tape.
NodeumApi.TaskCallbacksApicreateTaskCallbackPOST /tasks/{task_id}/task_callbacksCreates a new task callback.
NodeumApi.TaskCallbacksApidestroyTaskCallbackDELETE /tasks/{task_id}/task_callbacks/{task_callback_id}Destroys a specific task callback.
NodeumApi.TaskCallbacksApiindexTaskCallbacksGET /tasks/{task_id}/task_callbacksLists all task callbacks.
NodeumApi.TaskCallbacksApishowTaskCallbackGET /tasks/{task_id}/task_callbacks/{task_callback_id}Displays a specific task callback.
NodeumApi.TaskCallbacksApiupdateTaskCallbackPUT /tasks/{task_id}/task_callbacks/{task_callback_id}Updates a specific task callback.
NodeumApi.TaskDestinationsApicreateTaskDestinationPOST /tasks/{task_id}/task_destinationsCreates a new task destination.
NodeumApi.TaskDestinationsApidestroyTaskDestinationDELETE /tasks/{task_id}/task_destinations/{task_destination_id}Destroys a specific task destination.
NodeumApi.TaskDestinationsApiindexTaskDestinationsGET /tasks/{task_id}/task_destinationsLists all task destinations.
NodeumApi.TaskDestinationsApishowTaskDestinationGET /tasks/{task_id}/task_destinations/{task_destination_id}Displays a specific task destination.
NodeumApi.TaskDestinationsApiupdateTaskDestinationPUT /tasks/{task_id}/task_destinations/{task_destination_id}Updates a specific task destination.
NodeumApi.TaskExecutionsApiindexTaskExecutionsGET /task_executionsLists all task executions.
NodeumApi.TaskExecutionsApiindexTaskExecutionsByTaskGET /tasks/{task_id}/task_executionsLists all task executions.
NodeumApi.TaskExecutionsApishowTaskExecutionGET /task_executions/{task_execution_id}Displays a specific task execution.
NodeumApi.TaskExecutionsApishowTaskExecutionByTaskGET /tasks/{task_id}/task_executions/{task_execution_id}Displays a specific task execution.
NodeumApi.TaskMetadataApicreateTaskMetadatumPOST /tasks/{task_id}/task_metadataCreates a new task metadatum.
NodeumApi.TaskMetadataApidestroyTaskMetadatumDELETE /tasks/{task_id}/task_metadata/{task_metadatum_id}Destroys a specific task metadatum.
NodeumApi.TaskMetadataApiindexTaskMetadataGET /tasks/{task_id}/task_metadataLists all task metadata.
NodeumApi.TaskMetadataApishowTaskMetadatumGET /tasks/{task_id}/task_metadata/{task_metadatum_id}Displays a specific task metadatum.
NodeumApi.TaskMetadataApiupdateTaskMetadatumPUT /tasks/{task_id}/task_metadata/{task_metadatum_id}Updates a specific task metadatum.
NodeumApi.TaskOptionsApicreateTaskOptionPOST /tasks/{task_id}/task_optionsCreates a new task option.
NodeumApi.TaskOptionsApidestroyTaskOptionDELETE /tasks/{task_id}/task_options/{task_option_id}Destroys a specific task option.
NodeumApi.TaskOptionsApiindexTaskOptionsGET /tasks/{task_id}/task_optionsLists all task options.
NodeumApi.TaskOptionsApishowTaskOptionGET /tasks/{task_id}/task_options/{task_option_id}Displays a specific task option.
NodeumApi.TaskOptionsApiupdateTaskOptionPUT /tasks/{task_id}/task_options/{task_option_id}Updates a specific task option.
NodeumApi.TaskSchedulesApicreateTaskSchedulePOST /tasks/{task_id}/task_scheduleCreates a new task schedule. Only one should be created.
NodeumApi.TaskSchedulesApidestroyTaskScheduleDELETE /tasks/{task_id}/task_scheduleDestroys the task schedule.
NodeumApi.TaskSchedulesApiindexTaskSchedulesGET /task_schedulesLists all task schedules.
NodeumApi.TaskSchedulesApishowTaskScheduleGET /tasks/{task_id}/task_scheduleDisplays the task schedule.
NodeumApi.TaskSchedulesApiupdateTaskSchedulePUT /tasks/{task_id}/task_scheduleUpdates the existing task schedule.
NodeumApi.TaskSourcesApicreateTaskSourcePOST /tasks/{task_id}/task_sourcesCreates a new task source.
NodeumApi.TaskSourcesApidestroyTaskSourceDELETE /tasks/{task_id}/task_sources/{task_source_id}Destroys a specific task source.
NodeumApi.TaskSourcesApiindexTaskSourcesGET /tasks/{task_id}/task_sourcesLists all task sources.
NodeumApi.TaskSourcesApishowTaskSourceGET /tasks/{task_id}/task_sources/{task_source_id}Displays a specific task source.
NodeumApi.TaskSourcesApiupdateTaskSourcePUT /tasks/{task_id}/task_sources/{task_source_id}Updates a specific task source.
NodeumApi.TasksApicreateTaskPOST /tasksCreates a new task.
NodeumApi.TasksApidestroyTaskDELETE /tasks/{task_id}Destroys a specific task.
NodeumApi.TasksApiindexTasksGET /tasksLists all tasks.
NodeumApi.TasksApipauseTaskPUT /tasks/{task_id}/action/pausePause a task.
NodeumApi.TasksApipauseTaskResultGET /tasks/{task_id}/action/pauseCheck result of a task pause request.
NodeumApi.TasksApiresumeTaskPUT /tasks/{task_id}/action/resumeResume a task.
NodeumApi.TasksApiresumeTaskResultGET /tasks/{task_id}/action/resumeCheck result of a task resume request.
NodeumApi.TasksApirunTaskPUT /tasks/{task_id}/action/runRun a task.
NodeumApi.TasksApirunTaskResultGET /tasks/{task_id}/action/runCheck result of a task run request.
NodeumApi.TasksApishowTaskGET /tasks/{task_id}Displays a specific task.
NodeumApi.TasksApistopTaskPUT /tasks/{task_id}/action/stopStop a task.
NodeumApi.TasksApistopTaskResultGET /tasks/{task_id}/action/stopCheck result of a task stop request.
NodeumApi.TasksApiupdateTaskPUT /tasks/{task_id}Updates a specific task.
NodeumApi.UsersApicreateApiKeyPOST /users/me/api_keysCreates a new API Key for current user.
NodeumApi.UsersApicreateConfigurationPOST /users/me/configurationsCreates a new configuration value for current user.
NodeumApi.UsersApidestroyApiKeyDELETE /users/me/api_keys/{api_key_id}Destroys a specific API Key.
NodeumApi.UsersApidestroyConfigurationDELETE /users/me/configurations/{configuration_id}Destroys a specific configuration value.
NodeumApi.UsersApiindexApiKeysGET /users/me/api_keysLists all API keys of current user.
NodeumApi.UsersApiindexConfigurationsGET /users/me/configurationsLists all configurations of current user.
NodeumApi.UsersApiindexSystemGroupsGET /groups/-/systemsList all system groups.
NodeumApi.UsersApiindexSystemUsersGET /users/-/systemsList all system users.
NodeumApi.UsersApishowApiKeyGET /users/me/api_keys/{api_key_id}Displays a specific API Key with its scopes.
NodeumApi.UsersApishowConfigurationGET /users/me/configurations/{configuration_id}Displays a specific configuration value.
NodeumApi.UsersApiupdateApiKeyPUT /users/me/api_keys/{api_key_id}Updates a specific API Key.
NodeumApi.UsersApiupdateConfigurationPUT /users/me/configurations/{configuration_id}Updates a specific configuration value.

Documentation for Models

Documentation for Authorization

BasicAuth

  • Type: HTTP basic authentication

BearerAuth

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header
1.88.0

4 years ago

1.87.0

4 years ago

1.86.0

4 years ago

1.85.1

4 years ago