Available in VPC
Get the list of subnets available to use in Cloud DB for MongoDB.
Syntax
The getCloudMongoDbTargetSubnetList syntax is as follows:
./ncloud vmongodb getCloudMongoDbTargetSubnetList \
--vpcNo <vpc-no> \
--cloudMongoDbImageProductCode <image-product-code> \
[--isPublic <true|false>] \
[--regionCode <KR|SGN|JPN>] \
[--output <json|xml>]
Options
This section describes the options available when running getCloudMongoDbTargetSubnetList.
Required options
The following options are required for getCloudMongoDbTargetSubnetList.
| Options | Type | Required | Description |
|---|---|---|---|
--vpcNo |
String | Required | VPC number |
--cloudMongoDbImageProductCode |
String | Required | Cloud DB for MongoDB image product code |
Optional options
These are the optional options for getCloudMongoDbTargetSubnetList. Options that are not specified will use their default values.
| Options | Type | Required | Description |
|---|---|---|---|
--isPublic |
Boolean | Optional | Whether it is a public subnet
|
Common options
For information about the options common to all vmongodb subcommands, see Cloud DB for MongoDB (VPC) options.
Examples
If the request to retrieve the Cloud DB for MongoDB subnet list is successful, the number, name, and IP range for each subnet are returned.
Command
The command example is as follows:
./ncloud vmongodb getCloudMongoDbTargetSubnetList \
--vpcNo 12345678 \
--cloudMongoDbImageProductCode SW.VMGDB.OS.LNX64.ROCKY.0810.MNGDB.CE.B050 \
--isPublic false \
--regionCode KR \
--output json
Output
The output example is as follows:
{
"getCloudMongoDbTargetSubnetListResponse": {
"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"
}
}