huaweicloudsdkelb 3.1.105__py2.py3-none-any.whl → 3.1.107__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. huaweicloudsdkelb/v3/__init__.py +29 -0
  2. huaweicloudsdkelb/v3/elb_async_client.py +171 -34
  3. huaweicloudsdkelb/v3/elb_client.py +171 -34
  4. huaweicloudsdkelb/v3/model/__init__.py +29 -0
  5. huaweicloudsdkelb/v3/model/availability_zone.py +3 -3
  6. huaweicloudsdkelb/v3/model/batch_add_available_zones_response.py +6 -6
  7. huaweicloudsdkelb/v3/model/batch_create_members_option.py +3 -3
  8. huaweicloudsdkelb/v3/model/batch_delete_ip_list_option.py +3 -3
  9. huaweicloudsdkelb/v3/model/batch_delete_ip_list_request.py +3 -3
  10. huaweicloudsdkelb/v3/model/batch_delete_ip_list_response.py +3 -3
  11. huaweicloudsdkelb/v3/model/batch_member.py +67 -9
  12. huaweicloudsdkelb/v3/model/batch_update_member.py +67 -9
  13. huaweicloudsdkelb/v3/model/batch_update_priority_request_body.py +3 -3
  14. huaweicloudsdkelb/v3/model/certificate_info.py +93 -6
  15. huaweicloudsdkelb/v3/model/change_loadbalancer_charge_mode_request_body.py +3 -3
  16. huaweicloudsdkelb/v3/model/connection_drain.py +3 -3
  17. huaweicloudsdkelb/v3/model/count_preoccupy_ip_num_request.py +6 -6
  18. huaweicloudsdkelb/v3/model/create_certificate_option.py +5 -4
  19. huaweicloudsdkelb/v3/model/create_certificate_private_key_echo_request.py +111 -0
  20. huaweicloudsdkelb/v3/model/create_certificate_private_key_echo_request_body.py +114 -0
  21. huaweicloudsdkelb/v3/model/create_certificate_private_key_echo_response.py +145 -0
  22. huaweicloudsdkelb/v3/model/create_fixted_response_config.py +78 -3
  23. huaweicloudsdkelb/v3/model/create_health_monitor_option.py +9 -9
  24. huaweicloudsdkelb/v3/model/create_insert_header_config.py +170 -0
  25. huaweicloudsdkelb/v3/model/create_insert_headers_config.py +114 -0
  26. huaweicloudsdkelb/v3/model/create_ip_group_ip_option.py +6 -6
  27. huaweicloudsdkelb/v3/model/create_ip_group_option.py +15 -15
  28. huaweicloudsdkelb/v3/model/create_ip_group_response.py +3 -3
  29. huaweicloudsdkelb/v3/model/create_l7_policy_option.py +61 -7
  30. huaweicloudsdkelb/v3/model/create_l7_policy_rule_option.py +6 -6
  31. huaweicloudsdkelb/v3/model/create_listener_ip_group_option.py +3 -3
  32. huaweicloudsdkelb/v3/model/create_listener_option.py +33 -33
  33. huaweicloudsdkelb/v3/model/create_load_balancer_bandwidth_option.py +18 -18
  34. huaweicloudsdkelb/v3/model/create_load_balancer_option.py +76 -105
  35. huaweicloudsdkelb/v3/model/create_load_balancer_public_ip_option.py +12 -12
  36. huaweicloudsdkelb/v3/model/create_load_balancer_response.py +6 -6
  37. huaweicloudsdkelb/v3/model/create_loadbalancer_autoscaling_option.py +6 -6
  38. huaweicloudsdkelb/v3/model/create_master_slave_health_monitor_option.py +6 -6
  39. huaweicloudsdkelb/v3/model/create_master_slave_member_option.py +3 -3
  40. huaweicloudsdkelb/v3/model/create_master_slave_pool_option.py +6 -6
  41. huaweicloudsdkelb/v3/model/create_member_option.py +6 -6
  42. huaweicloudsdkelb/v3/model/create_pool_option.py +84 -30
  43. huaweicloudsdkelb/v3/model/create_redirect_pools_config.py +143 -0
  44. huaweicloudsdkelb/v3/model/create_redirect_pools_extend_config.py +81 -6
  45. huaweicloudsdkelb/v3/model/create_redirect_pools_sticky_session_config.py +144 -0
  46. huaweicloudsdkelb/v3/model/create_redirect_url_config.py +53 -3
  47. huaweicloudsdkelb/v3/model/create_remove_header_config.py +114 -0
  48. huaweicloudsdkelb/v3/model/create_remove_headers_config.py +114 -0
  49. huaweicloudsdkelb/v3/model/create_rewrite_url_config.py +9 -9
  50. huaweicloudsdkelb/v3/model/create_rule_option.py +6 -6
  51. huaweicloudsdkelb/v3/model/create_traffic_limit_config.py +173 -0
  52. huaweicloudsdkelb/v3/model/delete_ip_group_request.py +3 -3
  53. huaweicloudsdkelb/v3/model/fixted_response_config.py +78 -3
  54. huaweicloudsdkelb/v3/model/flavor.py +79 -21
  55. huaweicloudsdkelb/v3/model/health_monitor.py +9 -9
  56. huaweicloudsdkelb/v3/model/insert_header_config.py +170 -0
  57. huaweicloudsdkelb/v3/model/insert_headers_config.py +114 -0
  58. huaweicloudsdkelb/v3/model/ip_group.py +119 -90
  59. huaweicloudsdkelb/v3/model/ip_group_ip.py +3 -3
  60. huaweicloudsdkelb/v3/model/ip_info.py +6 -6
  61. huaweicloudsdkelb/v3/model/l7_policy.py +67 -13
  62. huaweicloudsdkelb/v3/model/l7_rule.py +15 -15
  63. huaweicloudsdkelb/v3/model/list_all_members_request.py +3 -3
  64. huaweicloudsdkelb/v3/model/list_all_members_response.py +4 -4
  65. huaweicloudsdkelb/v3/model/list_certificates_request.py +64 -6
  66. huaweicloudsdkelb/v3/model/list_flavors_request.py +21 -21
  67. huaweicloudsdkelb/v3/model/list_flavors_response.py +6 -6
  68. huaweicloudsdkelb/v3/model/list_health_monitors_request.py +12 -12
  69. huaweicloudsdkelb/v3/model/list_ip_groups_request.py +53 -24
  70. huaweicloudsdkelb/v3/model/list_ip_groups_response.py +6 -6
  71. huaweicloudsdkelb/v3/model/list_l7_policies_request.py +3 -3
  72. huaweicloudsdkelb/v3/model/list_l7_rules_request.py +3 -3
  73. huaweicloudsdkelb/v3/model/list_listeners_request.py +24 -24
  74. huaweicloudsdkelb/v3/model/list_load_balancers_request.py +30 -30
  75. huaweicloudsdkelb/v3/model/list_logtanks_request.py +3 -3
  76. huaweicloudsdkelb/v3/model/list_master_slave_pools_request.py +6 -6
  77. huaweicloudsdkelb/v3/model/list_members_request.py +3 -3
  78. huaweicloudsdkelb/v3/model/list_pools_request.py +105 -18
  79. huaweicloudsdkelb/v3/model/list_security_policies_request.py +3 -3
  80. huaweicloudsdkelb/v3/model/listener.py +27 -27
  81. huaweicloudsdkelb/v3/model/listener_ref.py +3 -3
  82. huaweicloudsdkelb/v3/model/load_balancer.py +27 -27
  83. huaweicloudsdkelb/v3/model/load_balancer_status_policy.py +3 -3
  84. huaweicloudsdkelb/v3/model/master_slave_health_monitor.py +6 -6
  85. huaweicloudsdkelb/v3/model/master_slave_member.py +3 -3
  86. huaweicloudsdkelb/v3/model/master_slave_pool.py +15 -15
  87. huaweicloudsdkelb/v3/model/member.py +13 -158
  88. huaweicloudsdkelb/v3/model/member_info.py +656 -0
  89. huaweicloudsdkelb/v3/model/page_info.py +9 -9
  90. huaweicloudsdkelb/v3/model/pool.py +110 -27
  91. huaweicloudsdkelb/v3/model/pool_health.py +115 -0
  92. huaweicloudsdkelb/v3/model/prepaid_create_option.py +12 -12
  93. huaweicloudsdkelb/v3/model/quota.py +12 -12
  94. huaweicloudsdkelb/v3/model/quota_info.py +3 -3
  95. huaweicloudsdkelb/v3/model/redirect_pools_config.py +144 -0
  96. huaweicloudsdkelb/v3/model/redirect_pools_extend_config.py +81 -6
  97. huaweicloudsdkelb/v3/model/redirect_pools_sticky_session_config.py +144 -0
  98. huaweicloudsdkelb/v3/model/redirect_url_config.py +65 -9
  99. huaweicloudsdkelb/v3/model/remove_header_config.py +114 -0
  100. huaweicloudsdkelb/v3/model/remove_headers_config.py +114 -0
  101. huaweicloudsdkelb/v3/model/rewrite_url_config.py +9 -9
  102. huaweicloudsdkelb/v3/model/session_persistence.py +6 -6
  103. huaweicloudsdkelb/v3/model/show_certificate_private_key_echo_request.py +84 -0
  104. huaweicloudsdkelb/v3/model/show_certificate_private_key_echo_response.py +145 -0
  105. huaweicloudsdkelb/v3/model/show_flavor_request.py +3 -3
  106. huaweicloudsdkelb/v3/model/show_flavor_response.py +3 -3
  107. huaweicloudsdkelb/v3/model/show_ip_group_request.py +3 -3
  108. huaweicloudsdkelb/v3/model/show_ip_group_response.py +3 -3
  109. huaweicloudsdkelb/v3/model/traffic_limit_config.py +173 -0
  110. huaweicloudsdkelb/v3/model/upadate_ip_group_ip_option.py +6 -6
  111. huaweicloudsdkelb/v3/model/update_certificate_option.py +3 -3
  112. huaweicloudsdkelb/v3/model/update_fixted_response_config.py +78 -3
  113. huaweicloudsdkelb/v3/model/update_health_monitor_option.py +9 -9
  114. huaweicloudsdkelb/v3/model/update_insert_header_config.py +170 -0
  115. huaweicloudsdkelb/v3/model/update_insert_headers_config.py +114 -0
  116. huaweicloudsdkelb/v3/model/update_ip_group_option.py +9 -9
  117. huaweicloudsdkelb/v3/model/update_ip_group_request.py +3 -3
  118. huaweicloudsdkelb/v3/model/update_ip_group_response.py +3 -3
  119. huaweicloudsdkelb/v3/model/update_ip_list_option.py +9 -9
  120. huaweicloudsdkelb/v3/model/update_ip_list_request.py +3 -3
  121. huaweicloudsdkelb/v3/model/update_ip_list_response.py +3 -3
  122. huaweicloudsdkelb/v3/model/update_l7_policy_option.py +58 -4
  123. huaweicloudsdkelb/v3/model/update_l7_rule_option.py +3 -3
  124. huaweicloudsdkelb/v3/model/update_listener_ip_group_option.py +6 -6
  125. huaweicloudsdkelb/v3/model/update_listener_option.py +24 -24
  126. huaweicloudsdkelb/v3/model/update_load_balancer_option.py +24 -24
  127. huaweicloudsdkelb/v3/model/update_load_balancer_response.py +6 -6
  128. huaweicloudsdkelb/v3/model/update_pool_option.py +37 -12
  129. huaweicloudsdkelb/v3/model/update_pool_session_persistence_option.py +6 -6
  130. huaweicloudsdkelb/v3/model/update_redirect_pools_config.py +143 -0
  131. huaweicloudsdkelb/v3/model/update_redirect_pools_extend_config.py +81 -6
  132. huaweicloudsdkelb/v3/model/update_redirect_pools_sticky_session_config.py +144 -0
  133. huaweicloudsdkelb/v3/model/update_redirect_url_config.py +53 -3
  134. huaweicloudsdkelb/v3/model/update_remove_header_config.py +114 -0
  135. huaweicloudsdkelb/v3/model/update_remove_headers_config.py +114 -0
  136. huaweicloudsdkelb/v3/model/update_rewrite_url_config.py +173 -0
  137. huaweicloudsdkelb/v3/model/update_traffic_limit_config.py +173 -0
  138. {huaweicloudsdkelb-3.1.105.dist-info → huaweicloudsdkelb-3.1.107.dist-info}/METADATA +2 -2
  139. {huaweicloudsdkelb-3.1.105.dist-info → huaweicloudsdkelb-3.1.107.dist-info}/RECORD +142 -113
  140. {huaweicloudsdkelb-3.1.105.dist-info → huaweicloudsdkelb-3.1.107.dist-info}/LICENSE +0 -0
  141. {huaweicloudsdkelb-3.1.105.dist-info → huaweicloudsdkelb-3.1.107.dist-info}/WHEEL +0 -0
  142. {huaweicloudsdkelb-3.1.105.dist-info → huaweicloudsdkelb-3.1.107.dist-info}/top_level.txt +0 -0
