Documentation Index

Fetch the complete documentation index at: https://api.ncloud-docs.com/llms.txt

Use this file to discover all available pages before exploring further.

getServerImageProductList

Prev Next

Overview

Get the list of server image products provided by NAVER Cloud Platform.

Request

Request parameters

Parameter name Required Type Restrictions Description
exclusionProductCode No String Min: 1, Max: 20 Enter the server image product code to exclude from the list.
Product code can be obtained through the getServerImageProductList action.
e.g., exclusionProductCode=SPSW0LINUX000032
productCode No String Min: 1, Max: 20 - Product code to query
Enter the server image product code to query, and 1 product is queried.
Product code can be obtained through the getServerImageProductList action.
e.g., productCode=SPSW0LINUX000032
platformTypeCodeList.N No List<String> Min: 1, Max: 5 - Platform classification code list
The values required for platform classification are delivered in a list format, and the following values can be entered.
Options: LNX32 (Linux 32Bit) | LNX64 (Linux 64Bit) | WND32 (Windows 32Bit) | WND64 (Windows 64Bit) | UBD64 (Ubuntu Desktop 64Bit) | UBS64 (Ubuntu Server 64Bit)
e.g., platformTypeCodeList.1=LNX64&platformTypeCodeList.2=WND64
blockStorageSize No Integer - Block storage size (GB)
You can filter server images by storage size.
Options: 50 | 100
e.g., blockStorageSize=50
regionNo No String - Region number
If you query by getting a Region number, filtering is only available with that Region.
You can obtain the Region number through the getRegionList action.
e.g., regionNo=10
infraResourceDetailTypeCode No String - Infrastructure resource detailed classification code
Get images of a specific type from the list. Currently only Bare Metal can be queried.
Options: default server image provided by NAVER Cloud Platform | BM (BareMetal)
Default: default server image provided by NAVER Cloud Platform
e.g., infraResourceDetailTypeCode=BM
responseFormatType No String - Response result's format type
Options: xml | json
Default: xml

Response

Response body

Examples

Request example

GET {SERVER_API_URL}/getServerImageProductList
?platformTypeCodeList.1=LNX64
&platformTypeCodeList.2=WND64

Response example

<getServerImageProductListResponse>
  <requestId>6ddf2bd8-1cf9-4dbf-a6d2-0bf7802d2829</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <productList>
    <product>
      <productCode>SPSW0LINUX000032</productCode>
      <productName>centos-6.3-32</productName>
      <productType>
        <code>LINUX</code>
        <codeName>Linux</codeName>
      </productType>
      <productDescription>CentOS 6.3(32bit)</productDescription>
      <infraResourceType>
        <code>SW</code>
        <codeName>Software</codeName>
      </infraResourceType>
      <cpuCount>0</cpuCount>
      <memorySize>0</memorySize>
      <baseBlockStorageSize>53687091200</baseBlockStorageSize>
      <platformType>
        <code>LNX32</code>
        <codeName>Linux 32 Bit</codeName>
      </platformType>
      <osInformation>CentOS 6.3 (32-bit)</osInformation>
      <dbKindCode></dbKindCode>
      <addBlockStorageSize>0</addBlockStorageSize>
    </product>
  </productList>
  <totalRows>1</totalRows>
</getServerImageProductListResponse>