AddRouteTableRules.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  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 AddRouteTableRules struct {
  18. /* 下一跳类型, 取值范围:instance:云主机, internet:公网, vpc_peering:vpc对等连接, bgw:边界网关, natgw:NAT网关 */
  19. NextHopType string `json:"nextHopType"`
  20. /* 下一跳id */
  21. NextHopId string `json:"nextHopId"`
  22. /* 匹配地址前缀, internet类型路由跟其他类型的路由,addressPrefix不允许重复 */
  23. AddressPrefix string `json:"addressPrefix"`
  24. /* 规则匹配优先级,取值范围[1,255],默认为100。当路由规则子网掩码不同时,路由最长匹配优先;当路由规则子网掩码相同时, 按照优先级匹配转发, 优先级数字越小优先级越高,路由规则子网掩码相同、优先级相同、下一跳不同时,形成等价路由,不同下一跳负载均担。 (Optional) */
  25. Priority *int `json:"priority"`
  26. /* 描述,允许输入UTF-8编码下的全部字符,不超过256字符 (Optional) */
  27. Description *string `json:"description"`
  28. }