Available in VPC
Get the list of subnets available in Cloud DB for Cache.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET, POST | /getCloudRedisTargetSubnetList |
Request headers
For information about the headers common to all Cloud DB for Cache APIs, see Common Cloud DB for Cache headers.
Request parameters
The following describes the parameters.
Field | Type | Required | Description |
---|---|---|---|
regionCode |
String | Optional | Region code of the subnet to view
|
vpcNo |
String | Required | Filter by VPC number.
|
cloudRedisImageProductCode |
String | Required | Filter by Cloud DB for Cache image product code.
|
isPublic |
Boolean | Optional | Filter by public subnet status.
|
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/getCloudRedisTargetSubnetList
?regionCode=KR
?vpcNo=****83
?cloudRedisImageProductCode=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 TargetSubnetList 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
{ "getCloudRedisTargetSubnetListResponse": { "totalRows": 3, "targetSubnetList": [ { "subnetNo": "****91", "subnetName": "f**", "vpcNo": "****83", "vpcName": "te**", "zoneCode": "KR-1", "subnet": "192.168.1.0/28", "isPublic": false, "createdDate": "2024-05-28T09:44:21+0900" } ], "requestId": "7c37c61d-****-****-****-ae81a5bc3e9a", "returnCode": "0", "returnMessage": "success" } }
-
If
responseFormatType=xml
(default)<?xml version="1.0" encoding="UTF-8"?> <getCloudRedisTargetSubnetListResponse> <requestId>7c37c61d-****-****-****-ae81a5bc3e9a</requestId> <returnCode>0</returnCode> <returnMessage>success</returnMessage> <totalRows>1</totalRows> <targetSubnetList> <targetSubnet> <subnetNo>****91</subnetNo> <subnetName>f**</subnetName> <vpcNo>39**</vpcNo> <vpcName>te**</vpcName> <zoneCode>KR-1</zoneCode> <subnet>192.168.1.0/28</subnet> <isPublic>false</isPublic> <createdDate>2024-05-28T09:44:21+0900</createdDate> </targetSubnet> </targetSubnetList> </getCloudRedisTargetSubnetListResponse>