getCloudRedisTargetSubnetList
- Print
- PDF
getCloudRedisTargetSubnetList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Get the list of subnets available to use in Cloud DB for Redis.
Request
The following describes the request format for the endpoint. The request format is as follows:
Method | URI |
---|---|
GET, POST | /getCloudRedisTargetSubnetList |
Request headers
For headers common to all Cloud DB for Redis APIs, see Cloud DB for Redis common headers.
Request parameter
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 Redis image product code
|
isPublic | Boolean | Optional | Filter by public subnet status
|
responseFormatType | String | Optional | Format of the response result
|
Request example
The following is a sample request.
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
The following 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 following is a sample response.
- 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>
Was this article helpful?