Available in VPC
Get the Cloud DB for Cache image product code list.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET, POST | /getCloudRedisImageProductList |
Request headers
For information about the headers common to all Cloud DB for Cache APIs, see Cloud DB for Cache request headers.
Request parameters
The following describes the parameters.
Field | Type | Required | Description |
---|---|---|---|
regionCode |
String | Optional | Region code of the Cloud DB for Cache image product code list to query
|
productCode |
String | Optional | Filter by Cloud DB for Cache image product code.
|
exclusionProductCode |
String | Optional | Filter by excluding the Cloud DB for Cache image product code.
|
generationCode |
String | Optional | Filter by server generation code.
|
responseFormatType |
String | Optional | Format of the response result
|
Request example
The request example is as follows:
curl --location --request GET 'https://ncloud.apigw.ntruss.com/vredis/v2/getCloudRedisImageProductList
?regionCode=KR
&productCode=SW.VDBAS.VRDS.LNX64.CNTOS.0708.REDIS.7015.B050'
--header 'x-ncp-apigw-timestamp: {Timestamp}'
--header 'x-ncp-iam-access-key: {Access Key}'
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
Response
This section describes the response format.
Response body
See ProductList for the response body.
Response status codes
For response status codes common to NAVER Cloud Platform, see Ncloud API response status codes.
Response example
The response example is as follows:
-
If
responseFormatType=json
{ "getCloudRedisImageProductListResponse": { "totalRows": 1, "productList": [ { "productCode": "SW.VDBAS.VRDS.LNX64.CNTOS.0708.REDIS.7015.B050", "productName": "Redis(7.0.15)", "productType": { "code": "LINUX", "codeName": "Linux" }, "productDescription": "CentOS 7.8 with Redis 7.0.15", "infraResourceType": { "code": "SW", "codeName": "Software" }, "baseBlockStorageSize": 53687091200, "platformType": { "code": "LNX64", "codeName": "Linux 64 Bit" }, "osInformation": "CentOS 7.8 with Redis 7.0.15 (64-bit)", "generationCode": "G2" } ], "requestId": "85d5d076-****-****-****-109aff5e430e", "returnCode": "0", "returnMessage": "success" } }
-
If
responseFormatType=xml
(default)<?xml version="1.0" encoding="UTF-8"?> <getCloudRedisImageProductListResponse> <requestId>85d5d076-****-****-****-109aff5e430e</requestId> <returnCode>0</returnCode> <returnMessage>success</returnMessage> <totalRows>1</totalRows> <productList> <product> <productCode>SW.VDBAS.VRDS.LNX64.CNTOS.0708.REDIS.7015.B050</productCode> <productName>Redis(7.0.15)</productName> <productType> <code>LINUX</code> <codeName>Linux</codeName> </productType> <productDescription>CentOS 7.8 with Redis 7.0.15</productDescription> <infraResourceType> <code>SW</code> <codeName>Software</codeName> </infraResourceType> <baseBlockStorageSize>53687091200</baseBlockStorageSize> <platformType> <code>LNX64</code> <codeName>Linux 64 Bit</codeName> </platformType> <osInformation>CentOS 7.8 with Redis 7.0.15 (64-bit)</osInformation> <generationCode>G2</generationCode> </product> </productList> </getCloudRedisImageProductListResponse>