Documentation Index

Fetch the complete documentation index at: https://cli.ncloud-docs.com/llms.txt

Use this file to discover all available pages before exploring further.

getCloudPostgresqlTargetSubnetList

Prev Next

Available in VPC

Get the list of subnets available to use in Cloud DB for PostgreSQL.

Syntax

The getCloudPostgresqlTargetSubnetList syntax is as follows:

./ncloud vpostgresql getCloudPostgresqlTargetSubnetList \
    --vpcNo <vpc-no> \
    --cloudPostgresqlImageProductCode <image-product-code> \
    [--isPublic <true|false>] \
    [--regionCode <KR|SGN|JPN>] \
    [--output <json|xml>]

Options

This section describes the options available when running getCloudPostgresqlTargetSubnetList.

Required options

The following options are required for getCloudPostgresqlTargetSubnetList.

Options Type Required Description
--vpcNo String Required VPC number
--cloudPostgresqlImageProductCode String Required Cloud DB for PostgreSQL image product code

Optional options

These are the optional options for getCloudPostgresqlTargetSubnetList. Options that are not specified will use their default values.

Options Type Required Description
--isPublic Boolean Optional Whether it is a public subnet
  • true | false
    • true: Public subnet
    • false: Private subnet

Common options

For information about the options common to all vpostgresql subcommands, see Cloud DB for PostgreSQL (VPC) options.

Examples

If the request to retrieve the Cloud DB for PostgreSQL subnet list is successful, the number, name, and IP range for each subnet are returned.

Command

The command example is as follows:

./ncloud vpostgresql getCloudPostgresqlTargetSubnetList \
    --vpcNo 12345678 \
    --cloudPostgresqlImageProductCode SW.VPGSL.OS.LNX64.ROCKY.0810.PGSQL.B050 \
    --isPublic false \
    --regionCode KR \
    --output json

Output

The output example is as follows:

{
  "getCloudPostgresqlTargetSubnetListResponse": {
    "totalRows": 1,
    "targetSubnetList": [
      {
        "subnetNo": "23456789",
        "subnetName": "private-subnet",
        "vpcNo": "12345678",
        "vpcName": "vpc-01",
        "zoneCode": "KR-1",
        "subnet": "10.0.0.0/24",
        "isPublic": false,
        "createdDate": "2026-04-28T13:00:34+0900"
      }
    ],
    "requestId": "d4e5f6a7-b8c9-0123-defa-456789012345",
    "returnCode": "0",
    "returnMessage": "success"
  }
}