@@ -41,19 +41,19 @@ class ListFlavorsRequest:
41
41
 
42
42
  The model defined in huaweicloud sdk
43
43
 
44
- :param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
44
+ :param marker: 参数解释:上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
45
45
  :type marker: str
46
- :param limit: 每页返回的个数。
46
+ :param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
47
47
  :type limit: int
48
- :param page_reverse: 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
48
+ :param page_reverse: 参数解释:是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
49
49
  :type page_reverse: bool
50
- :param id: 规格ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
50
+ :param id: 参数解释:规格ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
51
51
  :type id: list[str]
52
- :param name: 规格名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
52
+ :param name: 参数解释:规格名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
53
53
  :type name: list[str]
54
- :param type: 规格类别。 取值: - L4和L7 表示四层网络型和七层应用型flavor。 - L4_elastic和L7_elastic 表示弹性扩缩容实例的下限规格。 - L4_elastic_max和L7_elastic_max 表示弹性扩缩容实例的上限规格。 支持多值查询,查询条件格式:*type=xxx&type=xxx*。
54
+ :param type: 参数解释:规格类别。 取值: - L4和L7 表示四层网络型和七层应用型flavor。 [- gateway 表示网关型LB的flavor,目前只支持弹性计费类型。当前仅支持欧洲局点。](tag:hws_eu) - L4_elastic和L7_elastic 表示弹性扩缩容实例的下限规格。 - L4_elastic_max、L7_elastic_max[gateway_elastic_max](tag:hws_eu) 表示弹性扩缩容实例的上限规格。 支持多值查询,查询条件格式:*type=xxx&type=xxx*。
55
55
  :type type: list[str]
