3.3. Volume Type¶
DATA TYPE¶
Parameters¶
Parameter Name |
Data Type |
Description |
---|---|---|
extra_specs |
Object |
The specs for each volume_types has. |
available_volume_size |
List of Integers |
Available volume sizes for the volume_type. |
available_iops_per_gb |
List of Strings |
List of available IOPS/GB values for the volume. (Available for volume_type.name=piops_iscsi_na) |
available_throughput |
List of Strings |
List of available throughput values (in MB/s) for the volume. (Available for volume_type.name=pre_nfs_na) |
id |
UUID |
ID (UUID) for the volume_type. |
name |
String |
Name for the volume_type. |
Example¶
## piops_iscsi_na
{
"extra_specs": {
"available_volume_size" : [
100, 250, 500, 1000, 2000, 4000, 8000, 12000
],
"available_iops_per_gb" : [
"2"
]
},
"id": "6685584b-1eac-4da6-b5c3-555430cf68ff",
"name": "piops_iscsi_na",
}
## pre_nfs_na
{
"extra_specs": {
"available_volume_size" : [
256, 512
],
"available_throughput" : [
"50", "100", "200", "400"
]
},
"id": "1585584b-1eac-4da6-b5c3-555430cf68ab",
"name": "pre_nfs_na",
}