huaweicloudsdkelb 3.1.104__py2.py3-none-any.whl → 3.1.106__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.104.dist-info → huaweicloudsdkelb-3.1.106.dist-info}/METADATA +2 -2
  139. {huaweicloudsdkelb-3.1.104.dist-info → huaweicloudsdkelb-3.1.106.dist-info}/RECORD +142 -113
  140. {huaweicloudsdkelb-3.1.104.dist-info → huaweicloudsdkelb-3.1.106.dist-info}/LICENSE +0 -0
  141. {huaweicloudsdkelb-3.1.104.dist-info → huaweicloudsdkelb-3.1.106.dist-info}/WHEEL +0 -0
  142. {huaweicloudsdkelb-3.1.104.dist-info → huaweicloudsdkelb-3.1.106.dist-info}/top_level.txt +0 -0
@@ -83,15 +83,15 @@ class ListListenersRequest:
83
83
 
84
84
  The model defined in huaweicloud sdk
85
85
 
86
- :param limit: 每页返回的个数。
86
+ :param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
87
87
  :type limit: int
88
88
  :param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
89
89
  :type marker: str
90
90
  :param page_reverse: 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
91
91
  :type page_reverse: bool
92
- :param protocol_port: 监听器的前端监听端口。 支持多值查询,查询条件格式:*protocol_port=xxx&protocol_port=xxx*。
92
+ :param protocol_port: 监听器的前端监听端口。 [当监听器的protocol为IP时,前端端口固定为0。](tag:hws_eu) 支持多值查询,查询条件格式:*protocol_port=xxx&protocol_port=xxx*。
93
93
  :type protocol_port: list[str]
94
- :param protocol: 监听器的监听协议。 [取值:TCP、UDP、HTTP、HTTPS、TERMINATED_HTTPS、QUIC。 说明:TERMINATED_HTTPS为共享型LB上的监听器独有的协议。 ](tag:hws,hws_hk,ocb,ctc,hcs,g42,tm,cmcc,hk_g42,hws_ocb,fcs,dt) [取值:TCP、UDP、HTTP、HTTPS。](tag:hws_eu,hcso_dt) 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt,dt,dt_test)
94
+ :param protocol: 监听器的监听协议。 [取值:TCP、UDP、HTTP、HTTPS、TERMINATED_HTTPS、QUIC、TLS 说明:TERMINATED_HTTPS为共享型LB上的监听器独有的协议。](tag:hws,hws_hk,ocb,ctc,hcs,g42,tm,cmcc,hk_g42,hws_ocb,fcs,dt) [取值:TCP、UDP、IP、HTTP、HTTPS。IP为网关型LB上的监听器独有的协议。](tag:hws_eu,hcso_dt) 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt,dt,dt_test)
95
95
  :type protocol: list[str]
96
96
  :param description: 监听器的描述信息。 支持多值查询,查询条件格式:*description=xxx&description=xxx*。
97
97
  :type description: list[str]
@@ -99,7 +99,7 @@ class ListListenersRequest:
99
99
  :type default_tls_container_ref: list[str]
100
100
  :param client_ca_tls_container_ref: 监听器的CA证书ID。 支持多值查询,查询条件格式: *client_ca_tls_container_ref=xxx&client_ca_tls_container_ref=xxx*。
101
101
  :type client_ca_tls_container_ref: list[str]
102
- :param admin_state_up: 监听器的管理状态,只能设置为true。 不支持该字段,请勿使用。
102
+ :param admin_state_up: 监听器的管理状态。 [不支持该字段,请勿使用。](tag:dt,dt_test,hcso_dt)
103
103
  :type admin_state_up: bool
104
104
  :param connection_limit: ​监听器的最大连接数。 取值:-1表示不限制连接数。 支持多值查询,查询条件格式:*connection_limit=xxx&connection_limit=xxx*。 不支持该字段,请勿使用。
105
105
  :type connection_limit: list[int]
@@ -127,13 +127,13 @@ class ListListenersRequest:
127
127
  :type member_timeout: list[int]
128
128
  :param client_timeout: 等待客户端请求超时时间,包括两种情况: - 读取整个客户端请求头的超时时长:如果客户端未在超时时长内发送完整个请求头,则请求将被中断 - 两个连续body体的数据包到达LB的时间间隔,超出client_timeout将会断开连接。 取值:1-300s。 支持多值查询,查询条件格式:*client_timeout=xxx&client_timeout=xxx*。
129
129
  :type client_timeout: list[int]
130
- :param keepalive_timeout: 客户端连接空闲超时时间。在超过keepalive_timeout时长一直没有请求, 负载均衡会暂时中断当前连接,直到下一次请求时重新建立新的连接。 取值: - TCP监听器:10-4000s。 - HTTP/HTTPS/TERMINATED_HTTPS监听器:0-4000s。 - 共享型实例的UDP监听器不支持此字段。 支持多值查询,查询条件格式:*keepalive_timeout=xxx&keepalive_timeout=xxx*。
130
+ :param keepalive_timeout: 客户端连接空闲超时时间。在超过keepalive_timeout时长一直没有请求, 负载均衡会暂时中断当前连接,直到下一次请求时重新建立新的连接。 取值: - TCP监听器[和IP监听器](tag:hws_eu):10-4000s。 - HTTP/HTTPS/TERMINATED_HTTPS监听器:0-4000s。 [- 共享型实例的UDP监听器不支持此字段。](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,fcs,dt,dt_test,hk_tm) 支持多值查询,查询条件格式:*keepalive_timeout=xxx&keepalive_timeout=xxx*。
131
131
  :type keepalive_timeout: list[int]
132
- :param transparent_client_ip_enable: 是否透传客户端IP地址。开启后客户端IP地址将透传到后端服务器。 [仅作用于共享型LB的TCP/UDP监听器。取值:true开启,false不开启。 ](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,fcs,dt,hk_tm)
132
+ :param transparent_client_ip_enable: 是否透传客户端IP地址。开启后客户端IP地址将透传到后端服务器。 [仅作用于共享型LB的TCP/UDP监听器。取值:true开启,false不开启。 ](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,hk_vdf,fcs,dt,hk_tm)
133
133
  :type transparent_client_ip_enable: bool
134
- :param proxy_protocol_enable: 是否开启proxy_protocol。仅tcpssl监听器可指定,其他协议的监听器该字段不生效,proxy_protocol不开启。
134
+ :param proxy_protocol_enable: 是否开启proxy_protocol。仅TLS监听器可指定,其他协议的监听器该字段不生效,proxy_protocol不开启。
135
135
  :type proxy_protocol_enable: bool
