SubnetSpec.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 SubnetSpec struct {
  18. /* 子网所属vpc的Id */
  19. VpcId string `json:"vpcId"`
  20. /* 子网名称,只允许输入中文、数字、大小写字母、英文下划线“_”及中划线“-”,不允许为空且不超过32字符。 */
  21. SubnetName string `json:"subnetName"`
  22. /* 子网网段,vpc内子网网段不能重叠,cidr的取值范围:10.0.0.0/8、172.16.0.0/12和192.168.0.0/16及它们包含的子网,且子网掩码长度为16-28之间,如果vpc含有cidr,则必须为vpc所在cidr的子网 */
  23. AddressPrefix string `json:"addressPrefix"`
  24. /* 子网关联的路由表Id, 默认为vpc的默认路由表,子网关联路由表需检查路由表中已绑定的子网与本子网类型是否一致(一致标准为:或者都为标准子网,或者都为相同边缘可用区的边缘子网) (Optional) */
  25. RouteTableId string `json:"routeTableId"`
  26. /* 子网描述信息,允许输入UTF-8编码下的全部字符,不超过256字符。 (Optional) */
  27. Description string `json:"description"`
  28. /* 子网类型,取值:standard(标准子网),edge(边缘子网) (Optional) */
  29. SubnetType string `json:"subnetType"`
  30. /* 子网可用区,边缘子网必须指定可用区 (Optional) */
  31. Az string `json:"az"`
  32. }