getRaidList
- Print
- PDF
getRaidList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Overview
Views the list of available RAIDs.
Request
Request parameter
Parameter name | Requirement status | Type | Restrictions | Description |
---|---|---|---|---|
productTypeCode | Yes | String | - Product type code Views the list of available RAIDs for individual products. productTypeCode is obtained via getServerImageProductList Options : LINUX | WINNT |
Response
Response data type
- RaidList type
RaidList extends CommonResponse |
---|
private Integer totalRows; |
private List<Raid> raidList = new ArrayList<>(); |
Raid |
---|
private String raidTypeName; |
private String raidName; |
private CommonCode productType; |
Examples
Request examples
ncloud vserver getRaidList --productTypeCode LINUX
Response examples
<getRaidListResponse>
<requestId>9b0ed68f-b044-4fd8-b138-22397fba64df</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>2</totalRows>
<raidList>
<raid>
<raidTypeName>5</raidTypeName>
<raidName>RAID 5</raidName>
<productType>
<code>LINUX</code>
<codeName>Linux</codeName>
</productType>
</raid>
<raid>
<raidTypeName>1</raidTypeName>
<raidName>RAID 1+0</raidName>
<productType>
<code>LINUX</code>
<codeName>Linux</codeName>
</productType>
</raid>
</raidList>
</getRaidListResponse>
Was this article helpful?