136
- :param enhance_l7policy_enable: 是否开启高级转发策略功能。开启高级转发策略后,支持更灵活的转发策略和转发规则设置。 取值:true开启,false不开启。 [荷兰region不支持该字段,请勿使用。](tag:dt)
136
+ :param enhance_l7policy_enable: 是否开启高级转发策略功能。开启高级转发策略后,支持更灵活的转发策略和转发规则设置。 取值:true开启,false不开启。 [荷兰region不支持该字段,请勿使用。](tag:dt,dt_test)
137
137
  :type enhance_l7policy_enable: bool
138
138
  :param member_instance_id: 后端云服务器ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_instance_id=xxx&member_instance_id=xxx*。
139
139
  :type member_instance_id: list[str]
@@ -234,7 +234,7 @@ class ListListenersRequest:
234
234
  def limit(self):
235
235
  """Gets the limit of this ListListenersRequest.
236
236
 
237
- 每页返回的个数。
237
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
238
238
 
239
239
  :return: The limit of this ListListenersRequest.
240
240
  :rtype: int
@@ -245,7 +245,7 @@ class ListListenersRequest:
245
245
  def limit(self, limit):
246
246
  """Sets the limit of this ListListenersRequest.
247
247
 
248
- 每页返回的个数。
248
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
249
249
 
250
250
  :param limit: The limit of this ListListenersRequest.
251
251
  :type limit: int
@@ -300,7 +300,7 @@ class ListListenersRequest:
300
300
  def protocol_port(self):
301
301
  """Gets the protocol_port of this ListListenersRequest.
302
302
 
303
- 监听器的前端监听端口。 支持多值查询,查询条件格式:*protocol_port=xxx&protocol_port=xxx*。
303
+ 监听器的前端监听端口。 [当监听器的protocol为IP时,前端端口固定为0。](tag:hws_eu) 支持多值查询,查询条件格式:*protocol_port=xxx&protocol_port=xxx*。
304
304
 
305
305
  :return: The protocol_port of this ListListenersRequest.
306
306
  :rtype: list[str]
@@ -311,7 +311,7 @@ class ListListenersRequest:
311
311
  def protocol_port(self, protocol_port):
312
312
  """Sets the protocol_port of this ListListenersRequest.
313
313
 
314
- 监听器的前端监听端口。 支持多值查询,查询条件格式:*protocol_port=xxx&protocol_port=xxx*。
314
+ 监听器的前端监听端口。 [当监听器的protocol为IP时,前端端口固定为0。](tag:hws_eu) 支持多值查询,查询条件格式:*protocol_port=xxx&protocol_port=xxx*。
315
315
 
316
316
  :param protocol_port: The protocol_port of this ListListenersRequest.
317
317
  :type protocol_port: list[str]
@@ -322,7 +322,7 @@ class ListListenersRequest:
322
322
  def protocol(self):
323
323
  """Gets the protocol of this ListListenersRequest.
324
324
 
325
- 监听器的监听协议。 [取值:TCP、UDP、HTTP、HTTPS、TERMINATED_HTTPS、QUIC。 说明:TERMINATED_HTTPS为共享型LB上的监听器独有的协议。 ](tag:hws,hws_hk,ocb,ctc,hcs,g42,tm,cmcc,hk_g42,hws_ocb,fcs,dt) [取值:TCP、UDP、HTTP、HTTPS。](tag:hws_eu,hcso_dt) 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt,dt,dt_test)
325
+ 监听器的监听协议。 [取值:TCP、UDP、HTTP、HTTPS、TERMINATED_HTTPS、QUIC、TLS 说明:TERMINATED_HTTPS为共享型LB上的监听器独有的协议。](tag:hws,hws_hk,ocb,ctc,hcs,g42,tm,cmcc,hk_g42,hws_ocb,fcs,dt) [取值:TCP、UDP、IP、HTTP、HTTPS。IP为网关型LB上的监听器独有的协议。](tag:hws_eu,hcso_dt) 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt,dt,dt_test)
326
326
 
327
327
  :return: The protocol of this ListListenersRequest.
328
328
  :rtype: list[str]
@@ -333,7 +333,7 @@ class ListListenersRequest:
333
333
  def protocol(self, protocol):
334
334
  """Sets the protocol of this ListListenersRequest.
335
335
 
336
- 监听器的监听协议。 [取值:TCP、UDP、HTTP、HTTPS、TERMINATED_HTTPS、QUIC。 说明:TERMINATED_HTTPS为共享型LB上的监听器独有的协议。 ](tag:hws,hws_hk,ocb,ctc,hcs,g42,tm,cmcc,hk_g42,hws_ocb,fcs,dt) [取值:TCP、UDP、HTTP、HTTPS。](tag:hws_eu,hcso_dt) 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt,dt,dt_test)
336
+ 监听器的监听协议。 [取值:TCP、UDP、HTTP、HTTPS、TERMINATED_HTTPS、QUIC、TLS 说明:TERMINATED_HTTPS为共享型LB上的监听器独有的协议。](tag:hws,hws_hk,ocb,ctc,hcs,g42,tm,cmcc,hk_g42,hws_ocb,fcs,dt) [取值:TCP、UDP、IP、HTTP、HTTPS。IP为网关型LB上的监听器独有的协议。](tag:hws_eu,hcso_dt) 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt,dt,dt_test)
337
337
 
338
338
  :param protocol: The protocol of this ListListenersRequest.
339
339
  :type protocol: list[str]
@@ -410,7 +410,7 @@ class ListListenersRequest:
410
410
  def admin_state_up(self):
411
411
  """Gets the admin_state_up of this ListListenersRequest.
412
412
 
413
- 监听器的管理状态,只能设置为true。 不支持该字段,请勿使用。
413
+ 监听器的管理状态。 [不支持该字段,请勿使用。](tag:dt,dt_test,hcso_dt)
414
414
 
415
415
  :return: The admin_state_up of this ListListenersRequest.
416
416
  :rtype: bool
@@ -421,7 +421,7 @@ class ListListenersRequest:
421
421
  def admin_state_up(self, admin_state_up):
422
422
  """Sets the admin_state_up of this ListListenersRequest.
423
423
 
424
- 监听器的管理状态,只能设置为true。 不支持该字段,请勿使用。
424
+ 监听器的管理状态。 [不支持该字段,请勿使用。](tag:dt,dt_test,hcso_dt)
425
425
 
426
426
  :param admin_state_up: The admin_state_up of this ListListenersRequest.
427
427
  :type admin_state_up: bool
@@ -718,7 +718,7 @@ class ListListenersRequest:
718
718
  def keepalive_timeout(self):
