Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 819 Bytes

File metadata and controls

26 lines (20 loc) · 819 Bytes

NetworkStorageApi::VolumeUpdate

Properties

Name Type Description Notes
name String Volume friendly name. [optional]
description String Volume description. [optional]
capacity_in_gb Integer Capacity of Volume in GB. Currently only whole numbers and multiples of 1000GB are supported. [optional]
path_suffix String Last part of volume's path. [optional]
permissions PermissionsUpdate [optional]

Example

require 'pnap_network_storage_api'

instance = NetworkStorageApi::VolumeUpdate.new(
  name: New Volume name,
  description: New Volume description,
  capacity_in_gb: 2000,
  path_suffix: /my/volume/path,
  permissions: null
)