| 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] |
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
)