github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/vpc/get_route_table_list_request.go (about)

     1  /*
     2   * vpc
     3   *
     4   * VPC Network 관련 API<br/>https://ncloud.apigw.ntruss.com/vpc/v2
     5   *
     6   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     7   */
     8  
     9  package vpc
    10  
    11  type GetRouteTableListRequest struct {
    12  
    13  	// REGION코드
    14  RegionCode *string `json:"regionCode,omitempty"`
    15  
    16  	// 라우트테이블번호리스트
    17  RouteTableNoList []*string `json:"routeTableNoList,omitempty"`
    18  
    19  	// 라우트테이블이름
    20  RouteTableName *string `json:"routeTableName,omitempty"`
    21  
    22  	// 지원하는서브넷유형코드
    23  SupportedSubnetTypeCode *string `json:"supportedSubnetTypeCode,omitempty"`
    24  
    25  	// 페이지번호
    26  PageNo *int32 `json:"pageNo,omitempty"`
    27  
    28  	// 페이지사이즈
    29  PageSize *int32 `json:"pageSize,omitempty"`
    30  
    31  	// 정렬대상
    32  SortedBy *string `json:"sortedBy,omitempty"`
    33  
    34  	// 정렬순서
    35  SortingOrder *string `json:"sortingOrder,omitempty"`
    36  
    37  	// VPC번호
    38  VpcNo *string `json:"vpcNo,omitempty"`
    39  }