getServerProductList
- Print
- PDF
getServerProductList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Overview
Views a list of server specification products provided by NAVER Cloud Platform.
Requests
Request parameters
Parameter name | Requirement status | Type | Restrictions | Description |
---|---|---|---|---|
serverImageProductCode | Conditional | String | Min:1, Max:20 | - Server image product code View the list of server specification products that can be created from the server image products Either one of 2 parameters, serverImageProductCode or memberServerImageNo, is required The server image product code can be obtained through the getServerImageProductList action ex) serverImageProductCode=SPSW0LINUX000032 |
exclusionProductCode | No | String | Min:1, Max:20 | - Product code to be excluded Enter the server specification product code to be excluded from the list of server specification products that can be created from the server image products ex) serverImageProductCode=SPSW0LINUX000032&exclusionProductCode=SPSVRSSD00000016 With the result values above, you can view a list that excludes the products whose product code is "SPSVRSSD00000016" (vCPU 16 EA, Memory 32 GB, [SSD] Disk 50 GB) from server specifications that can be created in the server image products where the server image product code is "SPSW0LINUX000032" (CentOS 6.3 32bit) |
productCode | No | String | Min:1, Max:20 | - Product code to be viewed Enter a specific server specification product code from the list of server specification products that can be created in the server image products ex) serverImageProductCode=SPSW0LINUX000032&productCode=SPSVRSSD00000016 With the result values above, you can view a list of the products whose code is "SPSVRSSD00000016" (vCPU 16 EA, Memory 32 GB, [SSD] Disk 50 GB) among the server image products whose server image product code is "SPSW0LINUX000032" (CentOS 6.3 32bit) |
generationCode | No | String | Min:1, Max:20 | Enter the product generation code to be viewed on the list [either G1 or G2] |
regionNo | No | String | - Region number If you view by obtaining the Region number, filtering is only available with that Region The Region number can be obtained through the getRegionList action ex) regionNo=10 | |
zoneNo | No | String | - ZONE number Choose the zone where the product list is viewed It can be obtained through the getZoneList action - default: Select the first zone of the Region ex) zoneNo=1 | |
memberServerImageNo | Conditional | String | - Member server image number Creation specifications for EOL OS can be viewed Either one of 2 parameters, serverImageProductCode or memberServerImageNo, is required When entering both serverImageProductCode and memberServerImageNo, use memberServerImageNo to view it It can be obtained through the getMemberServerImageList action |
Responses
Response bodies
Examples
Request examples
GET {SERVER_API_URL}/getServerProductList
?serverImageProductCode=SPSW0LINUX000032
&productCode=SPSVRSSD00000016
Response examples
<getServerProductListResponse>
<requestId>9d249902-56f7-4773-b9fd-121445074612</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<productList>
<product>
<productCode>SPSVRSSD00000016</productCode>
<productName>vCPU 16EA, Memory 32GB, [SSD]Disk 50GB</productName>
<productType>
<code>STAND</code>
<codeName>Standard</codeName>
</productType>
<productDescription>vCPU 16EA, Memory 32GB, [SSD]Disk 50GB</productDescription>
<infraResourceType>
<code>SVR</code>
<codeName>Server</codeName>
</infraResourceType>
<cpuCount>16</cpuCount>
<memorySize>34359738368</memorySize>
<baseBlockStorageSize>53687091200</baseBlockStorageSize>
<osInformation></osInformation>
<diskType>
<code>NET</code>
<codeName>Network Storage</codeName>
</diskType>
<dbKindCode></dbKindCode>
<addBlockStorageSize>0</addBlockStorageSize>
</product>
</productList>
<totalRows>1</totalRows>
</getServerProductListResponse>
Was this article helpful?