719
719
  """Gets the keepalive_timeout of this ListListenersRequest.
720
720
 
721
- 客户端连接空闲超时时间。在超过keepalive_timeout时长一直没有请求, 负载均衡会暂时中断当前连接,直到下一次请求时重新建立新的连接。 取值: - TCP监听器:10-4000s。 - HTTP/HTTPS/TERMINATED_HTTPS监听器:0-4000s。 - 共享型实例的UDP监听器不支持此字段。 支持多值查询,查询条件格式:*keepalive_timeout=xxx&keepalive_timeout=xxx*。
721
+ 客户端连接空闲超时时间。在超过keepalive_timeout时长一直没有请求, 负载均衡会暂时中断当前连接,直到下一次请求时重新建立新的连接。 取值: - TCP监听器[和IP监听器](tag:hws_eu):10-4000s。 - HTTP/HTTPS/TERMINATED_HTTPS监听器:0-4000s。 [- 共享型实例的UDP监听器不支持此字段。](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,fcs,dt,dt_test,hk_tm) 支持多值查询,查询条件格式:*keepalive_timeout=xxx&keepalive_timeout=xxx*。
722
722
 
723
723
  :return: The keepalive_timeout of this ListListenersRequest.
724
724
  :rtype: list[int]
@@ -729,7 +729,7 @@ class ListListenersRequest:
729
729
  def keepalive_timeout(self, keepalive_timeout):
730
730
  """Sets the keepalive_timeout of this ListListenersRequest.
731
731
 
732
- 客户端连接空闲超时时间。在超过keepalive_timeout时长一直没有请求, 负载均衡会暂时中断当前连接,直到下一次请求时重新建立新的连接。 取值: - TCP监听器:10-4000s。 - HTTP/HTTPS/TERMINATED_HTTPS监听器:0-4000s。 - 共享型实例的UDP监听器不支持此字段。 支持多值查询,查询条件格式:*keepalive_timeout=xxx&keepalive_timeout=xxx*。
732
+ 客户端连接空闲超时时间。在超过keepalive_timeout时长一直没有请求, 负载均衡会暂时中断当前连接,直到下一次请求时重新建立新的连接。 取值: - TCP监听器[和IP监听器](tag:hws_eu):10-4000s。 - HTTP/HTTPS/TERMINATED_HTTPS监听器:0-4000s。 [- 共享型实例的UDP监听器不支持此字段。](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,fcs,dt,dt_test,hk_tm) 支持多值查询,查询条件格式:*keepalive_timeout=xxx&keepalive_timeout=xxx*。
733
733
 
734
734
  :param keepalive_timeout: The keepalive_timeout of this ListListenersRequest.
735
735
  :type keepalive_timeout: list[int]
@@ -740,7 +740,7 @@ class ListListenersRequest:
740
740
  def transparent_client_ip_enable(self):
741
741
  """Gets the transparent_client_ip_enable of this ListListenersRequest.
742
742
 
743
- 是否透传客户端IP地址。开启后客户端IP地址将透传到后端服务器。 [仅作用于共享型LB的TCP/UDP监听器。取值:true开启,false不开启。 ](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,fcs,dt,hk_tm)
743
+ 是否透传客户端IP地址。开启后客户端IP地址将透传到后端服务器。 [仅作用于共享型LB的TCP/UDP监听器。取值:true开启,false不开启。 ](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,hk_vdf,fcs,dt,hk_tm)
744
744
 
745
745
  :return: The transparent_client_ip_enable of this ListListenersRequest.
746
746
  :rtype: bool
@@ -751,7 +751,7 @@ class ListListenersRequest:
751
751
  def transparent_client_ip_enable(self, transparent_client_ip_enable):
752
752
  """Sets the transparent_client_ip_enable of this ListListenersRequest.
753
753
 
754
- 是否透传客户端IP地址。开启后客户端IP地址将透传到后端服务器。 [仅作用于共享型LB的TCP/UDP监听器。取值:true开启,false不开启。 ](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,fcs,dt,hk_tm)
754
+ 是否透传客户端IP地址。开启后客户端IP地址将透传到后端服务器。 [仅作用于共享型LB的TCP/UDP监听器。取值:true开启,false不开启。 ](tag:hws,hws_hk,ocb,ctc,g42,tm,cmcc,hk_g42,hws_ocb,hk_vdf,fcs,dt,hk_tm)
755
755
 
756
756
  :param transparent_client_ip_enable: The transparent_client_ip_enable of this ListListenersRequest.
757
757
  :type transparent_client_ip_enable: bool
@@ -762,7 +762,7 @@ class ListListenersRequest:
762
762
  def proxy_protocol_enable(self):
763
763
  """Gets the proxy_protocol_enable of this ListListenersRequest.
764
764
 
765
- 是否开启proxy_protocol。仅tcpssl监听器可指定,其他协议的监听器该字段不生效,proxy_protocol不开启。
765
+ 是否开启proxy_protocol。仅TLS监听器可指定,其他协议的监听器该字段不生效,proxy_protocol不开启。
766
766
 
767
767
  :return: The proxy_protocol_enable of this ListListenersRequest.
768
768
  :rtype: bool
@@ -773,7 +773,7 @@ class ListListenersRequest:
773
773
  def proxy_protocol_enable(self, proxy_protocol_enable):
774
774
  """Sets the proxy_protocol_enable of this ListListenersRequest.
775
775
 
776
- 是否开启proxy_protocol。仅tcpssl监听器可指定,其他协议的监听器该字段不生效,proxy_protocol不开启。
776
+ 是否开启proxy_protocol。仅TLS监听器可指定,其他协议的监听器该字段不生效,proxy_protocol不开启。
777
777
 
778
778
  :param proxy_protocol_enable: The proxy_protocol_enable of this ListListenersRequest.
779
779
  :type proxy_protocol_enable: bool
@@ -784,7 +784,7 @@ class ListListenersRequest:
784
784
  def enhance_l7policy_enable(self):
785
785
  """Gets the enhance_l7policy_enable of this ListListenersRequest.
786
786
 
787
- 是否开启高级转发策略功能。开启高级转发策略后,支持更灵活的转发策略和转发规则设置。 取值:true开启,false不开启。 [荷兰region不支持该字段,请勿使用。](tag:dt)
787
+ 是否开启高级转发策略功能。开启高级转发策略后,支持更灵活的转发策略和转发规则设置。 取值:true开启,false不开启。 [荷兰region不支持该字段,请勿使用。](tag:dt,dt_test)
788
788
 
789
789
  :return: The enhance_l7policy_enable of this ListListenersRequest.
790
790
  :rtype: bool
@@ -795,7 +795,7 @@ class ListListenersRequest:
795
795
  def enhance_l7policy_enable(self, enhance_l7policy_enable):
796
796
  """Sets the enhance_l7policy_enable of this ListListenersRequest.
797
797
 
798
- 是否开启高级转发策略功能。开启高级转发策略后,支持更灵活的转发策略和转发规则设置。 取值:true开启,false不开启。 [荷兰region不支持该字段,请勿使用。](tag:dt)
798
+ 是否开启高级转发策略功能。开启高级转发策略后,支持更灵活的转发策略和转发规则设置。 取值:true开启,false不开启。 [荷兰region不支持该字段,请勿使用。](tag:dt,dt_test)
799
799
 
800
800
  :param enhance_l7policy_enable: The enhance_l7policy_enable of this ListListenersRequest.
801
801
  :type enhance_l7policy_enable: bool
@@ -101,7 +101,7 @@ class ListLoadBalancersRequest:
101
101
 
102
102
  :param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
103
103
  :type marker: str
104
- :param limit: 每页返回的个数。
104
+ :param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
105
105
  :type limit: int
106
106
  :param page_reverse: 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
107
107
  :type page_reverse: bool
@@ -111,7 +111,7 @@ class ListLoadBalancersRequest:
111
111
  :type name: list[str]
112
112
  :param description: 负载均衡器的描述信息。 支持多值查询,查询条件格式:*description=xxx&description=xxx*。
113
113
  :type description: list[str]
114
- :param admin_state_up: 负载均衡器的管理状态。 不支持该字段,请勿使用。
114
+ :param admin_state_up: 参数解释:负载均衡器的启用状态。 取值范围:布尔类型。 - true :启用。 - false:停用。 [不支持该字段,请勿使用。](tag:dt,dt_test)
115
115
  :type admin_state_up: bool
116
116
  :param provisioning_status: 负载均衡器的配置状态。 取值: - ACTIVE:使用中。 - PENDING_DELETE:删除中。 支持多值查询,查询条件格式:*provisioning_status=xxx&provisioning_status=xxx*。
117
117
  :type provisioning_status: list[str]
@@ -125,29 +125,29 @@ class ListLoadBalancersRequest:
125
125
  :type vip_port_id: list[str]
126
126
  :param vip_address: 负载均衡器的IPv4虚拟IP地址。 支持多值查询,查询条件格式:*vip_address=xxx&vip_address=xxx*。
127
127
  :type vip_address: list[str]
128
- :param vip_subnet_cidr_id: 负载均衡器所在子网的IPv4子网ID 支持多值查询,查询条件格式:*vip_subnet_cidr_id=xxx&vip_subnet_cidr_id=xxx*。
128
+ :param vip_subnet_cidr_id: 负载均衡器所在子网的IPv4子网ID,也称为该负载均衡器实例的前端子网。 支持多值查询,查询条件格式:*vip_subnet_cidr_id=xxx&vip_subnet_cidr_id=xxx*。
129
129
  :type vip_subnet_cidr_id: list[str]
130
130
  :param ipv6_vip_port_id: 双栈类型负载均衡器的IPv6对应的port ID。 支持多值查询,查询条件格式:*ipv6_vip_port_id=xxx&ipv6_vip_port_id=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
131
131
  :type ipv6_vip_port_id: list[str]
132
132
  :param ipv6_vip_address: 双栈类型负载均衡器的IPv6地址。 支持多值查询,查询条件格式:*ipv6_vip_address=xxx&ipv6_vip_address=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
133
133
  :type ipv6_vip_address: list[str]
134
- :param ipv6_vip_virsubnet_id: 双栈类型负载均衡器所在的子网IPv6网络ID 支持多值查询,查询条件格式:*ipv6_vip_virsubnet_id=xxx&ipv6_vip_virsubnet_id=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
134
+ :param ipv6_vip_virsubnet_id: 双栈类型负载均衡器所在的子网IPv6网络ID,也称为该负载均衡器实例的前端子网。 支持多值查询,查询条件格式:*ipv6_vip_virsubnet_id=xxx&ipv6_vip_virsubnet_id=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
135
135
  :type ipv6_vip_virsubnet_id: list[str]
136
- :param eips: 负载均衡器绑定的EIP。示例如下: \"eips\": [ { \"eip_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"eip_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 支持多值查询,查询条件格式: - eip_id作为查询条件:*eips=eip_id=xxx&eips=eip_id=xxx*。 - eip_address作为查询条件:*eips=eip_address=xxx&eips=eip_address=xxx*。 - ip_version作为查询条件:*eips=ip_version=xxx&eips=ip_version=xxx*。 注:该字段与publicips字段一致。
136
+ :param eips: 负载均衡器绑定的EIP。例如要查询绑定以下EIP的LB: \"eips\": [ { \"eip_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"eip_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 可以通如下查询: eips=ip_version%3D4&eips=eip_address%3D88.88.14.122&eips=eip_id%3De9b72a9d-4275-455e-a724-853504e4d9c6 支持多值查询,查询条件格式: - eip_id作为查询条件:*eips=eip_id=xxx&eips=eip_id=xxx*。 - eip_address作为查询条件:*eips=eip_address=xxx&eips=eip_address=xxx*。 - ip_version作为查询条件:*eips=ip_version=xxx&eips=ip_version=xxx*。 注:该字段与publicips字段一致。
137
137
  :type eips: list[str]
138
- :param publicips: 负载均衡器绑定的公网IP。示例如下: \"publicips\": [ { \"publicip_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"publicip_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 支持多值查询,查询条件格式: - publicip_id作为查询条件: *publicips=publicip_id=xxx&publicips=publicip_id=xxx* - publicip_address作为查询条件: *publicips=publicip_address=xxx&publicips=publicip_address=xxx* - ip_version作为查询条件: *publicips=ip_version=xxx&publicips=ip_version=xxx* 注:该字段与eips字段一致。
138
+ :param publicips: 负载均衡器绑定的公网IP。例如要查询绑定以下公网IP的LB: \"publicips=\": [ { \"public_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"public_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 可以通如下查询: publicips=ip_version%3D4&publicips=public_address%3D88.88.14.122&publicips=public_id%3De9b72a9d-4275-455e-a724-853504e4d9c6 支持多值查询,查询条件格式: - publicip_id作为查询条件: *publicips=publicip_id=xxx&publicips=publicip_id=xxx* - publicip_address作为查询条件: *publicips=publicip_address=xxx&publicips=publicip_address=xxx* - ip_version作为查询条件: *publicips=ip_version=xxx&publicips=ip_version=xxx* 注:该字段与eips字段一致。
139
139
  :type publicips: list[str]
140
140
  :param availability_zone_list: 负载均衡器所在可用区列表。 支持多值查询,查询条件格式: *availability_zone_list=xxx&availability_zone_list=xxx*。
141
141
  :type availability_zone_list: list[str]
142
- :param l4_flavor_id: 网络型规格ID。 支持多值查询,查询条件格式:*l4_flavor_id=xxx&l4_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
142
+ :param l4_flavor_id: 网络型规格ID。 支持多值查询,查询条件格式:*l4_flavor_id=xxx&l4_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
143
143
  :type l4_flavor_id: list[str]
