getBlockStorageVolumeTypeList
- Print
- PDF
getBlockStorageVolumeTypeList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Overview
Views the list of block storage volume types.
Requests
Request parameters
Parameter name | Requirement status | Type | Restrictions | Description |
---|---|---|---|---|
regionCode | No | String | - | - Region code Decides the Region for which the block storage instance list is to be viewed regionCode can be obtained through the getRegionList action Default: select the first Region shown in the getRegionList search results |
zoneCode | No | String | - | - ZONE code Decides the zone for which the block storage instance list is to be viewed zoneCode can be obtained through the getZoneList action |
blockStorageVolumeTypeCodeList | No | List<String> | - | - List of the block storage type code You can search by filtering with a block storage volume type code ex) --blockStorageVolumeTypeCodeList SSD |
hypervisorTypeCodeList | No | List<String> | - | - List of hypervisor type codes hypervisorTypeCode can be obtained through the getHypervisorTypeList action ex) --hypervisorTypeCodeList XEN |
serverSpecCode | No | String | - | - Server specification code You can search by filtering with a server specification code serverSpecCode can be obtained through the getServerSpecList action |
isBasicStorageAvailable | No | Boolean | - | - Default storage availability |
responseFormatType | No | String | - | - Format type of responses Options : xml | json Default : xml |
Responses
Response data type
- BlockStorageVolumeTypeList type
BlockStorageVolumeTypeList extends CommonResponse |
---|
private Integer totalRows; |
private List<BlockStorageVolumeType> blockStorageVolumeTypeList = new ArrayList<>(); |
BlockStorageVolumeType |
---|
private CommonCode blockStorageVolumeType; |
private CommonCode hypervisorType; |
private Long minBasicVolumeSize; |
private Long maxBasicVolumeSize; |
private Long minVolumeSize; |
private Long maxVolumeSize; |
private Long minIops; |
private Long maxIops; |
private Long minThroughput; |
private Long maxThroughput; |
private List<String> zoneCodeList; |
private Boolean isBasicStorageAvailable; |
Examples
Request examples
ncloud vserver getBlockStorageVolumeTypeList --regionCode KR --zoneCode KR-1 --blockStorageVolumeTypeCodeList SSD --hypervisorTypeCodeList XEN --isBasicStorageAvailable true
Response examples
<getBlockStorageVolumeTypeListResponse>
<requestId></requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<blockStorageVolumeTypeList>
<blockStorageVolumeType>
<blockStorageVolumeType>
<code>SSD</code>
<codeName>SSD</codeName>
</blockStorageVolumeType>
<hypervisorType>
<code>XEN</code>
<codeName>XEN</codeName>
</hypervisorType>
<minBasicVolumeSize>53687091200</minBasicVolumeSize>
<maxBasicVolumeSize>107374182400</maxBasicVolumeSize>
<minVolumeSize>10737418240</minVolumeSize>
<maxVolumeSize>2147483648000</maxVolumeSize>
<zoneCodeList>
<zoneCode>KR-1</zoneCode>
<zoneCode>KR-2</zoneCode>
</zoneCodeList>
<isBasicStorageAvailable>true</isBasicStorageAvailable>
</blockStorageVolumeType>
</blockStorageVolumeTypeList>
</getBlockStorageVolumeTypeListResponse>
Was this article helpful?