Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 944 Bytes

File metadata and controls

26 lines (20 loc) · 944 Bytes

NetworkStorageApi::StorageNetworkCreate

Properties

Name Type Description Notes
name String Storage network friendly name.
description String Storage network description. [optional]
location String Location of storage network. Currently this field should be set to `PHX` or `ASH`.
volumes Array<StorageNetworkVolumeCreate> Volume to be created alongside storage. Currently only 1 volume is supported.
client_vlan Integer Custom Client VLAN that the Storage Network will be set to. [optional]

Example

require 'pnap_network_storage_api'

instance = NetworkStorageApi::StorageNetworkCreate.new(
  name: My storage network,
  description: My storage network description,
  location: PHX,
  volumes: null,
  client_vlan: 5
)