github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/vpc/route.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 Route struct {
    12  
    13  	// 목적지CIDR블록
    14  DestinationCidrBlock *string `json:"destinationCidrBlock,omitempty"`
    15  
    16  	// 목적지이름
    17  TargetName *string `json:"targetName,omitempty"`
    18  
    19  	// 라우트테이블번호
    20  RouteTableNo *string `json:"routeTableNo,omitempty"`
    21  
    22  	// 목적지유형
    23  TargetType *CommonCode `json:"targetType,omitempty"`
    24  
    25  	// 목적지번호
    26  TargetNo *string `json:"targetNo,omitempty"`
    27  
    28  	// Default여부
    29  IsDefault *bool `json:"isDefault,omitempty"`
    30  }