56
- :param shared: 是否查询公共规格。true表示公共规格,所有租户可见。false表示私有规格,为当前租户所有。
56
+ :param shared: 参数解释:是否查询公共规格。 取值范围:true表示公共规格,所有租户可见。false表示私有规格,为当前租户所有。
57
57
  :type shared: bool
58
58
  """
59
59
 
@@ -87,7 +87,7 @@ class ListFlavorsRequest:
87
87
  def marker(self):
88
88
  """Gets the marker of this ListFlavorsRequest.
89
89
 
90
- 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
90
+ 参数解释:上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
91
91
 
92
92
  :return: The marker of this ListFlavorsRequest.
93
93
  :rtype: str
@@ -98,7 +98,7 @@ class ListFlavorsRequest:
98
98
  def marker(self, marker):
99
99
  """Sets the marker of this ListFlavorsRequest.
100
100
 
101
- 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
101
+ 参数解释:上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
102
102
 
103
103
  :param marker: The marker of this ListFlavorsRequest.
104
104
  :type marker: str
@@ -109,7 +109,7 @@ class ListFlavorsRequest:
109
109
  def limit(self):
110
110
  """Gets the limit of this ListFlavorsRequest.
111
111
 
112
- 每页返回的个数。
112
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
113
113
 
114
114
  :return: The limit of this ListFlavorsRequest.
115
115
  :rtype: int
@@ -120,7 +120,7 @@ class ListFlavorsRequest:
120
120
  def limit(self, limit):
121
121
  """Sets the limit of this ListFlavorsRequest.
122
122
 
123
- 每页返回的个数。
123
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
124
124
 
125
125
  :param limit: The limit of this ListFlavorsRequest.
126
126
  :type limit: int
@@ -131,7 +131,7 @@ class ListFlavorsRequest:
131
131
  def page_reverse(self):
132
132
  """Gets the page_reverse of this ListFlavorsRequest.
133
133
 
134
- 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
134
+ 参数解释:是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
135
135
 
136
136
  :return: The page_reverse of this ListFlavorsRequest.
137
137
  :rtype: bool
@@ -142,7 +142,7 @@ class ListFlavorsRequest:
142
142
  def page_reverse(self, page_reverse):
143
143
  """Sets the page_reverse of this ListFlavorsRequest.
144
144
 
145
- 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
145
+ 参数解释:是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
146
146
 
147
147
  :param page_reverse: The page_reverse of this ListFlavorsRequest.
148
148
  :type page_reverse: bool
@@ -153,7 +153,7 @@ class ListFlavorsRequest:
153
153
  def id(self):
154
154
  """Gets the id of this ListFlavorsRequest.
155
155
 
156
- 规格ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
156
+ 参数解释:规格ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
157
157
 
158
158
  :return: The id of this ListFlavorsRequest.
159
159
  :rtype: list[str]
@@ -164,7 +164,7 @@ class ListFlavorsRequest:
164
164
  def id(self, id):
165
165
  """Sets the id of this ListFlavorsRequest.
166
166
 
167
- 规格ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
167
+ 参数解释:规格ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
168
168
 
169
169
  :param id: The id of this ListFlavorsRequest.
170
170
  :type id: list[str]
@@ -175,7 +175,7 @@ class ListFlavorsRequest:
175
175
  def name(self):
176
176
  """Gets the name of this ListFlavorsRequest.
177
177
 
178
- 规格名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
178
+ 参数解释:规格名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
179
179
 
180
180
  :return: The name of this ListFlavorsRequest.
181
181
  :rtype: list[str]
@@ -186,7 +186,7 @@ class ListFlavorsRequest:
186
186
  def name(self, name):
187
187
  """Sets the name of this ListFlavorsRequest.
188
188
 
189
- 规格名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
189
+ 参数解释:规格名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
190
190
 
191
191
  :param name: The name of this ListFlavorsRequest.
192
192
  :type name: list[str]
@@ -197,7 +197,7 @@ class ListFlavorsRequest:
197
197
  def type(self):
198
198
  """Gets the type of this ListFlavorsRequest.
199
199
 
200
- 规格类别。 取值: - L4和L7 表示四层网络型和七层应用型flavor。 - L4_elastic和L7_elastic 表示弹性扩缩容实例的下限规格。 - L4_elastic_max和L7_elastic_max 表示弹性扩缩容实例的上限规格。 支持多值查询,查询条件格式:*type=xxx&type=xxx*。
200
+ 参数解释:规格类别。 取值: - L4和L7 表示四层网络型和七层应用型flavor。 [- gateway 表示网关型LB的flavor,目前只支持弹性计费类型。当前仅支持欧洲局点。](tag:hws_eu) - L4_elastic和L7_elastic 表示弹性扩缩容实例的下限规格。 - L4_elastic_max、L7_elastic_max[gateway_elastic_max](tag:hws_eu) 表示弹性扩缩容实例的上限规格。 支持多值查询,查询条件格式:*type=xxx&type=xxx*。
201
201
 
202
202
  :return: The type of this ListFlavorsRequest.
203
203
  :rtype: list[str]
@@ -208,7 +208,7 @@ class ListFlavorsRequest:
208
208
  def type(self, type):
209
209
  """Sets the type of this ListFlavorsRequest.
210
210
 
211
- 规格类别。 取值: - L4和L7 表示四层网络型和七层应用型flavor。 - L4_elastic和L7_elastic 表示弹性扩缩容实例的下限规格。 - L4_elastic_max和L7_elastic_max 表示弹性扩缩容实例的上限规格。 支持多值查询,查询条件格式:*type=xxx&type=xxx*。
211
+ 参数解释:规格类别。 取值: - L4和L7 表示四层网络型和七层应用型flavor。 [- gateway 表示网关型LB的flavor,目前只支持弹性计费类型。当前仅支持欧洲局点。](tag:hws_eu) - L4_elastic和L7_elastic 表示弹性扩缩容实例的下限规格。 - L4_elastic_max、L7_elastic_max[gateway_elastic_max](tag:hws_eu) 表示弹性扩缩容实例的上限规格。 支持多值查询,查询条件格式:*type=xxx&type=xxx*。
212
212
 
213
213
  :param type: The type of this ListFlavorsRequest.
214
214
  :type type: list[str]
@@ -219,7 +219,7 @@ class ListFlavorsRequest:
219
219
  def shared(self):
220
220
  """Gets the shared of this ListFlavorsRequest.
221
221
 
222
- 是否查询公共规格。true表示公共规格,所有租户可见。false表示私有规格,为当前租户所有。
222
+ 参数解释:是否查询公共规格。 取值范围:true表示公共规格,所有租户可见。false表示私有规格,为当前租户所有。
223
223
 
224
224
  :return: The shared of this ListFlavorsRequest.
225
225
  :rtype: bool
@@ -230,7 +230,7 @@ class ListFlavorsRequest:
230
230
  def shared(self, shared):
231
231
  """Sets the shared of this ListFlavorsRequest.
232
232
 
233
- 是否查询公共规格。true表示公共规格,所有租户可见。false表示私有规格,为当前租户所有。
233
+ 参数解释:是否查询公共规格。 取值范围:true表示公共规格,所有租户可见。false表示私有规格,为当前租户所有。
234
234
 
235
235
  :param shared: The shared of this ListFlavorsRequest.
236
236
  :type shared: bool
@@ -34,11 +34,11 @@ class ListFlavorsResponse(SdkResponse):
34
34
 
35
35
  The model defined in huaweicloud sdk
36
36
 
37
- :param flavors: 规格列表。
37
+ :param flavors: 参数解释:规格列表。
38
38
  :type flavors: list[:class:`huaweicloudsdkelb.v3.Flavor`]
39
39
  :param page_info:
40
40
  :type page_info: :class:`huaweicloudsdkelb.v3.PageInfo`
41
- :param request_id: 请求ID。 注:自动生成 。
41
+ :param request_id: 参数解释:请求ID。 注:自动生成 。
42
42
  :type request_id: str
43
43
  """
44
44
 
@@ -60,7 +60,7 @@ class ListFlavorsResponse(SdkResponse):
60
60
  def flavors(self):
61
61
  """Gets the flavors of this ListFlavorsResponse.
62
62
 
63
- 规格列表。
63
+ 参数解释:规格列表。
64
64
 
65
65
  :return: The flavors of this ListFlavorsResponse.
66
66
  :rtype: list[:class:`huaweicloudsdkelb.v3.Flavor`]
@@ -71,7 +71,7 @@ class ListFlavorsResponse(SdkResponse):
71
71
  def flavors(self, flavors):
72
72
  """Sets the flavors of this ListFlavorsResponse.
73
73
 
74
- 规格列表。
74
+ 参数解释:规格列表。
75
75
 
76
76
  :param flavors: The flavors of this ListFlavorsResponse.
77
77
  :type flavors: list[:class:`huaweicloudsdkelb.v3.Flavor`]
@@ -100,7 +100,7 @@ class ListFlavorsResponse(SdkResponse):
100
100
  def request_id(self):
101
101
  """Gets the request_id of this ListFlavorsResponse.
102
102
 
103
- 请求ID。 注:自动生成 。
103
+ 参数解释:请求ID。 注:自动生成 。
104
104
 
105
105
  :return: The request_id of this ListFlavorsResponse.
106
106
  :rtype: str
@@ -111,7 +111,7 @@ class ListFlavorsResponse(SdkResponse):
111
111
  def request_id(self, request_id):
112
112
  """Sets the request_id of this ListFlavorsResponse.
113
113
 
114
- 请求ID。 注:自动生成 。
114
+ 参数解释:请求ID。 注:自动生成 。
115
115
 
116
116
  :param request_id: The request_id of this ListFlavorsResponse.
117
117
  :type request_id: str
@@ -63,7 +63,7 @@ class ListHealthMonitorsRequest:
63
63
 
64
64
  :param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
65
65
  :type marker: str
66
- :param limit: 每页返回的个数。
66
+ :param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
67
67
  :type limit: int
68
68
  :param page_reverse: 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
69
69
  :type page_reverse: bool
@@ -85,13 +85,13 @@ class ListHealthMonitorsRequest:
85
85
  :type max_retries_down: list[int]
86
86
  :param timeout: 一次健康检查请求的超时时间。
87
87
  :type timeout: int
88
- :param type: 健康检查请求协议。 取值:TCP、UDP_CONNECT、HTTP、HTTPS。 支持多值查询,查询条件格式:*****type=xxx&type=xxx*****。
88
+ :param type: 健康检查请求协议。 取值:TCP、UDP_CONNECT、HTTP、HTTPS、TLS和GRPC。 支持多值查询,查询条件格式:*****type=xxx&type=xxx*****。
89
89
  :type type: list[str]
90
- :param expected_codes: 期望响应状态码。 取值: - 单值:单个返回码,例如200。 - 列表:多个特定返回码,例如200,202。 - 区间:一个返回码区间,例如200-204。 默认值:200。 仅支持HTTP/HTTPS设置该字段,其他协议设置不会生效。 支持多值查询,查询条件格式:****expected_codes=xxx&expected_codes=xxx****。
90
+ :param expected_codes: 期望响应状态码。 取值: - 单值:单个返回码,例如200。 - 列表:多个特定返回码,例如200,202。 - 区间:一个返回码区间,例如200-204。 默认值:200。 仅支持HTTP/HTTPS/GRPC设置该字段,其他协议设置不会生效。 支持多值查询,查询条件格式:****expected_codes=xxx&expected_codes=xxx****。
91
91
  :type expected_codes: list[str]
92
92
  :param url_path: 健康检查测试member健康时发送的http请求路径。默认为“/”。 使用说明:以“/”开头。当type为HTTP/HTTPS时生效。 支持多值查询,查询条件格式:***url_path=xxx&url_path=xxx***。
93
93
  :type url_path: list[str]
94
- :param http_method: HTTP请求方法。 取值:GET、HEAD、POST、PUT、DELETE、TRACE、OPTIONS、CONNECT、PATCH。 支持多值查询,查询条件格式:**http_method=xxx&http_method=xxx**。 不支持该字段,请勿使用。
94
+ :param http_method: HTTP请求方法。 取值:GET、HEAD、POST。 支持多值查询,查询条件格式:**http_method=xxx&http_method=xxx**。
95
95
  :type http_method: list[str]
96
96
  :param enterprise_project_id: 企业项目ID。不传时查询default企业项目\"0\"下的资源,鉴权按照default企业项目鉴权; 如果传值,则传已存在的企业项目ID或all_granted_eps(表示查询所有企业项目)进行查询。 支持多值查询,查询条件格式: *enterprise_project_id=xxx&enterprise_project_id=xxx*。 [不支持该字段,请勿使用。](tag:dt,dt_test,hcso_dt)
97
97
  :type enterprise_project_id: list[str]
@@ -179,7 +179,7 @@ class ListHealthMonitorsRequest:
179
179
  def limit(self):
180
180
  """Gets the limit of this ListHealthMonitorsRequest.
181
181
 
182
- 每页返回的个数。
182
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
183
183
 
184
184
  :return: The limit of this ListHealthMonitorsRequest.
185
185
  :rtype: int
@@ -190,7 +190,7 @@ class ListHealthMonitorsRequest:
190
190
  def limit(self, limit):
191
191
  """Sets the limit of this ListHealthMonitorsRequest.
192
192
 
193
- 每页返回的个数。
193
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
194
194
 
195
195
  :param limit: The limit of this ListHealthMonitorsRequest.
196
196
  :type limit: int
@@ -421,7 +421,7 @@ class ListHealthMonitorsRequest:
421
421
  def type(self):
422
422
  """Gets the type of this ListHealthMonitorsRequest.
423
423
 
424
- 健康检查请求协议。 取值:TCP、UDP_CONNECT、HTTP、HTTPS。 支持多值查询,查询条件格式:*****type=xxx&type=xxx*****。
424
+ 健康检查请求协议。 取值:TCP、UDP_CONNECT、HTTP、HTTPS、TLS和GRPC。 支持多值查询,查询条件格式:*****type=xxx&type=xxx*****。
425
425
 
426
426
  :return: The type of this ListHealthMonitorsRequest.
427
427
  :rtype: list[str]
@@ -432,7 +432,7 @@ class ListHealthMonitorsRequest:
432
432
  def type(self, type):
433
433
  """Sets the type of this ListHealthMonitorsRequest.
434
434
 
435
- 健康检查请求协议。 取值:TCP、UDP_CONNECT、HTTP、HTTPS。 支持多值查询,查询条件格式:*****type=xxx&type=xxx*****。
435
+ 健康检查请求协议。 取值:TCP、UDP_CONNECT、HTTP、HTTPS、TLS和GRPC。 支持多值查询,查询条件格式:*****type=xxx&type=xxx*****。
436
436
 
437
437
  :param type: The type of this ListHealthMonitorsRequest.
438
438
  :type type: list[str]
@@ -443,7 +443,7 @@ class ListHealthMonitorsRequest:
443
443
  def expected_codes(self):
444
444
  """Gets the expected_codes of this ListHealthMonitorsRequest.
445
445
 
446
- 期望响应状态码。 取值: - 单值:单个返回码,例如200。 - 列表:多个特定返回码,例如200,202。 - 区间:一个返回码区间,例如200-204。 默认值:200。 仅支持HTTP/HTTPS设置该字段,其他协议设置不会生效。 支持多值查询,查询条件格式:****expected_codes=xxx&expected_codes=xxx****。
446
+ 期望响应状态码。 取值: - 单值:单个返回码,例如200。 - 列表:多个特定返回码,例如200,202。 - 区间:一个返回码区间,例如200-204。 默认值:200。 仅支持HTTP/HTTPS/GRPC设置该字段,其他协议设置不会生效。 支持多值查询,查询条件格式:****expected_codes=xxx&expected_codes=xxx****。
447
447
 
448
448
  :return: The expected_codes of this ListHealthMonitorsRequest.
449
449
  :rtype: list[str]
@@ -454,7 +454,7 @@ class ListHealthMonitorsRequest:
454
454
  def expected_codes(self, expected_codes):
455
455
  """Sets the expected_codes of this ListHealthMonitorsRequest.
456
456
 
457
- 期望响应状态码。 取值: - 单值:单个返回码,例如200。 - 列表:多个特定返回码,例如200,202。 - 区间:一个返回码区间,例如200-204。 默认值:200。 仅支持HTTP/HTTPS设置该字段,其他协议设置不会生效。 支持多值查询,查询条件格式:****expected_codes=xxx&expected_codes=xxx****。
457
+ 期望响应状态码。 取值: - 单值:单个返回码,例如200。 - 列表:多个特定返回码,例如200,202。 - 区间:一个返回码区间,例如200-204。 默认值:200。 仅支持HTTP/HTTPS/GRPC设置该字段,其他协议设置不会生效。 支持多值查询,查询条件格式:****expected_codes=xxx&expected_codes=xxx****。
458
458
 
459
459
  :param expected_codes: The expected_codes of this ListHealthMonitorsRequest.
460
460
  :type expected_codes: list[str]
@@ -487,7 +487,7 @@ class ListHealthMonitorsRequest:
487
487
  def http_method(self):
488
488
  """Gets the http_method of this ListHealthMonitorsRequest.
489
489
 
490
- HTTP请求方法。 取值:GET、HEAD、POST、PUT、DELETE、TRACE、OPTIONS、CONNECT、PATCH。 支持多值查询,查询条件格式:**http_method=xxx&http_method=xxx**。 不支持该字段,请勿使用。
490
+ HTTP请求方法。 取值:GET、HEAD、POST。 支持多值查询,查询条件格式:**http_method=xxx&http_method=xxx**。
491
491
 
492
492
  :return: The http_method of this ListHealthMonitorsRequest.
493
493
  :rtype: list[str]
@@ -498,7 +498,7 @@ class ListHealthMonitorsRequest:
498
498
  def http_method(self, http_method):
499
499
  """Sets the http_method of this ListHealthMonitorsRequest.
500
500
 
501
- HTTP请求方法。 取值:GET、HEAD、POST、PUT、DELETE、TRACE、OPTIONS、CONNECT、PATCH。 支持多值查询,查询条件格式:**http_method=xxx&http_method=xxx**。 不支持该字段,请勿使用。
501
+ HTTP请求方法。 取值:GET、HEAD、POST。 支持多值查询,查询条件格式:**http_method=xxx&http_method=xxx**。
502
502
 
503
503
  :param http_method: The http_method of this ListHealthMonitorsRequest.
504
504
  :type http_method: list[str]
@@ -23,7 +23,8 @@ class ListIpGroupsRequest:
23
23
  'id': 'list[str]',
24
24
  'name': 'list[str]',
25
25
  'description': 'list[str]',
26
- 'ip_list': 'list[str]'
26
+ 'ip_list': 'list[str]',
27
+ 'enterprise_project_id': 'list[str]'
27
28
  }
28
29
 
29
30
  attribute_map = {
@@ -33,28 +34,31 @@ class ListIpGroupsRequest:
33
34
  'id': 'id',
34
35
  'name': 'name',
35
36
  'description': 'description',
36
- 'ip_list': 'ip_list'
37
+ 'ip_list': 'ip_list',
38
+ 'enterprise_project_id': 'enterprise_project_id'
37
39
  }
38
40
 
39
- def __init__(self, marker=None, limit=None, page_reverse=None, id=None, name=None, description=None, ip_list=None):
41
+ def __init__(self, marker=None, limit=None, page_reverse=None, id=None, name=None, description=None, ip_list=None, enterprise_project_id=None):
40
42
  """ListIpGroupsRequest
41
43
 
42
44
  The model defined in huaweicloud sdk
43
45
 
44
- :param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
46
+ :param marker: 参数解释:上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
45
47
  :type marker: str
46
- :param limit: 每页返回的个数。
48
+ :param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
47
49
  :type limit: int
48
- :param page_reverse: 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
50
+ :param page_reverse: 参数解释:是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
49
51
  :type page_reverse: bool
50
- :param id: IP地址组的ID。
52
+ :param id: 参数解释:IP地址组的ID。
51
53
  :type id: list[str]
52
- :param name: IP地址组的名称。
54
+ :param name: 参数解释:IP地址组的名称。
53
55
  :type name: list[str]
54
- :param description: IP地址组的描述信息。
56
+ :param description: 参数解释:IP地址组的描述信息。
55
57
  :type description: list[str]
56
- :param ip_list: IP地址,多个用逗号分隔。
58
+ :param ip_list: 参数解释:IP地址,多个用逗号分隔。
57
59
  :type ip_list: list[str]
60
+ :param enterprise_project_id: 参数解释:企业项目ID。
61
+ :type enterprise_project_id: list[str]
58
62
  """
59
63
 
60
64
 
@@ -66,6 +70,7 @@ class ListIpGroupsRequest:
66
70
  self._name = None
67
71
  self._description = None
68
72
  self._ip_list = None
73
+ self._enterprise_project_id = None
69
74
  self.discriminator = None
70
75
 
71
76
  if marker is not None:
@@ -82,12 +87,14 @@ class ListIpGroupsRequest:
82
87
  self.description = description
83
88
  if ip_list is not None:
84
89
  self.ip_list = ip_list
90
+ if enterprise_project_id is not None:
91
+ self.enterprise_project_id = enterprise_project_id
85
92
 
86
93
  @property
87
94
  def marker(self):
88
95
  """Gets the marker of this ListIpGroupsRequest.
89
96
 
90
- 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
97
+ 参数解释:上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
91
98
 
92
99
  :return: The marker of this ListIpGroupsRequest.
93
100
  :rtype: str
@@ -98,7 +105,7 @@ class ListIpGroupsRequest:
98
105
  def marker(self, marker):
99
106
  """Sets the marker of this ListIpGroupsRequest.
100
107
 
101
- 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
108
+ 参数解释:上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
102
109
 
103
110
  :param marker: The marker of this ListIpGroupsRequest.
104
111
  :type marker: str
@@ -109,7 +116,7 @@ class ListIpGroupsRequest:
109
116
  def limit(self):
110
117
  """Gets the limit of this ListIpGroupsRequest.
111
118
 
112
- 每页返回的个数。
119
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
113
120
 
114
121
  :return: The limit of this ListIpGroupsRequest.
115
122
  :rtype: int
@@ -120,7 +127,7 @@ class ListIpGroupsRequest:
120
127
  def limit(self, limit):
121
128
  """Sets the limit of this ListIpGroupsRequest.
122
129
 
123
- 每页返回的个数。
130
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
124
131
 
125
132
  :param limit: The limit of this ListIpGroupsRequest.
126
133
  :type limit: int
@@ -131,7 +138,7 @@ class ListIpGroupsRequest:
131
138
  def page_reverse(self):
132
139
  """Gets the page_reverse of this ListIpGroupsRequest.
133
140
 
134
- 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
141
+ 参数解释:是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
135
142
 
136
143
  :return: The page_reverse of this ListIpGroupsRequest.
137
144
  :rtype: bool
@@ -142,7 +149,7 @@ class ListIpGroupsRequest:
142
149
  def page_reverse(self, page_reverse):
143
150
  """Sets the page_reverse of this ListIpGroupsRequest.
144
151
 
145
- 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
152
+ 参数解释:是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
146
153
 
147
154
  :param page_reverse: The page_reverse of this ListIpGroupsRequest.
148
155
  :type page_reverse: bool
@@ -153,7 +160,7 @@ class ListIpGroupsRequest:
153
160
  def id(self):
154
161
  """Gets the id of this ListIpGroupsRequest.
155
162
 
156
- IP地址组的ID。
163
+ 参数解释:IP地址组的ID。
157
164
 
158
165
  :return: The id of this ListIpGroupsRequest.
159
166
  :rtype: list[str]
@@ -164,7 +171,7 @@ class ListIpGroupsRequest:
164
171
  def id(self, id):
165
172
  """Sets the id of this ListIpGroupsRequest.
166
173
 
167
- IP地址组的ID。
174
+ 参数解释:IP地址组的ID。
168
175
 
169
176
  :param id: The id of this ListIpGroupsRequest.
170
177
  :type id: list[str]
@@ -175,7 +182,7 @@ class ListIpGroupsRequest:
175
182
  def name(self):
176
183
  """Gets the name of this ListIpGroupsRequest.
177
184
 
178
- IP地址组的名称。
185
+ 参数解释:IP地址组的名称。
179
186
 
180
187
  :return: The name of this ListIpGroupsRequest.
181
188
  :rtype: list[str]
@@ -186,7 +193,7 @@ class ListIpGroupsRequest:
186
193
  def name(self, name):
187
194
  """Sets the name of this ListIpGroupsRequest.
188
195
 
189
- IP地址组的名称。
196
+ 参数解释:IP地址组的名称。
190
197
 
191
198
  :param name: The name of this ListIpGroupsRequest.
192
199
  :type name: list[str]
@@ -197,7 +204,7 @@ class ListIpGroupsRequest:
197
204
  def description(self):
198
205
  """Gets the description of this ListIpGroupsRequest.
199
206
 
200
- IP地址组的描述信息。
207
+ 参数解释:IP地址组的描述信息。
201
208
 
202
209
  :return: The description of this ListIpGroupsRequest.
203
210
  :rtype: list[str]
@@ -208,7 +215,7 @@ class ListIpGroupsRequest:
208
215
  def description(self, description):
209
216
  """Sets the description of this ListIpGroupsRequest.
210
217
 
211
- IP地址组的描述信息。
218
+ 参数解释:IP地址组的描述信息。
212
219
 
213
220
  :param description: The description of this ListIpGroupsRequest.
214
221
  :type description: list[str]
@@ -219,7 +226,7 @@ class ListIpGroupsRequest:
219
226
  def ip_list(self):
220
227
  """Gets the ip_list of this ListIpGroupsRequest.
221
228
 
222
- IP地址,多个用逗号分隔。
229
+ 参数解释:IP地址,多个用逗号分隔。
223
230
 
224
231
  :return: The ip_list of this ListIpGroupsRequest.
225
232
  :rtype: list[str]
@@ -230,13 +237,35 @@ class ListIpGroupsRequest:
230
237
  def ip_list(self, ip_list):
231
238
  """Sets the ip_list of this ListIpGroupsRequest.
232
239
 
233
- IP地址,多个用逗号分隔。
240
+ 参数解释:IP地址,多个用逗号分隔。
234
241
 
235
242
  :param ip_list: The ip_list of this ListIpGroupsRequest.
236
243
  :type ip_list: list[str]
237
244
  """
238
245
  self._ip_list = ip_list
239
246
 
247
+ @property
248
+ def enterprise_project_id(self):
249
+ """Gets the enterprise_project_id of this ListIpGroupsRequest.
250
+
251
+ 参数解释:企业项目ID。
252
+
253
+ :return: The enterprise_project_id of this ListIpGroupsRequest.
254
+ :rtype: list[str]
255
+ """
256
+ return self._enterprise_project_id
257
+
258
+ @enterprise_project_id.setter
259
+ def enterprise_project_id(self, enterprise_project_id):
260
+ """Sets the enterprise_project_id of this ListIpGroupsRequest.
261
+
262
+ 参数解释:企业项目ID。
263
+
264
+ :param enterprise_project_id: The enterprise_project_id of this ListIpGroupsRequest.
265
+ :type enterprise_project_id: list[str]
266
+ """
267
+ self._enterprise_project_id = enterprise_project_id
268
+
240
269
  def to_dict(self):
241
270
  """Returns the model properties as a dict"""
242
271
  result = {}
@@ -34,9 +34,9 @@ class ListIpGroupsResponse(SdkResponse):
34
34
 
35
35
  The model defined in huaweicloud sdk
36
36
 
37
- :param ipgroups: IP地址组列表返回对象。
37
+ :param ipgroups: 参数解释:IP地址组列表返回对象。
38
38
  :type ipgroups: list[:class:`huaweicloudsdkelb.v3.IpGroup`]
39
- :param request_id: 请求ID。 注:自动生成 。
39
+ :param request_id: 参数解释:请求ID。 注:自动生成 。
40
40
  :type request_id: str
41
41
  :param page_info:
42
42
  :type page_info: :class:`huaweicloudsdkelb.v3.PageInfo`
@@ -60,7 +60,7 @@ class ListIpGroupsResponse(SdkResponse):
60
60
  def ipgroups(self):
61
61
  """Gets the ipgroups of this ListIpGroupsResponse.
62
62
 
63
- IP地址组列表返回对象。
63
+ 参数解释:IP地址组列表返回对象。
64
64
 
65
65
  :return: The ipgroups of this ListIpGroupsResponse.
66
66
  :rtype: list[:class:`huaweicloudsdkelb.v3.IpGroup`]
@@ -71,7 +71,7 @@ class ListIpGroupsResponse(SdkResponse):
71
71
  def ipgroups(self, ipgroups):
72
72
  """Sets the ipgroups of this ListIpGroupsResponse.
73
73
 
74
- IP地址组列表返回对象。
74
+ 参数解释:IP地址组列表返回对象。
75
75
 
76
76
  :param ipgroups: The ipgroups of this ListIpGroupsResponse.
77
77
  :type ipgroups: list[:class:`huaweicloudsdkelb.v3.IpGroup`]
@@ -82,7 +82,7 @@ class ListIpGroupsResponse(SdkResponse):
82
82
  def request_id(self):
83
83
  """Gets the request_id of this ListIpGroupsResponse.
84
84
 
85
- 请求ID。 注:自动生成 。
85
+ 参数解释:请求ID。 注:自动生成 。
86
86
 
87
87
  :return: The request_id of this ListIpGroupsResponse.
88
88
  :rtype: str
@@ -93,7 +93,7 @@ class ListIpGroupsResponse(SdkResponse):
93
93
  def request_id(self, request_id):
94
94
  """Sets the request_id of this ListIpGroupsResponse.
95
95
 
96
- 请求ID。 注:自动生成 。
96
+ 参数解释:请求ID。 注:自动生成 。
97
97
 
98
98
  :param request_id: The request_id of this ListIpGroupsResponse.
99
99
  :type request_id: str
@@ -63,7 +63,7 @@ class ListL7PoliciesRequest:
63
63
 
64
64
  :param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
65
65
  :type marker: str
66
- :param limit: 每页返回的个数。
66
+ :param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
67
67
  :type limit: int
68
68
  :param page_reverse: 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
69
69
  :type page_reverse: bool
@@ -179,7 +179,7 @@ class ListL7PoliciesRequest:
179
179
  def limit(self):
180
180
  """Gets the limit of this ListL7PoliciesRequest.
181
181
 
182
- 每页返回的个数。
182
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
183
183
 
184
184
  :return: The limit of this ListL7PoliciesRequest.
185
185
  :rtype: int
@@ -190,7 +190,7 @@ class ListL7PoliciesRequest:
190
190
  def limit(self, limit):
191
191
  """Sets the limit of this ListL7PoliciesRequest.
192
192
 
193
- 每页返回的个数。
193
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
194
194
 
195
195
  :param limit: The limit of this ListL7PoliciesRequest.
196
196
  :type limit: int
@@ -55,7 +55,7 @@ class ListL7RulesRequest:
55
55
 
56
56
  :param l7policy_id: 策略ID。
57
57
  :type l7policy_id: str
58
- :param limit: 每页返回的个数。
58
+ :param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
59
59
  :type limit: int
60
60
  :param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
61
61
  :type marker: str
@@ -150,7 +150,7 @@ class ListL7RulesRequest:
150
150
  def limit(self):
151
151
  """Gets the limit of this ListL7RulesRequest.
152
152
 
153
- 每页返回的个数。
153
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
154
154
 
155
155
  :return: The limit of this ListL7RulesRequest.
156
156
  :rtype: int
@@ -161,7 +161,7 @@ class ListL7RulesRequest:
161
161
  def limit(self, limit):
162
162
  """Sets the limit of this ListL7RulesRequest.
163
163
 
164
- 每页返回的个数。
164
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
165
165
 
166
166
  :param limit: The limit of this ListL7RulesRequest.
167
167
  :type limit: int