getRouteList

Prev Next

Can be used in a VPC environment.

Overview

Query the routing list set in the routing table.

Request

Request parameter

Parameter Name Required Status Type Restrictions Description
regionCode No String Region Code
You can decide the region of the routing table where the routing list will be queried.
The regionCode can be obtained through the getRegionList action.
Default: Select the first region of the getRegionList query results.
routeTableNo Yes String Routing table number
This determines the routing table number of the routing list to be queried.
The routeTableNo can be obtained through the getRouteTableList action.
vpcNo Yes String VPC number
This determines the VPC number of the routing table to be queried.
vpcNo can be obtained through the getVpcList action.
responseFormatType No String Format type for the response result
Options : xml | json
Default : xml

Response

Response data type

  • routeList type
RouteList extends CommonResponse
private Integer totalRows;
private List routeList = new ArrayList<>();
Route
private String routeTableNo;
private String destinationCidrBlock;
private String targetName;
private CommonCode targetType;
private String targetNo;
private Boolean isDefault;

Example

Request example

ncloud vpc getRouteList --regionCode KR --routeTableNo ***38 --vpcNo ***04

Response example

<getRouteListResponse>
  <requestId>97b1034c-e030-40b8-bc22-58da1c3e5b0b</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>2</totalRows>
  <routeList>
    <route>
      <destinationCidrBlock>***.***.0.0/16</destinationCidrBlock>
      <targetName>LOCAL</targetName>
      <routeTableNo>***38</routeTableNo>
      <targetType>
        <code>LOCAL</code>
        <codeName>Local</codeName>
      </targetType>
      <targetNo></targetNo>
      <isDefault>true</isDefault>
    </route>
    <route>
      <destinationCidrBlock>***.***.0.0/0</destinationCidrBlock>
      <targetName>INTERNET GATEWAY</targetName>
      <routeTableNo>***38</routeTableNo>
      <targetType>
        <code>IGW</code>
        <codeName>Internet Gateway</codeName>
      </targetType>
      <targetNo></targetNo>
      <isDefault>true</isDefault>
    </route>
  </routeList>
</getRouteListResponse>