Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nodeum_sdk

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodeum_sdk

  • 1.88.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

nodeum_sdk

Nodeum - the Ruby gem for the 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.RubyClientCodegen For more information, please visit https://www.nodeum.io/

Installation

Build a gem

To build the Ruby code into a gem:

gem build nodeum_sdk.gemspec

Then either install the gem locally:

gem install ./nodeum_sdk-1.88.0.gem

(for development, run gem install --dev ./nodeum_sdk-1.88.0.gem to install the development dependencies)

or publish the gem to a gem hosting service, e.g. RubyGems.

Finally add this to the Gemfile:

gem 'nodeum_sdk', '~> 1.88.0'

Install from Git

If the Ruby gem is hosted at a git repository: https://github.com/nodeum-io/nodeum-sdk-ruby, then add the following in the Gemfile:

gem 'nodeum_sdk', :git => 'https://github.com/nodeum-io/nodeum-sdk-ruby.git'

Include the Ruby code directly

Include the Ruby code directly using -I as follows:

ruby -Ilib script.rb

Getting Started

Please follow the installation procedure and then run the following code:

# Load the gem
require 'nodeum_sdk'

# Setup authorization
Nodeum.configure do |config|
  # Configure HTTP basic authorization: BasicAuth
  config.username = 'YOUR_USERNAME'
  config.password = 'YOUR_PASSWORD'

  # Configure API key authorization: BearerAuth
  config.api_key['Authorization'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  #config.api_key_prefix['Authorization'] = 'Bearer'
end

api_instance = Nodeum::CloudBucketsApi.new
opts = {
  limit: 56, # Integer | The number of items to display for pagination.
  offset: 56, # Integer | The number of items to skip for pagination.
  sort_by: ['sort_by_example'], # Array<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
  cloud_connector_id: 'cloud_connector_id_example', # String | Filter on cloud connector id
  pool_id: 'pool_id_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
}

begin
  #Lists all cloud buckets.
  result = api_instance.index_cloud_buckets(opts)
  p result
rescue Nodeum::ApiError => e
  puts "Exception when calling CloudBucketsApi->index_cloud_buckets: #{e}"
end

Documentation for API Endpoints

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

ClassMethodHTTP requestDescription
Nodeum::CloudBucketsApiindex_cloud_bucketsGET /cloud_bucketsLists all cloud buckets.
Nodeum::CloudBucketsApiindex_cloud_buckets_by_cloud_connectorGET /cloud_connectors/{cloud_connector_id}/cloud_bucketsLists all cloud buckets.
Nodeum::CloudBucketsApiindex_cloud_buckets_by_poolGET /pools/{pool_id}/cloud_bucketsLists all cloud buckets from pool.
Nodeum::CloudBucketsApimount_status_cloud_bucketGET /cloud_buckets/{cloud_bucket_id}/mountGet mount status of Cloud bucket.
Nodeum::CloudBucketsApimount_status_cloud_bucket_by_cloud_connectorGET /cloud_connectors/{cloud_connector_id}/cloud_buckets/{cloud_bucket_id}/mountGet mount status of Cloud bucket.
Nodeum::CloudBucketsApimount_status_cloud_bucket_by_poolGET /pools/{pool_id}/cloud_buckets/{cloud_bucket_id}/mountGet mount status of Cloud bucket.
Nodeum::CloudBucketsApishow_cloud_bucketGET /cloud_buckets/{cloud_bucket_id}Displays a specific cloud bucket.
Nodeum::CloudBucketsApishow_cloud_bucket_by_cloud_connectorGET /cloud_connectors/{cloud_connector_id}/cloud_buckets/{cloud_bucket_id}Displays a specific cloud bucket.
Nodeum::CloudBucketsApishow_cloud_bucket_by_poolGET /pools/{pool_id}/cloud_buckets/{cloud_bucket_id}Displays a specific cloud bucket.
Nodeum::CloudBucketsApisync_cloud_bucketsPUT /cloud_connectors/{cloud_connector_id}/cloud_buckets/-/syncSynchronize internal cloud buckets with their remote equivalent.
Nodeum::CloudBucketsApisync_result_cloud_bucketsGET /cloud_connectors/{cloud_connector_id}/cloud_buckets/-/syncCheck result of cloud connector sync job.
Nodeum::CloudBucketsApiupdate_cloud_bucketPUT /cloud_buckets/{cloud_bucket_id}Updates a specific cloud bucket.
Nodeum::CloudBucketsApiupdate_cloud_bucket_by_cloud_connectorPUT /cloud_connectors/{cloud_connector_id}/cloud_buckets/{cloud_bucket_id}Updates a specific cloud bucket.
Nodeum::CloudBucketsApiupdate_cloud_bucket_by_poolPUT /pools/{pool_id}/cloud_buckets/{cloud_bucket_id}Updates a specific cloud bucket.
Nodeum::CloudBucketsApiupdate_config_file_cloud_bucketPUT /cloud_buckets/{cloud_bucket_id}/config_fileUpdates a specific cloud bucket.
Nodeum::CloudConnectorsApicreate_cloud_connectorPOST /cloud_connectorsCreates a new cloud connector.
Nodeum::CloudConnectorsApidestroy_cloud_connectorDELETE /cloud_connectors/{cloud_connector_id}Destroys a specific cloud connector.
Nodeum::CloudConnectorsApiindex_cloud_connectorsGET /cloud_connectorsLists all cloud connectors.
Nodeum::CloudConnectorsApishow_cloud_connectorGET /cloud_connectors/{cloud_connector_id}Displays a specific cloud connector.
Nodeum::CloudConnectorsApitest_cloud_connectorPUT /cloud_connectors/-/testTest an unsaved cloud connector.
Nodeum::CloudConnectorsApitest_result_cloud_connectorGET /cloud_connectors/-/testCheck result of cloud connector test job.
Nodeum::CloudConnectorsApiupdate_cloud_connectorPUT /cloud_connectors/{cloud_connector_id}Updates a specific cloud connector.
Nodeum::ContainersApicreate_containerPOST /containersCreates a new container.
Nodeum::ContainersApicreate_container_privilegePOST /containers/{container_id}/container_privilegesCreates a new privilege on the container.
Nodeum::ContainersApidestroy_containerDELETE /containers/{container_id}Destroys a specific container.
Nodeum::ContainersApidestroy_container_privilegeDELETE /containers/{container_id}/container_privileges/{container_privilege_id}Destroys a specific privilege.
Nodeum::ContainersApiindex_container_privilegesGET /containers/{container_id}/container_privilegesLists all privilege on the container.
Nodeum::ContainersApiindex_containersGET /containersLists all containers.
Nodeum::ContainersApishow_containerGET /containers/{container_id}Displays a specific container.
Nodeum::ContainersApishow_container_privilegeGET /containers/{container_id}/container_privileges/{container_privilege_id}Displays a specific privilege.
Nodeum::ContainersApiupdate_containerPUT /containers/{container_id}Updates a specific container.
Nodeum::ContainersApiupdate_container_privilegePUT /containers/{container_id}/container_privileges/{container_privilege_id}Updates a specific privilege.
Nodeum::FilesApifiles_childrenGET /files/{file_parent_id}/childrenLists files under a specific folder.
Nodeum::FilesApifiles_children_by_containerGET /containers/{container_id}/files/{file_parent_id}/childrenLists files under a specific folder.
Nodeum::FilesApifiles_children_by_poolGET /pools/{pool_id}/files/{file_parent_id}/childrenLists files under a specific folder.
Nodeum::FilesApifiles_children_by_taskGET /tasks/{task_id}/files/{file_parent_id}/childrenLists files under a specific folder.
Nodeum::FilesApifiles_children_by_task_executionGET /task_executions/{task_execution_id}/files/{file_parent_id}/childrenLists files under a specific folder.
Nodeum::FilesApifiles_children_by_task_execution_by_taskGET /tasks/{task_id}/task_executions/{task_execution_id}/files/{file_parent_id}/childrenLists files under a specific folder.
Nodeum::FilesApiimport_files_children_by_poolGET /pools/{pool_id}/import_files/{file_parent_id}/childrenLists files under a specific folder on tape of pools, specific for Data Exchange.
Nodeum::FilesApiindex_filesGET /filesLists files on root.
Nodeum::FilesApiindex_files_by_containerGET /containers/{container_id}/filesLists files on root.
Nodeum::FilesApiindex_files_by_poolGET /pools/{pool_id}/filesLists files on root.
Nodeum::FilesApiindex_files_by_taskGET /tasks/{task_id}/filesLists files on root.
Nodeum::FilesApiindex_files_by_task_executionGET /task_executions/{task_execution_id}/filesLists files on root.
Nodeum::FilesApiindex_files_by_task_execution_by_taskGET /tasks/{task_id}/task_executions/{task_execution_id}/filesLists files on root.
Nodeum::FilesApiindex_import_files_by_poolGET /pools/{pool_id}/import_filesLists files on root of tape of pools, specific for Data Exchange.
Nodeum::FilesApiindex_on_tapes_files_by_poolGET /pools/{pool_id}/on_tapes_filesLists files on root of tape of pools, specific for Active and Offline.
Nodeum::FilesApiindex_tapes_by_file_by_poolGET /pools/{pool_id}/files/{file_id}/tapesDisplays tapes containing specific file, related to the specific pool.
Nodeum::FilesApiindex_tapes_by_file_by_taskGET /tasks/{task_id}/files/{file_id}/tapesDisplays tapes containing specific file, related to the specific task.
Nodeum::FilesApiindex_tapes_by_file_by_task_executionGET /task_executions/{task_execution_id}/files/{file_id}/tapesDisplays tapes containing specific file, related to the specific task.
Nodeum::FilesApiindex_tapes_by_file_by_task_execution_by_taskGET /tasks/{task_id}/task_executions/{task_execution_id}/files/{file_id}/tapesDisplays tapes containing specific file, related to the specific task.
Nodeum::FilesApion_tapes_files_children_by_poolGET /pools/{pool_id}/on_tapes_files/{file_parent_id}/childrenLists files under a specific folder on tape of pools, specific for Active and Offline.
Nodeum::FilesApishow_fileGET /files/{file_id}Displays a specific file.
Nodeum::FilesApishow_file_by_containerGET /containers/{container_id}/files/{file_id}Displays a specific file.
Nodeum::FilesApishow_file_by_poolGET /pools/{pool_id}/files/{file_id}Displays a specific file.
Nodeum::FilesApishow_file_by_taskGET /tasks/{task_id}/files/{file_id}Displays a specific file.
Nodeum::FilesApishow_file_by_task_executionGET /task_executions/{task_execution_id}/files/{file_id}Displays a specific file.
Nodeum::FilesApishow_file_by_task_execution_by_taskGET /tasks/{task_id}/task_executions/{task_execution_id}/files/{file_id}Displays a specific file.
Nodeum::FilesApishow_import_file_by_poolGET /pools/{pool_id}/import_files/{file_id}Displays a specific file on tape of pools, specific for Data Exchange.
Nodeum::FilesApishow_on_tape_file_by_poolGET /pools/{pool_id}/on_tapes_files/{file_id}Displays a specific file on tape of pools, specific for Active and Offline.
Nodeum::MetadataApiindex_file_metadata_definitionsGET /file_metadata_definitionsList file metadata definitions
Nodeum::MetadataApiindex_task_metadata_definitionsGET /task_metadata_definitionsList task metadata definitions
Nodeum::MetadataApishow_file_metadata_definitionGET /file_metadata_definitions/{metadata_definition_id}Displays a specific task metadata definition.
Nodeum::MetadataApishow_task_metadata_definitionGET /task_metadata_definitions/{metadata_definition_id}Displays a specific task metadata definition.
Nodeum::MountsApiindex_mountsGET /mountsList all mounted storages.
Nodeum::NasApicreate_nasPOST /nasCreates a new NAS.
Nodeum::NasApidestroy_nasDELETE /nas/{nas_id}Destroys a specific NAS.
Nodeum::NasApiindex_nasGET /nasLists all NAS.
Nodeum::NasApishow_nasGET /nas/{nas_id}Displays a specific NAS.
Nodeum::NasApiupdate_nasPUT /nas/{nas_id}Updates a specific NAS.
Nodeum::NasSharesApicreate_nas_share_by_nasPOST /nas/{nas_id}/nas_sharesCreates a new NAS share.
Nodeum::NasSharesApidestroy_nas_shareDELETE /nas_shares/{nas_share_id}Destroys a specific NAS share.
Nodeum::NasSharesApidestroy_nas_share_by_nasDELETE /nas/{nas_id}/nas_shares/{nas_share_id}Destroys a specific NAS share.
Nodeum::NasSharesApidestroy_nas_share_by_poolDELETE /pools/{pool_id}/nas_shares/{nas_share_id}Destroys a specific NAS share.
Nodeum::NasSharesApiindex_nas_sharesGET /nas_sharesLists all NAS shares.
Nodeum::NasSharesApiindex_nas_shares_by_nasGET /nas/{nas_id}/nas_sharesLists all NAS shares.
Nodeum::NasSharesApiindex_nas_shares_by_poolGET /pools/{pool_id}/nas_sharesLists all NAS shares from pool.
Nodeum::NasSharesApimount_status_nas_shareGET /nas_shares/{nas_share_id}/mountGet mount status of NAS Share.
Nodeum::NasSharesApimount_status_nas_share_by_nasGET /nas/{nas_id}/nas_shares/{nas_share_id}/mountGet mount status of NAS Share.
Nodeum::NasSharesApimount_status_nas_share_by_poolGET /pools/{pool_id}/nas_shares/{nas_share_id}/mountGet mount status of NAS Share.
Nodeum::NasSharesApishow_nas_shareGET /nas_shares/{nas_share_id}Displays a specific NAS share.
Nodeum::NasSharesApishow_nas_share_by_nasGET /nas/{nas_id}/nas_shares/{nas_share_id}Displays a specific NAS share.
Nodeum::NasSharesApishow_nas_share_by_poolGET /pools/{pool_id}/nas_shares/{nas_share_id}Displays a specific NAS share.
Nodeum::NasSharesApitest_nas_sharePUT /nas/{nas_id}/nas_shares/-/testTest an unsaved NAS Share.
Nodeum::NasSharesApitest_result_nas_shareGET /nas/{nas_id}/nas_shares/-/testCheck result of a NAS Share test job.
Nodeum::NasSharesApiupdate_nas_sharePUT /nas_shares/{nas_share_id}Updates a specific NAS share.
Nodeum::NasSharesApiupdate_nas_share_by_nasPUT /nas/{nas_id}/nas_shares/{nas_share_id}Updates a specific NAS share.
Nodeum::NasSharesApiupdate_nas_share_by_poolPUT /pools/{pool_id}/nas_shares/{nas_share_id}Updates a specific NAS share.
Nodeum::PoolsApicreate_poolPOST /poolsCreates a new pool.
Nodeum::PoolsApicreate_primary_scanPOST /pools/{pool_id}/primary_scanSet a new primary pool scan option.
Nodeum::PoolsApidestroy_poolDELETE /pools/{pool_id}Destroys a specific tape pool.
Nodeum::PoolsApidestroy_primary_scanDELETE /pools/{pool_id}/primary_scanDisable the primary pool scan.
Nodeum::PoolsApiindex_poolsGET /poolsLists all pools.
Nodeum::PoolsApimount_poolPUT /pools/{pool_id}/mountMount Pool.
Nodeum::PoolsApimount_status_poolGET /pools/{pool_id}/mountGet mount status of Pool.
Nodeum::PoolsApishow_poolGET /pools/{pool_id}Displays a specific pool.
Nodeum::PoolsApishow_primary_scanGET /pools/{pool_id}/primary_scanDisplays the primary pool scan status.
Nodeum::PoolsApisync_primary_poolPOST /pools/{pool_id}/syncSynchronize a primary after a scan (for internal use only).
Nodeum::PoolsApiunmount_poolDELETE /pools/{pool_id}/mountUnmount Pool.
Nodeum::PoolsApiupdate_poolPUT /pools/{pool_id}Updates a specific pool.
Nodeum::PoolsApiupdate_primary_scanPUT /pools/{pool_id}/primary_scanUpdates the existing primary pool scan option.
Nodeum::StatisticsApistatistics_by_dateGET /statistics/by_dateGet statistics about files, grouped by date
Nodeum::StatisticsApistatistics_by_file_extensionGET /statistics/by_file_extensionGet statistics about files, grouped by file extension
Nodeum::StatisticsApistatistics_by_group_ownerGET /statistics/by_group_ownerGet statistics about files, grouped by owner (group)
Nodeum::StatisticsApistatistics_by_metadataGET /statistics/by_metadataGet statistics about files, grouped by metadata
Nodeum::StatisticsApistatistics_by_primary_cloudGET /statistics/by_primary_cloudGet statistics about files, grouped by primary Cloud
Nodeum::StatisticsApistatistics_by_primary_nameGET /statistics/by_primary_nameGet statistics about files, grouped by primary storages
Nodeum::StatisticsApistatistics_by_primary_nasGET /statistics/by_primary_nasGet statistics about files, grouped by primary NAS
Nodeum::StatisticsApistatistics_by_primary_storageGET /statistics/by_primary_storageGet statistics about files, grouped by primary storage
Nodeum::StatisticsApistatistics_by_secondary_cloudGET /statistics/by_secondary_cloudGet statistics about files, grouped by secondary Cloud
Nodeum::StatisticsApistatistics_by_secondary_nasGET /statistics/by_secondary_nasGet statistics about files, grouped by secondary NAS
Nodeum::StatisticsApistatistics_by_secondary_storageGET /statistics/by_secondary_storageGet statistics about files, grouped by secondary storage
Nodeum::StatisticsApistatistics_by_secondary_tapeGET /statistics/by_secondary_tapeGet statistics about files, grouped by secondary Tape
Nodeum::StatisticsApistatistics_by_sizeGET /statistics/by_sizeGet statistics about files, grouped by size
Nodeum::StatisticsApistatistics_by_user_ownerGET /statistics/by_user_ownerGet statistics about files, grouped by owner (user)
Nodeum::StatisticsApistatistics_storageGET /statistics/storageGet statistics about storages, grouped by types
Nodeum::StatisticsApistatistics_task_by_metadataGET /statistics/task_by_metadataGet statistics about tasks executions, grouped by metadata
Nodeum::StatisticsApistatistics_task_by_statusGET /statistics/task_by_statusGet statistics about tasks executions, grouped by status
Nodeum::StatisticsApistatistics_task_by_storageGET /statistics/task_by_storageGet statistics about tasks executions, grouped by source and destination
Nodeum::StatisticsApistatistics_task_by_workflowGET /statistics/task_by_workflowGet statistics about tasks executions, grouped by workflow
Nodeum::SystemsApidownload_reset_varsPOST /systems/reset/generate_varsCreates a YAML file with selected tables and downloads it
Nodeum::SystemsApiresult_download_tracesGET /systems/download_tracesCheck result of a download traces job.
Nodeum::SystemsApitrigger_download_tracesPUT /systems/download_tracesTrigger a download traces request.
Nodeum::TapeDrivesApicreate_tape_drive_by_tape_libraryPOST /tape_libraries/{tape_library_id}/tape_drivesCreates a new tape drive.
Nodeum::TapeDrivesApidestroy_tape_driveDELETE /tape_drives/{tape_drive_id}Destroys a specific tape drive.
Nodeum::TapeDrivesApidestroy_tape_drive_by_tape_libraryDELETE /tape_libraries/{tape_library_id}/tape_drives/{tape_drive_id}Destroys a specific tape drive.
Nodeum::TapeDrivesApiindex_tape_drive_devicesGET /tape_libraries/{tape_library_id}/tape_drives/-/devicesLists tape drives devices.
Nodeum::TapeDrivesApiindex_tape_drivesGET /tape_drivesLists all tape drives.
Nodeum::TapeDrivesApiindex_tape_drives_by_tape_libraryGET /tape_libraries/{tape_library_id}/tape_drivesLists all tape drives.
Nodeum::TapeDrivesApishow_tape_driveGET /tape_drives/{tape_drive_id}Displays a specific tape drive.
Nodeum::TapeDrivesApishow_tape_drive_by_tape_libraryGET /tape_libraries/{tape_library_id}/tape_drives/{tape_drive_id}Displays a specific tape drive.
Nodeum::TapeDrivesApiupdate_tape_drivePUT /tape_drives/{tape_drive_id}Updates a specific tape drive.
Nodeum::TapeDrivesApiupdate_tape_drive_by_tape_libraryPUT /tape_libraries/{tape_library_id}/tape_drives/{tape_drive_id}Updates a specific tape drive.
Nodeum::TapeLibrariesApicreate_tape_libraryPOST /tape_librariesCreates a new tape library.
Nodeum::TapeLibrariesApidestroy_tape_libraryDELETE /tape_libraries/{tape_library_id}Destroys a specific tape library.
Nodeum::TapeLibrariesApiindex_tape_librariesGET /tape_librariesLists all tape libraries.
Nodeum::TapeLibrariesApiindex_tape_library_devicesGET /tape_libraries/-/devicesLists tape libraries devices.
Nodeum::TapeLibrariesApishow_tape_libraryGET /tape_libraries/{tape_library_id}Displays a specific tape library.
Nodeum::TapeLibrariesApiupdate_tape_libraryPUT /tape_libraries/{tape_library_id}Updates a specific tape library.
Nodeum::TapesApidestroy_tapeDELETE /tapes/{tape_id}Destroys a specific tape. Only when it's an orphan.
Nodeum::TapesApiindex_tape_statsGET /tape_statsList all tape statistics.
Nodeum::TapesApiindex_tapesGET /tapesLists all tapes.
Nodeum::TapesApiindex_tapes_by_poolGET /pools/{pool_id}/tapesLists all tapes.
Nodeum::TapesApiindex_tapes_by_tape_libraryGET /tape_libraries/{tape_library_id}/tapesLists all tapes.
Nodeum::TapesApimount_status_tapeGET /tapes/{tape_id}/mountGet mount status of Tape.
Nodeum::TapesApimount_status_tape_by_poolGET /pools/{pool_id}/tapes/{tape_id}/mountGet mount status of Tape.
Nodeum::TapesApimount_status_tape_by_tape_libraryGET /tape_libraries/{tape_library_id}/tapes/{tape_id}/mountGet mount status of Tape.
Nodeum::TapesApishow_tapeGET /tapes/{tape_id}Displays a specific tape.
Nodeum::TapesApishow_tape_by_poolGET /pools/{pool_id}/tapes/{tape_id}Displays a specific tape.
Nodeum::TapesApishow_tape_by_tape_libraryGET /tape_libraries/{tape_library_id}/tapes/{tape_id}Displays a specific tape.
Nodeum::TapesApishow_tape_statGET /tapes/{tape_id}/tape_statDisplay statistic for a specific tape.
Nodeum::TapesApishow_tape_stat_by_poolGET /pools/{pool_id}/tapes/{tape_id}/tape_statDisplay statistic for a specific tape.
Nodeum::TapesApishow_tape_stat_by_tape_libraryGET /tape_libraries/{tape_library_id}/tapes/{tape_id}/tape_statDisplay statistic for a specific tape.
Nodeum::TaskCallbacksApicreate_task_callbackPOST /tasks/{task_id}/task_callbacksCreates a new task callback.
Nodeum::TaskCallbacksApidestroy_task_callbackDELETE /tasks/{task_id}/task_callbacks/{task_callback_id}Destroys a specific task callback.
Nodeum::TaskCallbacksApiindex_task_callbacksGET /tasks/{task_id}/task_callbacksLists all task callbacks.
Nodeum::TaskCallbacksApishow_task_callbackGET /tasks/{task_id}/task_callbacks/{task_callback_id}Displays a specific task callback.
Nodeum::TaskCallbacksApiupdate_task_callbackPUT /tasks/{task_id}/task_callbacks/{task_callback_id}Updates a specific task callback.
Nodeum::TaskDestinationsApicreate_task_destinationPOST /tasks/{task_id}/task_destinationsCreates a new task destination.
Nodeum::TaskDestinationsApidestroy_task_destinationDELETE /tasks/{task_id}/task_destinations/{task_destination_id}Destroys a specific task destination.
Nodeum::TaskDestinationsApiindex_task_destinationsGET /tasks/{task_id}/task_destinationsLists all task destinations.
Nodeum::TaskDestinationsApishow_task_destinationGET /tasks/{task_id}/task_destinations/{task_destination_id}Displays a specific task destination.
Nodeum::TaskDestinationsApiupdate_task_destinationPUT /tasks/{task_id}/task_destinations/{task_destination_id}Updates a specific task destination.
Nodeum::TaskExecutionsApiindex_task_executionsGET /task_executionsLists all task executions.
Nodeum::TaskExecutionsApiindex_task_executions_by_taskGET /tasks/{task_id}/task_executionsLists all task executions.
Nodeum::TaskExecutionsApishow_task_executionGET /task_executions/{task_execution_id}Displays a specific task execution.
Nodeum::TaskExecutionsApishow_task_execution_by_taskGET /tasks/{task_id}/task_executions/{task_execution_id}Displays a specific task execution.
Nodeum::TaskMetadataApicreate_task_metadatumPOST /tasks/{task_id}/task_metadataCreates a new task metadatum.
Nodeum::TaskMetadataApidestroy_task_metadatumDELETE /tasks/{task_id}/task_metadata/{task_metadatum_id}Destroys a specific task metadatum.
Nodeum::TaskMetadataApiindex_task_metadataGET /tasks/{task_id}/task_metadataLists all task metadata.
Nodeum::TaskMetadataApishow_task_metadatumGET /tasks/{task_id}/task_metadata/{task_metadatum_id}Displays a specific task metadatum.
Nodeum::TaskMetadataApiupdate_task_metadatumPUT /tasks/{task_id}/task_metadata/{task_metadatum_id}Updates a specific task metadatum.
Nodeum::TaskOptionsApicreate_task_optionPOST /tasks/{task_id}/task_optionsCreates a new task option.
Nodeum::TaskOptionsApidestroy_task_optionDELETE /tasks/{task_id}/task_options/{task_option_id}Destroys a specific task option.
Nodeum::TaskOptionsApiindex_task_optionsGET /tasks/{task_id}/task_optionsLists all task options.
Nodeum::TaskOptionsApishow_task_optionGET /tasks/{task_id}/task_options/{task_option_id}Displays a specific task option.
Nodeum::TaskOptionsApiupdate_task_optionPUT /tasks/{task_id}/task_options/{task_option_id}Updates a specific task option.
Nodeum::TaskSchedulesApicreate_task_schedulePOST /tasks/{task_id}/task_scheduleCreates a new task schedule. Only one should be created.
Nodeum::TaskSchedulesApidestroy_task_scheduleDELETE /tasks/{task_id}/task_scheduleDestroys the task schedule.
Nodeum::TaskSchedulesApiindex_task_schedulesGET /task_schedulesLists all task schedules.
Nodeum::TaskSchedulesApishow_task_scheduleGET /tasks/{task_id}/task_scheduleDisplays the task schedule.
Nodeum::TaskSchedulesApiupdate_task_schedulePUT /tasks/{task_id}/task_scheduleUpdates the existing task schedule.
Nodeum::TaskSourcesApicreate_task_sourcePOST /tasks/{task_id}/task_sourcesCreates a new task source.
Nodeum::TaskSourcesApidestroy_task_sourceDELETE /tasks/{task_id}/task_sources/{task_source_id}Destroys a specific task source.
Nodeum::TaskSourcesApiindex_task_sourcesGET /tasks/{task_id}/task_sourcesLists all task sources.
Nodeum::TaskSourcesApishow_task_sourceGET /tasks/{task_id}/task_sources/{task_source_id}Displays a specific task source.
Nodeum::TaskSourcesApiupdate_task_sourcePUT /tasks/{task_id}/task_sources/{task_source_id}Updates a specific task source.
Nodeum::TasksApicreate_taskPOST /tasksCreates a new task.
Nodeum::TasksApidestroy_taskDELETE /tasks/{task_id}Destroys a specific task.
Nodeum::TasksApiindex_tasksGET /tasksLists all tasks.
Nodeum::TasksApipause_taskPUT /tasks/{task_id}/action/pausePause a task.
Nodeum::TasksApipause_task_resultGET /tasks/{task_id}/action/pauseCheck result of a task pause request.
Nodeum::TasksApiresume_taskPUT /tasks/{task_id}/action/resumeResume a task.
Nodeum::TasksApiresume_task_resultGET /tasks/{task_id}/action/resumeCheck result of a task resume request.
Nodeum::TasksApirun_taskPUT /tasks/{task_id}/action/runRun a task.
Nodeum::TasksApirun_task_resultGET /tasks/{task_id}/action/runCheck result of a task run request.
Nodeum::TasksApishow_taskGET /tasks/{task_id}Displays a specific task.
Nodeum::TasksApistop_taskPUT /tasks/{task_id}/action/stopStop a task.
Nodeum::TasksApistop_task_resultGET /tasks/{task_id}/action/stopCheck result of a task stop request.
Nodeum::TasksApiupdate_taskPUT /tasks/{task_id}Updates a specific task.
Nodeum::UsersApicreate_api_keyPOST /users/me/api_keysCreates a new API Key for current user.
Nodeum::UsersApicreate_configurationPOST /users/me/configurationsCreates a new configuration value for current user.
Nodeum::UsersApidestroy_api_keyDELETE /users/me/api_keys/{api_key_id}Destroys a specific API Key.
Nodeum::UsersApidestroy_configurationDELETE /users/me/configurations/{configuration_id}Destroys a specific configuration value.
Nodeum::UsersApiindex_api_keysGET /users/me/api_keysLists all API keys of current user.
Nodeum::UsersApiindex_configurationsGET /users/me/configurationsLists all configurations of current user.
Nodeum::UsersApiindex_system_groupsGET /groups/-/systemsList all system groups.
Nodeum::UsersApiindex_system_usersGET /users/-/systemsList all system users.
Nodeum::UsersApishow_api_keyGET /users/me/api_keys/{api_key_id}Displays a specific API Key with its scopes.
Nodeum::UsersApishow_configurationGET /users/me/configurations/{configuration_id}Displays a specific configuration value.
Nodeum::UsersApiupdate_api_keyPUT /users/me/api_keys/{api_key_id}Updates a specific API Key.
Nodeum::UsersApiupdate_configurationPUT /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

FAQs

Package last updated on 01 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc