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 | Required | Type | Service limits | Description |
---|---|---|---|---|
regionCode | No | String | - Region code Decides the Region where the block storage volume type 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 where the block storage volume type list is to be viewed zoneCode can be obtained through the getZoneList action | |
blockStorageVolumeTypeCodeList.N | No | List<String> | - List of the block storage type code You can search by filtering with a block storage volume type code blockStorageVolumeTypeCode can be obtained through the getBlockStorageVolumeTypeList action ex) blockStorageVolumeTypeCodeList.1=SSD&blockStorageVolumeTypeCodeList.2=CB1 | |
hypervisorTypeCodeList.N | No | List<String> | - List of hypervisor type codes You can search by filtering with a hypervisor type code hypervisorTypeCode can be obtained through the getHypervisorTypeList action Options : XEN | KVM ex) hypervisorTypeCodeList.1=XEN&hypervisorTypeCodeList.2=KVM | |
serverSpecCode | No | String | - Server specification code You can search by filtering with a server specification code serverSpecCode can be obtained through the getServerSpecList action | |
isBaseStorageAvailable | No | Boolean | - Default storage availability | |
responseFormatType | No | String | - Format type of responses Options : xml | json Default : xml |
Responses
Response bodies
Examples
Request examples
GET {API_URL}/getBlockStorageVolumeTypeList
?regionCode=KR
&zoneCode=KR-1
&blockStorageVolumeTypeCodeList.1=SSD
&hypervisorTypeCodeList.1=XEN
&isBaseStorageAvailable=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>
<minBaseVolumeSize>53687091200</minBaseVolumeSize>
<maxBaseVolumeSize>107374182400</maxBaseVolumeSize>
<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?