144
144
  :param l4_scale_flavor_id: 四层弹性Flavor ID。 支持多值查询,查询条件格式:*l4_scale_flavor_id=xxx&l4_scale_flavor_id=xxx*。 不支持该字段,请勿使用。
145
145
  :type l4_scale_flavor_id: list[str]
146
- :param l7_flavor_id: 应用型规格ID。 支持多值查询,查询条件格式:*l7_flavor_id=xxx&l7_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
146
+ :param l7_flavor_id: 应用型规格ID。 支持多值查询,查询条件格式:*l7_flavor_id=xxx&l7_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
147
147
  :type l7_flavor_id: list[str]
148
148
  :param l7_scale_flavor_id: 七层弹性Flavor ID。 支持多值查询,查询条件格式:*l7_scale_flavor_id=xxx&l7_scale_flavor_id=xxx*。 不支持该字段,请勿使用。
149
149
  :type l7_scale_flavor_id: list[str]
150
- :param billing_info: 资源账单信息。 支持多值查询,查询条件格式:*billing_info=xxx&billing_info=xxx*。 [不支持该字段,请勿使用。](tag:hws_hk,hws_eu,hws_test,hcs,hcs_sm,hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b,hcso_dt,dt,dt_test,ocb,ctc,cmcc,tm,sbc,g42,hws_ocb,hk_sbc,hk_tm,hk_g42)
150
+ :param billing_info: 资源账单信息。 支持多值查询,查询条件格式:*billing_info=xxx&billing_info=xxx*。 [不支持该字段,请勿使用。](tag:hws_hk,hws_eu,hws_test,hcs,hcs_sm,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b,hcso_dt,dt,dt_test,ocb,ctc,cmcc,tm,sbc,g42,hws_ocb,hk_sbc,hk_tm,hk_g42)
151
151
  :type billing_info: list[str]
152
152
  :param member_device_id: 负载均衡器中的后端云服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
153
153
  :type member_device_id: list[str]
@@ -157,7 +157,7 @@ class ListLoadBalancersRequest:
157
157
  :type enterprise_project_id: list[str]
158
158
  :param ip_version: IP版本信息。 取值:4代表IPv4,6代表IPv6。 支持多值查询,查询条件格式:*ip_version=xxx&ip_version=xxx*。 [不支持IPv6,请勿设置为6。](tag:dt,dt_test)
159
159
  :type ip_version: list[int]
160
- :param deletion_protection_enable: 是否开启删除保护,false不开启,true开启。[不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt)
160
+ :param deletion_protection_enable: 是否开启删除保护,false不开启,true开启。[不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt,dt_test)
161
161
  :type deletion_protection_enable: bool
162
162
  :param elb_virsubnet_type: 下联面子网类型。 取值: - ipv4:ipv4。 - dualstack:双栈。 支持多值查询,查询条件格式: *elb_virsubnet_type=ipv4&elb_virsubnet_type=dualstack*。
163
163
  :type elb_virsubnet_type: list[str]
@@ -312,7 +312,7 @@ class ListLoadBalancersRequest:
312
312
  def limit(self):
313
313
  """Gets the limit of this ListLoadBalancersRequest.
314
314
 
315
- 每页返回的个数。
315
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
316
316
 
317
317
  :return: The limit of this ListLoadBalancersRequest.
318
318
  :rtype: int
@@ -323,7 +323,7 @@ class ListLoadBalancersRequest:
323
323
  def limit(self, limit):
324
324
  """Sets the limit of this ListLoadBalancersRequest.
325
325
 
326
- 每页返回的个数。
326
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
327
327
 
328
328
  :param limit: The limit of this ListLoadBalancersRequest.
329
329
  :type limit: int
@@ -422,7 +422,7 @@ class ListLoadBalancersRequest:
422
422
  def admin_state_up(self):
423
423
  """Gets the admin_state_up of this ListLoadBalancersRequest.
424
424
 
425
- 负载均衡器的管理状态。 不支持该字段,请勿使用。
425
+ 参数解释:负载均衡器的启用状态。 取值范围:布尔类型。 - true :启用。 - false:停用。 [不支持该字段,请勿使用。](tag:dt,dt_test)
426
426
 
427
427
  :return: The admin_state_up of this ListLoadBalancersRequest.
428
428
  :rtype: bool
@@ -433,7 +433,7 @@ class ListLoadBalancersRequest:
433
433
  def admin_state_up(self, admin_state_up):
434
434
  """Sets the admin_state_up of this ListLoadBalancersRequest.
435
435
 
436
- 负载均衡器的管理状态。 不支持该字段,请勿使用。
436
+ 参数解释:负载均衡器的启用状态。 取值范围:布尔类型。 - true :启用。 - false:停用。 [不支持该字段,请勿使用。](tag:dt,dt_test)
437
437
 
438
438
  :param admin_state_up: The admin_state_up of this ListLoadBalancersRequest.
439
439
  :type admin_state_up: bool
@@ -576,7 +576,7 @@ class ListLoadBalancersRequest:
576
576
  def vip_subnet_cidr_id(self):
577
577
  """Gets the vip_subnet_cidr_id of this ListLoadBalancersRequest.
578
578
 
579
- 负载均衡器所在子网的IPv4子网ID 支持多值查询,查询条件格式:*vip_subnet_cidr_id=xxx&vip_subnet_cidr_id=xxx*。
579
+ 负载均衡器所在子网的IPv4子网ID,也称为该负载均衡器实例的前端子网。 支持多值查询,查询条件格式:*vip_subnet_cidr_id=xxx&vip_subnet_cidr_id=xxx*。
580
580
 
581
581
  :return: The vip_subnet_cidr_id of this ListLoadBalancersRequest.
582
582
  :rtype: list[str]
@@ -587,7 +587,7 @@ class ListLoadBalancersRequest:
587
587
  def vip_subnet_cidr_id(self, vip_subnet_cidr_id):
588
588
  """Sets the vip_subnet_cidr_id of this ListLoadBalancersRequest.
589
589
 
590
- 负载均衡器所在子网的IPv4子网ID 支持多值查询,查询条件格式:*vip_subnet_cidr_id=xxx&vip_subnet_cidr_id=xxx*。
590
+ 负载均衡器所在子网的IPv4子网ID,也称为该负载均衡器实例的前端子网。 支持多值查询,查询条件格式:*vip_subnet_cidr_id=xxx&vip_subnet_cidr_id=xxx*。
591
591
 
592
592
  :param vip_subnet_cidr_id: The vip_subnet_cidr_id of this ListLoadBalancersRequest.
593
593
  :type vip_subnet_cidr_id: list[str]
