getCloudMongoDbTargetSubnetList

Prev Next

Available in VPC

Overview

Querying a list of available subnets

Requests

Request parameters

Parameter name Requirement status Type Restrictions Description
regionCode No String - Region code
regionCode can be obtained via the getRegionList action
Default: the first region of the getRegionList search results is selected
vpcNo Yes String - VPC number
vpcNo can be obtained via the getCloudMongoDbTargetVpcList action
cloudMongoDbImageProductCode Yes String - Cloud DB for MongoDB image product code
cloudMongoDbImageProductCode can be obtained via the productCode of the getCloudMongoDbImageProductList action
isPublic No Boolean - Query public/private status of subnet
output No String - Format type of the response result
Options : xml | json
Default : json

Responses

Response data type

  • TargetSubnetList type
TargetSubnetList extends CommonResponse
private Integer totalRows;
private List<TargetSubnet> targetSubnetList = new ArrayList<>();
TargetSubnet
private String subnetNo;
private String subnetName;
private String vpcNo;
private String vpcName;
private String zoneCode;
private String subnet;
private Boolean isPublic;
private Date createdDate;

Examples

Request examples

ncloud vmongodb getCloudMongoDbTargetSubnetList --regionCode KR --vpcNo 25**** --cloudMongoDbImageProductCode SW.VMGDB.LNX64.CNTOS.0708.MNGDB.402.CE.B050

Response examples

<getCloudMongoDbTargetSubnetListResponse>
    <requestId>415050c7-bda1-43b6-9af1-f5ade127ad82</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>2</totalRows>
    <targetSubnetList>
        <targetSubnet>
            <subnetNo>37****</subnetNo>
            <subnetName>test-****-private-kr1</subnetName>
            <vpcNo>25****</vpcNo>
            <vpcName>test-****</vpcName>
            <zoneCode>KR-1</zoneCode>
            <subnet>192.168.0.0/24</subnet>
            <isPublic>false</isPublic>>
            <createdDate>2022-03-24T18:00:00+0900</createdDate>
        </targetSubnet>
        <targetSubnet>
            <subnetNo>37****</subnetNo>
            <subnetName>test-****-public-kr1</subnetName>
            <vpcNo>25****</vpcNo>
            <vpcName>test-****</vpcName>
            <zoneCode>KR-1</zoneCode>
            <subnet>192.168.1.0/24</subnet>
            <isPublic>true</isPublic>>
            <createdDate>2022-03-24T18:00:00+0900</createdDate>
        </targetSubnet>
    </targetSubnetList>
</getCloudMongoDbTargetSubnetListResponse>