Available in VPC
Get the list of available Cloud DB for Cache server spec codes.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET, POST | /getCloudRedisProductList |
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 instance to query
|
zoneCode |
String | Optional | Filter by zone code.
|
cloudRedisImageProductCode |
String | Required | Filter by Cloud DB for Cache image product code.
|
productCode |
String | Optional | Filter by Cloud DB for Cache product code.
|
exclusionProductCode |
String | Optional | Filter by excluding the Cloud DB for Cache product 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/getCloudRedisProductList
?regionCode=KR
&cloudRedisImageProductCode=SW.VDBAS.VRDS.LNX64.CNTOS.0708.REDIS.7015.B050
&productCode=SVR.VRDS.STAND.C004.M001.NET.SSD.B050.G002
&exclusionProductCode=SVR.VRDS.STAND.C004.M003.NET.SSD.B050.G002'
--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
{ "getCloudRedisProductListResponse": { "totalRows": 1, "productList": [ { "productCode": "SVR.VRDS.STAND.C004.M001.NET.SSD.B050.G002", "productName": "Memory 1.5GB", "productType": { "code": "STAND", "codeName": "Standard" }, "productDescription": "1.5 GB memory", "infraResourceType": { "code": "VRDS", "codeName": "Cloud DB for Cache (VPC)" }, "cpuCount": 4, "memorySize": 1610612736, "osMemorySize": 2147483648, "diskType": { "code": "NET", "codeName": "Network Storage" } } ], "requestId": "cc5baf55-****-****-****-97e0cd863759", "returnCode": "0", "returnMessage": "success" } }
-
If
responseFormatType=xml
(default)<?xml version="1.0" encoding="UTF-8"?> <getCloudRedisProductListResponse> <requestId>cc5baf55-****-****-****-97e0cd863759</requestId> <returnCode>0</returnCode> <returnMessage>success</returnMessage> <totalRows>1</totalRows> <productList> <product> <productCode>SVR.VRDS.STAND.C004.M001.NET.SSD.B050.G002</productCode> <productName>Memory 1.5GB</productName> <productType> <code>STAND</code> <codeName>Standard</codeName> </productType> <productDescription>1.5 GB memory</productDescription> <infraResourceType> <code>VRDS</code> <codeName>Cloud DB for Cache (VPC)</codeName> </infraResourceType> <cpuCount>4</cpuCount> <memorySize>1610612736</memorySize> <osMemorySize>2147483648</osMemorySize> <diskType> <code>NET</code> <codeName>Network Storage</codeName> </diskType> </product> </productList> </getCloudRedisProductListResponse>