@@ -642,7 +642,7 @@ class ListLoadBalancersRequest:
642
642
  def ipv6_vip_virsubnet_id(self):
643
643
  """Gets the ipv6_vip_virsubnet_id of this ListLoadBalancersRequest.
644
644
 
645
- 双栈类型负载均衡器所在的子网IPv6网络ID 支持多值查询,查询条件格式:*ipv6_vip_virsubnet_id=xxx&ipv6_vip_virsubnet_id=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
645
+ 双栈类型负载均衡器所在的子网IPv6网络ID,也称为该负载均衡器实例的前端子网。 支持多值查询,查询条件格式:*ipv6_vip_virsubnet_id=xxx&ipv6_vip_virsubnet_id=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
646
646
 
647
647
  :return: The ipv6_vip_virsubnet_id of this ListLoadBalancersRequest.
648
648
  :rtype: list[str]
@@ -653,7 +653,7 @@ class ListLoadBalancersRequest:
653
653
  def ipv6_vip_virsubnet_id(self, ipv6_vip_virsubnet_id):
654
654
  """Sets the ipv6_vip_virsubnet_id of this ListLoadBalancersRequest.
655
655
 
656
- 双栈类型负载均衡器所在的子网IPv6网络ID 支持多值查询,查询条件格式:*ipv6_vip_virsubnet_id=xxx&ipv6_vip_virsubnet_id=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
656
+ 双栈类型负载均衡器所在的子网IPv6网络ID,也称为该负载均衡器实例的前端子网。 支持多值查询,查询条件格式:*ipv6_vip_virsubnet_id=xxx&ipv6_vip_virsubnet_id=xxx*。 [不支持IPv6,请勿使用。](tag:dt,dt_test)
657
657
 
658
658
  :param ipv6_vip_virsubnet_id: The ipv6_vip_virsubnet_id of this ListLoadBalancersRequest.
659
659
  :type ipv6_vip_virsubnet_id: list[str]
@@ -664,7 +664,7 @@ class ListLoadBalancersRequest:
664
664
  def eips(self):
665
665
  """Gets the eips of this ListLoadBalancersRequest.
666
666
 
667
- 负载均衡器绑定的EIP。示例如下: \"eips\": [ { \"eip_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"eip_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 支持多值查询,查询条件格式: - eip_id作为查询条件:*eips=eip_id=xxx&eips=eip_id=xxx*。 - eip_address作为查询条件:*eips=eip_address=xxx&eips=eip_address=xxx*。 - ip_version作为查询条件:*eips=ip_version=xxx&eips=ip_version=xxx*。 注:该字段与publicips字段一致。
667
+ 负载均衡器绑定的EIP。例如要查询绑定以下EIP的LB: \"eips\": [ { \"eip_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"eip_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 可以通如下查询: eips=ip_version%3D4&eips=eip_address%3D88.88.14.122&eips=eip_id%3De9b72a9d-4275-455e-a724-853504e4d9c6 支持多值查询,查询条件格式: - eip_id作为查询条件:*eips=eip_id=xxx&eips=eip_id=xxx*。 - eip_address作为查询条件:*eips=eip_address=xxx&eips=eip_address=xxx*。 - ip_version作为查询条件:*eips=ip_version=xxx&eips=ip_version=xxx*。 注:该字段与publicips字段一致。
668
668
 
669
669
  :return: The eips of this ListLoadBalancersRequest.
670
670
  :rtype: list[str]
@@ -675,7 +675,7 @@ class ListLoadBalancersRequest:
675
675
  def eips(self, eips):
676
676
  """Sets the eips of this ListLoadBalancersRequest.
677
677
 
678
- 负载均衡器绑定的EIP。示例如下: \"eips\": [ { \"eip_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"eip_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 支持多值查询,查询条件格式: - eip_id作为查询条件:*eips=eip_id=xxx&eips=eip_id=xxx*。 - eip_address作为查询条件:*eips=eip_address=xxx&eips=eip_address=xxx*。 - ip_version作为查询条件:*eips=ip_version=xxx&eips=ip_version=xxx*。 注:该字段与publicips字段一致。
678
+ 负载均衡器绑定的EIP。例如要查询绑定以下EIP的LB: \"eips\": [ { \"eip_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"eip_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 可以通如下查询: eips=ip_version%3D4&eips=eip_address%3D88.88.14.122&eips=eip_id%3De9b72a9d-4275-455e-a724-853504e4d9c6 支持多值查询,查询条件格式: - eip_id作为查询条件:*eips=eip_id=xxx&eips=eip_id=xxx*。 - eip_address作为查询条件:*eips=eip_address=xxx&eips=eip_address=xxx*。 - ip_version作为查询条件:*eips=ip_version=xxx&eips=ip_version=xxx*。 注:该字段与publicips字段一致。
679
679
 
680
680
  :param eips: The eips of this ListLoadBalancersRequest.
681
681
  :type eips: list[str]
@@ -686,7 +686,7 @@ class ListLoadBalancersRequest:
686
686
  def publicips(self):
687
687
  """Gets the publicips of this ListLoadBalancersRequest.
688
688
 
689
- 负载均衡器绑定的公网IP。示例如下: \"publicips\": [ { \"publicip_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"publicip_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 支持多值查询,查询条件格式: - publicip_id作为查询条件: *publicips=publicip_id=xxx&publicips=publicip_id=xxx* - publicip_address作为查询条件: *publicips=publicip_address=xxx&publicips=publicip_address=xxx* - ip_version作为查询条件: *publicips=ip_version=xxx&publicips=ip_version=xxx* 注:该字段与eips字段一致。
689
+ 负载均衡器绑定的公网IP。例如要查询绑定以下公网IP的LB: \"publicips=\": [ { \"public_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"public_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 可以通如下查询: publicips=ip_version%3D4&publicips=public_address%3D88.88.14.122&publicips=public_id%3De9b72a9d-4275-455e-a724-853504e4d9c6 支持多值查询,查询条件格式: - publicip_id作为查询条件: *publicips=publicip_id=xxx&publicips=publicip_id=xxx* - publicip_address作为查询条件: *publicips=publicip_address=xxx&publicips=publicip_address=xxx* - ip_version作为查询条件: *publicips=ip_version=xxx&publicips=ip_version=xxx* 注:该字段与eips字段一致。
690
690
 
691
691
  :return: The publicips of this ListLoadBalancersRequest.
692
692
  :rtype: list[str]
@@ -697,7 +697,7 @@ class ListLoadBalancersRequest:
697
697
  def publicips(self, publicips):
698
698
  """Sets the publicips of this ListLoadBalancersRequest.
699
699
 
700
- 负载均衡器绑定的公网IP。示例如下: \"publicips\": [ { \"publicip_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"publicip_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 支持多值查询,查询条件格式: - publicip_id作为查询条件: *publicips=publicip_id=xxx&publicips=publicip_id=xxx* - publicip_address作为查询条件: *publicips=publicip_address=xxx&publicips=publicip_address=xxx* - ip_version作为查询条件: *publicips=ip_version=xxx&publicips=ip_version=xxx* 注:该字段与eips字段一致。
700
+ 负载均衡器绑定的公网IP。例如要查询绑定以下公网IP的LB: \"publicips=\": [ { \"public_id\": \"e9b72a9d-4275-455e-a724-853504e4d9c6\", \"public_address\": \"88.88.14.122\", \"ip_version\": 4 } ] 可以通如下查询: publicips=ip_version%3D4&publicips=public_address%3D88.88.14.122&publicips=public_id%3De9b72a9d-4275-455e-a724-853504e4d9c6 支持多值查询,查询条件格式: - publicip_id作为查询条件: *publicips=publicip_id=xxx&publicips=publicip_id=xxx* - publicip_address作为查询条件: *publicips=publicip_address=xxx&publicips=publicip_address=xxx* - ip_version作为查询条件: *publicips=ip_version=xxx&publicips=ip_version=xxx* 注:该字段与eips字段一致。
701
701
 
702
702
  :param publicips: The publicips of this ListLoadBalancersRequest.
703
703
  :type publicips: list[str]
@@ -730,7 +730,7 @@ class ListLoadBalancersRequest:
730
730
  def l4_flavor_id(self):
731
731
  """Gets the l4_flavor_id of this ListLoadBalancersRequest.
732
732
 
733
- 网络型规格ID。 支持多值查询,查询条件格式:*l4_flavor_id=xxx&l4_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
733
+ 网络型规格ID。 支持多值查询,查询条件格式:*l4_flavor_id=xxx&l4_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
734
734
 
735
735
  :return: The l4_flavor_id of this ListLoadBalancersRequest.
736
736
  :rtype: list[str]
@@ -741,7 +741,7 @@ class ListLoadBalancersRequest:
741
741
  def l4_flavor_id(self, l4_flavor_id):
742
742
  """Sets the l4_flavor_id of this ListLoadBalancersRequest.
743
743
 
744
- 网络型规格ID。 支持多值查询,查询条件格式:*l4_flavor_id=xxx&l4_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
744
+ 网络型规格ID。 支持多值查询,查询条件格式:*l4_flavor_id=xxx&l4_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
745
745
 
746
746
  :param l4_flavor_id: The l4_flavor_id of this ListLoadBalancersRequest.
747
747
  :type l4_flavor_id: list[str]
@@ -774,7 +774,7 @@ class ListLoadBalancersRequest:
774
774
  def l7_flavor_id(self):
775
775
  """Gets the l7_flavor_id of this ListLoadBalancersRequest.
776
776
 
777
- 应用型规格ID。 支持多值查询,查询条件格式:*l7_flavor_id=xxx&l7_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
777
+ 应用型规格ID。 支持多值查询,查询条件格式:*l7_flavor_id=xxx&l7_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
778
778
 
779
779
  :return: The l7_flavor_id of this ListLoadBalancersRequest.
780
780
  :rtype: list[str]
@@ -785,7 +785,7 @@ class ListLoadBalancersRequest:
785
785
  def l7_flavor_id(self, l7_flavor_id):
786
786
  """Sets the l7_flavor_id of this ListLoadBalancersRequest.
787
787
 
788
- 应用型规格ID。 支持多值查询,查询条件格式:*l7_flavor_id=xxx&l7_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
788
+ 应用型规格ID。 支持多值查询,查询条件格式:*l7_flavor_id=xxx&l7_flavor_id=xxx*。 [不支持该字段,请勿使用。](tag:hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b)
789
789
 
790
790
  :param l7_flavor_id: The l7_flavor_id of this ListLoadBalancersRequest.
791
791
  :type l7_flavor_id: list[str]
@@ -818,7 +818,7 @@ class ListLoadBalancersRequest:
818
818
  def billing_info(self):
819
819
  """Gets the billing_info of this ListLoadBalancersRequest.
820
820
 
821
- 资源账单信息。 支持多值查询,查询条件格式:*billing_info=xxx&billing_info=xxx*。 [不支持该字段,请勿使用。](tag:hws_hk,hws_eu,hws_test,hcs,hcs_sm,hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b,hcso_dt,dt,dt_test,ocb,ctc,cmcc,tm,sbc,g42,hws_ocb,hk_sbc,hk_tm,hk_g42)
821
+ 资源账单信息。 支持多值查询,查询条件格式:*billing_info=xxx&billing_info=xxx*。 [不支持该字段,请勿使用。](tag:hws_hk,hws_eu,hws_test,hcs,hcs_sm,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b,hcso_dt,dt,dt_test,ocb,ctc,cmcc,tm,sbc,g42,hws_ocb,hk_sbc,hk_tm,hk_g42)
822
822
 
823
823
  :return: The billing_info of this ListLoadBalancersRequest.
824
824
  :rtype: list[str]
@@ -829,7 +829,7 @@ class ListLoadBalancersRequest:
829
829
  def billing_info(self, billing_info):
830
830
  """Sets the billing_info of this ListLoadBalancersRequest.
831
831
 
832
- 资源账单信息。 支持多值查询,查询条件格式:*billing_info=xxx&billing_info=xxx*。 [不支持该字段,请勿使用。](tag:hws_hk,hws_eu,hws_test,hcs,hcs_sm,hcso,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b,hcso_dt,dt,dt_test,ocb,ctc,cmcc,tm,sbc,g42,hws_ocb,hk_sbc,hk_tm,hk_g42)
832
+ 资源账单信息。 支持多值查询,查询条件格式:*billing_info=xxx&billing_info=xxx*。 [不支持该字段,请勿使用。](tag:hws_hk,hws_eu,hws_test,hcs,hcs_sm,hcso,hk_vdf,fcs,fcs_vm,mix,hcso_g42,hcso_g42_b,hcso_dt,dt,dt_test,ocb,ctc,cmcc,tm,sbc,g42,hws_ocb,hk_sbc,hk_tm,hk_g42)
833
833
 
834
834
  :param billing_info: The billing_info of this ListLoadBalancersRequest.
835
835
  :type billing_info: list[str]
@@ -928,7 +928,7 @@ class ListLoadBalancersRequest:
928
928
  def deletion_protection_enable(self):
929
929
  """Gets the deletion_protection_enable of this ListLoadBalancersRequest.
930
930
 
931
- 是否开启删除保护,false不开启,true开启。[不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt)
931
+ 是否开启删除保护,false不开启,true开启。[不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt,dt_test)
932
932
 
933
933
  :return: The deletion_protection_enable of this ListLoadBalancersRequest.
934
934
  :rtype: bool
@@ -939,7 +939,7 @@ class ListLoadBalancersRequest:
939
939
  def deletion_protection_enable(self, deletion_protection_enable):
940
940
  """Sets the deletion_protection_enable of this ListLoadBalancersRequest.
