github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/vpc/remove_route_table_subnet_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 RemoveRouteTableSubnetRequest struct {
    12  
    13  	// REGION코드
    14  RegionCode *string `json:"regionCode,omitempty"`
    15  
    16  	// 라우트테이블번호
    17  RouteTableNo *string `json:"routeTableNo"`
    18  
    19  	// 서브넷번호리스트
    20  SubnetNoList []*string `json:"subnetNoList"`
    21  
    22  	// VPC번호
    23  VpcNo *string `json:"vpcNo"`
    24  }