changeBlockStorageInstance
- Print
- PDF
changeBlockStorageInstance
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Overview
Changes the block storage properties.
Requests
Request parameters
Parameter name | Requirement status | Type | Restrictions | Description |
---|---|---|---|---|
regionCode | No | String | - | - Region code Decides the Region of block storage instance that will resize the volume regionCode can be obtained through the getRegionList action Default: select the first Region shown in the getRegionList search results |
blockStorageInstanceNo | Yes | String | - | - The number of the block storage instance to be resized blockStorageInstanceNo can be obtained through the getBlockStorageInstanceList action |
blockStorageSize | Yes | Integer | - XEN block storage Min : 10, Max : 2000 GB - KVM block storage Min : 10, Max : 16380 GB Enter in 10 GB units | - Block storage to be resized The storage size can only be increased. A decreasing function is not available The added volume size can be applied only when the file storage size is expanded in the server See Compute > Resizing storage > Resizing storage guide in the user guide |
responseFormatType | No | String | - | - Format type of responses Options : xml | json Default : xml |
Responses
Response data type
- Type of BlockStorageInstanceList
BlockStorageInstanceList extends CommonResponse |
---|
private Integer totalRows; |
private List<BlockStorageInstance> blockStorageInstanceList = new ArrayList<>(); |
BlockStorageInstance |
---|
private String blockStorageInstanceNo; |
private String serverInstanceNo; |
private String blockStorageName; |
private CommonCode blockStorageType; |
private Long blockStorageSize; |
private String deviceName; |
private String blockStorageProductCode; |
private CommonCode blockStorageInstanceStatus; |
private CommonCode blockStorageInstanceOperation; |
private String blockStorageInstanceStatusName; |
private Date createDate; |
private String blockStorageDescription; |
private CommonCode blockStorageDiskType; |
private CommonCode blockStorageDiskDetailType; |
private Integer maxIopsThroughput; |
private Boolean isEncryptedVolume; |
private String zoneCode; |
private String regionCode; |
private Boolean isReturnProtection; |
Examples
Request examples
ncloud vserver changeBlockStorageInstance --regionCode KR --blockStorageInstanceNo ***7746 --blockStorageSize 60
Response examples
<changeBlockStorageInstanceResponse>
<requestId>17b3bcf6-8e52-47e5-b822-1352ec765a97</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<blockStorageInstanceList>
<blockStorageInstance>
<blockStorageInstanceNo>***7746</blockStorageInstanceNo>
<serverInstanceNo>***4299</serverInstanceNo>
<blockStorageName>test-***</blockStorageName>
<blockStorageType>
<code>SVRBS</code>
<codeName>Server BS</codeName>
</blockStorageType>
<blockStorageSize>64424509440</blockStorageSize>
<deviceName>/dev/xvdb</deviceName>
<blockStorageProductCode>SPBSTBSTAD000006</blockStorageProductCode>
<blockStorageInstanceStatus>
<code>ATTAC</code>
<codeName>Block storage ATTACHED state</codeName>
</blockStorageInstanceStatus>
<blockStorageInstanceOperation>
<code>CHNG</code>
<codeName>Block Storage Resize OP</codeName>
</blockStorageInstanceOperation>
<blockStorageInstanceStatusName>changingSpec</blockStorageInstanceStatusName>
<createDate>2020-08-25T09:38:49+0900</createDate>
<blockStorageDescription></blockStorageDescription>
<blockStorageDiskType>
<code>NET</code>
<codeName>Network Storage</codeName>
</blockStorageDiskType>
<blockStorageDiskDetailType>
<code>SSD</code>
<codeName>SSD</codeName>
</blockStorageDiskDetailType>
<maxIopsThroughput>4000</maxIopsThroughput>
<isEncryptedVolume>false</isEncryptedVolume>
<zoneCode>KR-1</zoneCode>
<regionCode>KR</regionCode>
</blockStorageInstance>
</blockStorageInstanceList>
</changeBlockStorageInstanceResponse>
Was this article helpful?