941
941
 
942
- 是否开启删除保护,false不开启,true开启。[不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt)
942
+ 是否开启删除保护,false不开启,true开启。[不支持该字段,请勿使用。](tag:hws_eu,g42,hk_g42) [荷兰region不支持该字段,请勿使用。](tag:dt,dt_test)
943
943
 
944
944
  :param deletion_protection_enable: The deletion_protection_enable of this ListLoadBalancersRequest.
945
945
  :type deletion_protection_enable: bool
@@ -43,7 +43,7 @@ class ListLogtanksRequest:
43
43
 
44
44
  The model defined in huaweicloud sdk
45
45
 
46
- :param limit: 每页返回的个数。
46
+ :param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
47
47
  :type limit: int
48
48
  :param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
49
49
  :type marker: str
@@ -94,7 +94,7 @@ class ListLogtanksRequest:
94
94
  def limit(self):
95
95
  """Gets the limit of this ListLogtanksRequest.
96
96
 
97
- 每页返回的个数。
97
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
98
98
 
99
99
  :return: The limit of this ListLogtanksRequest.
100
100
  :rtype: int
@@ -105,7 +105,7 @@ class ListLogtanksRequest:
105
105
  def limit(self, limit):
106
106
  """Sets the limit of this ListLogtanksRequest.
107
107
 
108
- 每页返回的个数。
108
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
109
109
 
110
110
  :param limit: The limit of this ListLogtanksRequest.
111
111
  :type limit: int
@@ -67,7 +67,7 @@ class ListMasterSlavePoolsRequest:
67
67
 
68
68
  :param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
69
69
  :type marker: str
70
- :param limit: 每页返回的个数。
70
+ :param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
71
71
  :type limit: int
72
72
  :param page_reverse: 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
73
73
  :type page_reverse: bool
@@ -81,7 +81,7 @@ class ListMasterSlavePoolsRequest:
81
81
  :type name: list[str]
82
82
  :param loadbalancer_id: 后端云服务器组绑定的负载均衡器ID。 支持多值查询,查询条件格式:*loadbalancer_id=xxx&loadbalancer_id=xxx*。
83
83
  :type loadbalancer_id: list[str]
84
- :param protocol: 后端云服务器组的后端协议。 取值:TCP、UDP、HTTP、HTTPS和QUIC。 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC。](tag:dt,dt_test)
84
+ :param protocol: 后端云服务器组的后端协议。 取值:TCP、UDP、[IP、](tag:hws_eu)TLS、GRPC、HTTP、HTTPS和QUIC。 IP类型为网关型LB独有的后端服务器组协议。 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC。](tag:dt,dt_test)
85
85
  :type protocol: list[str]
86
86
  :param lb_algorithm: 后端云服务器组的负载均衡算法。 取值: 1、ROUND_ROBIN:加权轮询算法。 2、LEAST_CONNECTIONS:加权最少连接算法。 3、SOURCE_IP:源IP算法。 4、QUIC_CID:连接ID算法。 支持多值查询,查询条件格式:*lb_algorithm=xxx&lb_algorithm=xxx*。 [不支持QUIC_CID。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC_CID。](tag:dt,dt_test)
87
87
  :type lb_algorithm: list[str]
@@ -193,7 +193,7 @@ class ListMasterSlavePoolsRequest:
193
193
  def limit(self):
194
194
  """Gets the limit of this ListMasterSlavePoolsRequest.
195
195
 
196
- 每页返回的个数。
196
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
197
197
 
198
198
  :return: The limit of this ListMasterSlavePoolsRequest.
199
199
  :rtype: int
@@ -204,7 +204,7 @@ class ListMasterSlavePoolsRequest:
204
204
  def limit(self, limit):
205
205
  """Sets the limit of this ListMasterSlavePoolsRequest.
206
206
 
207
- 每页返回的个数。
207
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
208
208
 
209
209
  :param limit: The limit of this ListMasterSlavePoolsRequest.
210
210
  :type limit: int
@@ -347,7 +347,7 @@ class ListMasterSlavePoolsRequest:
347
347
  def protocol(self):
348
348
  """Gets the protocol of this ListMasterSlavePoolsRequest.
349
349
 
350
- 后端云服务器组的后端协议。 取值:TCP、UDP、HTTP、HTTPS和QUIC。 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC。](tag:dt,dt_test)
350
+ 后端云服务器组的后端协议。 取值:TCP、UDP、[IP、](tag:hws_eu)TLS、GRPC、HTTP、HTTPS和QUIC。 IP类型为网关型LB独有的后端服务器组协议。 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC。](tag:dt,dt_test)
351
351
 
352
352
  :return: The protocol of this ListMasterSlavePoolsRequest.
353
353
  :rtype: list[str]
@@ -358,7 +358,7 @@ class ListMasterSlavePoolsRequest:
358
358
  def protocol(self, protocol):
359
359
  """Sets the protocol of this ListMasterSlavePoolsRequest.
360
360
 
361
- 后端云服务器组的后端协议。 取值:TCP、UDP、HTTP、HTTPS和QUIC。 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC。](tag:dt,dt_test)
361
+ 后端云服务器组的后端协议。 取值:TCP、UDP、[IP、](tag:hws_eu)TLS、GRPC、HTTP、HTTPS和QUIC。 IP类型为网关型LB独有的后端服务器组协议。 支持多值查询,查询条件格式:*protocol=xxx&protocol=xxx*。 [不支持QUIC。](tag:tm,hws_eu,g42,hk_g42,hcso_dt) [荷兰region不支持QUIC。](tag:dt,dt_test)
362
362
 
363
363
  :param protocol: The protocol of this ListMasterSlavePoolsRequest.
364
364
  :type protocol: list[str]
@@ -63,7 +63,7 @@ class ListMembersRequest:
63
63
  :type pool_id: str
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
@@ -193,7 +193,7 @@ class ListMembersRequest:
193
193
  def limit(self):
194
194
  """Gets the limit of this ListMembersRequest.
195
195
 
196
- 每页返回的个数。
196
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
197
197
 
198
198
  :return: The limit of this ListMembersRequest.
199
199
  :rtype: int
@@ -204,7 +204,7 @@ class ListMembersRequest:
204
204
  def limit(self, limit):
205
205
  """Sets the limit of this ListMembersRequest.
206
206
 
207
- 每页返回的个数。
207
+ 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
208
208
 
209
209
  :param limit: The limit of this ListMembersRequest.
210
210
  :type limit: int