getCloudMysqlTargetSubnetList

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
You can obtain regionCode through the getRegionList action
Default: selects the first region of the getRegionList query results
vpcNo Yes String - VPC number
vpcNo can be obtained via the getCloudMysqlTargetVpcList action
cloudMysqlImageProductCode Yes String - Cloud DB for MySQL image product code
cloudMysqlImageProductCode can be obtained via the productCode of the getCloudMysqlImageProductList action
isPublic No Boolean - Public subnet status
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 vmysql getCloudMysqlTargetSubnetList --regionCode KR --vpcNo **65 --cloudMysqlImageProductCode SW.VDBAS.DBAAS.LNX64.CNTOS.0708.MYSQL.8018.B050

Response examples

<getCloudMysqlTargetSubnetListResponse>
    <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>**65</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>**65</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>
</getCloudMysqlTargetSubnetListResponse>