RouteTableRule.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // Copyright 2018 JDCLOUD.COM
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. //
  15. // NOTE: This class is auto generated by the jdcloud code generator program.
  16. package models
  17. type RouteTableRule struct {
  18. /* 路由表规则ID (Optional) */
  19. RuleId string `json:"ruleId"`
  20. /* 规则匹配优先级,取值范围[1,255],默认为100。当路由规则子网掩码不同时,路由最长匹配优先;当路由规则子网掩码相同时, 按照优先级匹配转发, 优先级数字越小优先级越高,路由规则子网掩码相同、优先级相同、下一跳不同时,形成等价路由,不同下一跳负载均担。 (Optional) */
  21. Priority int `json:"priority"`
  22. /* 下一跳类型, 取值范围:local:本地, instance:云主机, internet:公网, vpc_peering:vpc对等连接, bgw:边界网关, natgw:NAT网关 (Optional) */
  23. NextHopType string `json:"nextHopType"`
  24. /* 下一跳id (Optional) */
  25. NextHopId string `json:"nextHopId"`
  26. /* 匹配地址前缀, internet类型路由跟其他类型的路由,addressPrefix不允许重复 (Optional) */
  27. AddressPrefix string `json:"addressPrefix"`
  28. /* 路由类型,propagated:传播、static:静态 (Optional) */
  29. RouteType string `json:"routeType"`
  30. /* 路由描述,允许输入UTF-8编码下的全部字符,不超过256字符。 (Optional) */
  31. Description string `json:"description"`
  32. }