1.77.1-1 • Published 6 years ago

nodeum-sdk v1.77.1-1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

nodeum-sdk

NodeumSdk - JavaScript client for nodeum-sdk 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.85.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-sdk --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-sdk 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/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --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 NodeumSdk = require('nodeum-sdk');

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

Documentation for Models

Documentation for Authorization

BasicAuth

  • Type: HTTP basic authentication

BearerAuth

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