getServerImageProductList
- Print
- PDF
getServerImageProductList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Overview
Views the list of server image products provided by NAVER Cloud Platform.
Request
Request parameter
Parameter name | Requirement status | Type | Restrictions | Description |
---|---|---|---|---|
regionCode | No | String | - Region code Able to determine the region where the server image product list is available. regionCode is obtained via getRegionList Default: the first region from the getRegionList search results is selected. | |
blockStorageSize | No | Integer | - Block storage size Filters server images with their block storage size Options: 50 | 100 GB | |
exclusionProductCode | No | String | - Product code to exclude exclusionProductCode is obtained via getServerImageProductList | |
productCode | No | String | - Product code to view productCode is obtained via getServerImageProductList | |
platformTypeCodeList.N | No | List<String> | - Platform type code list Able to filter the search with platform types. Options: LNX32 | LNX64 | WND32 | WND64 | UBD64 | UBS64 E.g., --platformTypeCodeList LNX32 LNX64 | |
infraResourceDetailTypeCode | No | String | - Infra resource detail type code Views specific type images. Currently only BareMetal is available. Options: BM (BareMetal) Default: types other than BM E.g., --infraResourceDetailTypeCode BM |
Response
Response data type
- ProductList type
ProductList extends CommonResponse |
---|
private Integer totalRows; |
private List |
Product |
---|
private String productCode; |
private String productName; |
private CommonCode productType; |
private String productDescription; |
private CommonCode infraResourceType; |
private CommonCode infraResourceDetailType; |
private Integer cpuCount; |
private Long memorySize; |
private Long baseBlockStorageSize; |
private CommonCode platformType; |
private String osInformation; |
private CommonCode diskType; |
private String dbKindCode; |
private Long addBlockStorageSize; |
private String generationCode; |
Examples
Request examples
ncloud vserver getServerImageProductList --regionCode KR --blockStorageSize 50 --exclusionProductCode SW.VSVR.DBMS.LNX64.CNTOS.0606.PSTGR.0904.B050 --productCode SW.VSVR.OS.LNX64.CNTOS.0703.B050 --platformTypeCodeList LNX64 WND64
Response examples
<getServerImageProductListResponse>
<requestId>c389ef63-aa90-4d3f-a875-f9166ae9c249</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<productList>
<product>
<productCode>SW.VSVR.OS.LNX64.CNTOS.0703.B050</productCode>
<productName>centos-7.3-64</productName>
<productType>
<code>LINUX</code>
<codeName>Linux</codeName>
</productType>
<productDescription>CentOS 7.3 (64-bit)</productDescription>
<infraResourceType>
<code>SW</code>
<codeName>Software</codeName>
</infraResourceType>
<cpuCount>0</cpuCount>
<memorySize>0</memorySize>
<baseBlockStorageSize>53687091200</baseBlockStorageSize>
<platformType>
<code>LNX64</code>
<codeName>Linux 64 Bit</codeName>
</platformType>
<osInformation>CentOS 7.3 (64-bit)</osInformation>
<dbKindCode></dbKindCode>
<addBlockStorageSize>0</addBlockStorageSize>
<generationCode></generationCode>
</product>
</productList>
</getServerImageProductListResponse>
Was this article helpful?