huaweicloudsdkelb 3.1.85__py2.py3-none-any.whl → 3.1.132__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.
- huaweicloudsdkelb/v2/elb_async_client.py +2 -0
- huaweicloudsdkelb/v2/elb_client.py +2 -0
- huaweicloudsdkelb/v2/model/list_members_request.py +32 -3
- huaweicloudsdkelb/v2/region/elb_region.py +19 -1
- huaweicloudsdkelb/v3/__init__.py +29 -0
- huaweicloudsdkelb/v3/elb_async_client.py +175 -34
- huaweicloudsdkelb/v3/elb_client.py +175 -34
- huaweicloudsdkelb/v3/model/__init__.py +29 -0
- huaweicloudsdkelb/v3/model/autoscaling_ref.py +6 -6
- huaweicloudsdkelb/v3/model/availability_zone.py +15 -15
- huaweicloudsdkelb/v3/model/bandwidth_ref.py +3 -3
- huaweicloudsdkelb/v3/model/batch_add_available_zones_request.py +3 -3
- huaweicloudsdkelb/v3/model/batch_add_available_zones_response.py +6 -6
- huaweicloudsdkelb/v3/model/batch_create_members_option.py +12 -12
- huaweicloudsdkelb/v3/model/batch_create_members_request.py +3 -3
- huaweicloudsdkelb/v3/model/batch_delete_ip_list_option.py +3 -3
- huaweicloudsdkelb/v3/model/batch_delete_ip_list_request.py +3 -3
- huaweicloudsdkelb/v3/model/batch_delete_ip_list_response.py +3 -3
- huaweicloudsdkelb/v3/model/batch_delete_members_request.py +3 -3
- huaweicloudsdkelb/v3/model/batch_member.py +85 -27
- huaweicloudsdkelb/v3/model/batch_update_member.py +85 -27
- huaweicloudsdkelb/v3/model/batch_update_members_option.py +9 -9
- huaweicloudsdkelb/v3/model/batch_update_members_request.py +3 -3
- huaweicloudsdkelb/v3/model/batch_update_policies_priority_request_body.py +3 -3
- huaweicloudsdkelb/v3/model/batch_update_priority_request_body.py +6 -6
- huaweicloudsdkelb/v3/model/certificate_info.py +93 -6
- huaweicloudsdkelb/v3/model/change_loadbalancer_charge_mode_request_body.py +3 -3
- huaweicloudsdkelb/v3/model/connection_drain.py +6 -6
- huaweicloudsdkelb/v3/model/count_preoccupy_ip_num_request.py +6 -6
- huaweicloudsdkelb/v3/model/create_certificate_option.py +5 -4
- huaweicloudsdkelb/v3/model/create_certificate_private_key_echo_request.py +111 -0
- huaweicloudsdkelb/v3/model/create_certificate_private_key_echo_request_body.py +114 -0
- huaweicloudsdkelb/v3/model/create_certificate_private_key_echo_response.py +145 -0
- huaweicloudsdkelb/v3/model/create_fixted_response_config.py +87 -12
- huaweicloudsdkelb/v3/model/create_health_monitor_option.py +18 -18
- huaweicloudsdkelb/v3/model/create_insert_header_config.py +170 -0
- huaweicloudsdkelb/v3/model/create_insert_headers_config.py +114 -0
- huaweicloudsdkelb/v3/model/create_ip_group_ip_option.py +6 -6
- huaweicloudsdkelb/v3/model/create_ip_group_option.py +15 -15
- huaweicloudsdkelb/v3/model/create_ip_group_response.py +3 -3
- huaweicloudsdkelb/v3/model/create_l7_policy_option.py +91 -37
- huaweicloudsdkelb/v3/model/create_l7_policy_response.py +3 -3
- huaweicloudsdkelb/v3/model/create_l7_policy_rule_option.py +21 -21
- huaweicloudsdkelb/v3/model/create_l7_rule_request.py +3 -3
- huaweicloudsdkelb/v3/model/create_l7_rule_response.py +3 -3
- huaweicloudsdkelb/v3/model/create_listener_ip_group_option.py +9 -9
- huaweicloudsdkelb/v3/model/create_listener_option.py +84 -84
- huaweicloudsdkelb/v3/model/create_listener_quic_config_option.py +6 -6
- huaweicloudsdkelb/v3/model/create_listener_response.py +3 -3
- huaweicloudsdkelb/v3/model/create_load_balancer_bandwidth_option.py +18 -18
- huaweicloudsdkelb/v3/model/create_load_balancer_option.py +76 -105
- huaweicloudsdkelb/v3/model/create_load_balancer_public_ip_option.py +12 -12
- huaweicloudsdkelb/v3/model/create_load_balancer_response.py +9 -9
- huaweicloudsdkelb/v3/model/create_loadbalancer_autoscaling_option.py +6 -6
- huaweicloudsdkelb/v3/model/create_master_slave_health_monitor_option.py +9 -9
- huaweicloudsdkelb/v3/model/create_master_slave_member_option.py +12 -12
- huaweicloudsdkelb/v3/model/create_master_slave_pool_option.py +33 -33
- huaweicloudsdkelb/v3/model/create_member_option.py +21 -21
- huaweicloudsdkelb/v3/model/create_member_request.py +3 -3
- huaweicloudsdkelb/v3/model/create_member_response.py +3 -3
- huaweicloudsdkelb/v3/model/create_pool_option.py +102 -48
- huaweicloudsdkelb/v3/model/create_pool_response.py +3 -3
- huaweicloudsdkelb/v3/model/create_pool_session_persistence_option.py +9 -9
- huaweicloudsdkelb/v3/model/create_pool_slow_start_option.py +6 -6
- huaweicloudsdkelb/v3/model/create_redirect_pools_config.py +143 -0
- huaweicloudsdkelb/v3/model/create_redirect_pools_extend_config.py +81 -6
- huaweicloudsdkelb/v3/model/create_redirect_pools_sticky_session_config.py +144 -0
- huaweicloudsdkelb/v3/model/create_redirect_url_config.py +71 -21
- huaweicloudsdkelb/v3/model/create_remove_header_config.py +114 -0
- huaweicloudsdkelb/v3/model/create_remove_headers_config.py +114 -0
- huaweicloudsdkelb/v3/model/create_rewrite_url_config.py +9 -9
- huaweicloudsdkelb/v3/model/create_rule_condition.py +6 -6
- huaweicloudsdkelb/v3/model/create_rule_option.py +24 -24
- huaweicloudsdkelb/v3/model/create_traffic_limit_config.py +173 -0
- huaweicloudsdkelb/v3/model/delete_ip_group_request.py +3 -3
- huaweicloudsdkelb/v3/model/delete_l7_policy_request.py +3 -3
- huaweicloudsdkelb/v3/model/delete_master_slave_pool_request.py +3 -3
- huaweicloudsdkelb/v3/model/delete_member_request.py +6 -6
- huaweicloudsdkelb/v3/model/delete_pool_request.py +3 -3
- huaweicloudsdkelb/v3/model/eip_info.py +9 -9
- huaweicloudsdkelb/v3/model/fixted_response_config.py +87 -12
- huaweicloudsdkelb/v3/model/flavor.py +79 -21
- huaweicloudsdkelb/v3/model/flavor_info.py +18 -18
- huaweicloudsdkelb/v3/model/global_eip_info.py +9 -9
- huaweicloudsdkelb/v3/model/health_monitor.py +18 -18
- huaweicloudsdkelb/v3/model/insert_header_config.py +170 -0
- huaweicloudsdkelb/v3/model/insert_headers_config.py +114 -0
- huaweicloudsdkelb/v3/model/ip_group.py +119 -90
- huaweicloudsdkelb/v3/model/ip_group_ip.py +3 -3
- huaweicloudsdkelb/v3/model/ip_info.py +6 -6
- huaweicloudsdkelb/v3/model/l7_policy.py +103 -49
- huaweicloudsdkelb/v3/model/l7_rule.py +36 -36
- huaweicloudsdkelb/v3/model/list_all_members_request.py +24 -24
- huaweicloudsdkelb/v3/model/list_all_members_response.py +4 -4
- huaweicloudsdkelb/v3/model/list_availability_zones_request.py +3 -3
- huaweicloudsdkelb/v3/model/list_availability_zones_response.py +38 -9
- huaweicloudsdkelb/v3/model/list_certificates_request.py +64 -6
- huaweicloudsdkelb/v3/model/list_flavors_request.py +21 -21
- huaweicloudsdkelb/v3/model/list_flavors_response.py +6 -6
- huaweicloudsdkelb/v3/model/list_health_monitors_request.py +15 -15
- huaweicloudsdkelb/v3/model/list_ip_groups_request.py +53 -24
- huaweicloudsdkelb/v3/model/list_ip_groups_response.py +6 -6
- huaweicloudsdkelb/v3/model/list_l7_policies_request.py +51 -51
- huaweicloudsdkelb/v3/model/list_l7_policies_response.py +6 -6
- huaweicloudsdkelb/v3/model/list_l7_rules_request.py +6 -6
- huaweicloudsdkelb/v3/model/list_l7_rules_response.py +6 -6
- huaweicloudsdkelb/v3/model/list_listeners_request.py +42 -42
- huaweicloudsdkelb/v3/model/list_listeners_response.py +6 -6
- huaweicloudsdkelb/v3/model/list_load_balancers_request.py +36 -36
- huaweicloudsdkelb/v3/model/list_logtanks_request.py +3 -3
- huaweicloudsdkelb/v3/model/list_master_slave_pools_request.py +39 -39
- huaweicloudsdkelb/v3/model/list_members_request.py +27 -27
- huaweicloudsdkelb/v3/model/list_pools_request.py +135 -48
- huaweicloudsdkelb/v3/model/list_security_policies_request.py +3 -3
- huaweicloudsdkelb/v3/model/listener.py +96 -96
- huaweicloudsdkelb/v3/model/listener_insert_headers.py +30 -30
- huaweicloudsdkelb/v3/model/listener_ip_group.py +9 -9
- huaweicloudsdkelb/v3/model/listener_member_info.py +3 -3
- huaweicloudsdkelb/v3/model/listener_quic_config.py +6 -6
- huaweicloudsdkelb/v3/model/listener_ref.py +3 -3
- huaweicloudsdkelb/v3/model/load_balancer.py +129 -129
- huaweicloudsdkelb/v3/model/load_balancer_ref.py +3 -3
- huaweicloudsdkelb/v3/model/load_balancer_status.py +3 -3
- huaweicloudsdkelb/v3/model/load_balancer_status_policy.py +3 -3
- huaweicloudsdkelb/v3/model/load_balancer_status_pool.py +3 -3
- huaweicloudsdkelb/v3/model/logtank.py +3 -3
- huaweicloudsdkelb/v3/model/master_slave_health_monitor.py +12 -12
- huaweicloudsdkelb/v3/model/master_slave_member.py +18 -18
- huaweicloudsdkelb/v3/model/master_slave_pool.py +42 -42
- huaweicloudsdkelb/v3/model/member.py +46 -191
- huaweicloudsdkelb/v3/model/member_info.py +656 -0
- huaweicloudsdkelb/v3/model/member_ref.py +3 -3
- huaweicloudsdkelb/v3/model/member_status.py +6 -6
- huaweicloudsdkelb/v3/model/page_info.py +9 -9
- huaweicloudsdkelb/v3/model/pool.py +146 -63
- huaweicloudsdkelb/v3/model/pool_health.py +115 -0
- huaweicloudsdkelb/v3/model/pool_ref.py +3 -3
- huaweicloudsdkelb/v3/model/prepaid_create_option.py +12 -12
- huaweicloudsdkelb/v3/model/public_ip_info.py +9 -9
- huaweicloudsdkelb/v3/model/quota.py +21 -21
- huaweicloudsdkelb/v3/model/quota_info.py +3 -3
- huaweicloudsdkelb/v3/model/redirect_pools_config.py +144 -0
- huaweicloudsdkelb/v3/model/redirect_pools_extend_config.py +81 -6
- huaweicloudsdkelb/v3/model/redirect_pools_sticky_session_config.py +144 -0
- huaweicloudsdkelb/v3/model/redirect_url_config.py +83 -27
- huaweicloudsdkelb/v3/model/remove_header_config.py +114 -0
- huaweicloudsdkelb/v3/model/remove_headers_config.py +114 -0
- huaweicloudsdkelb/v3/model/rewrite_url_config.py +9 -9
- huaweicloudsdkelb/v3/model/rule_condition.py +6 -6
- huaweicloudsdkelb/v3/model/rule_ref.py +3 -3
- huaweicloudsdkelb/v3/model/session_persistence.py +9 -9
- huaweicloudsdkelb/v3/model/show_certificate_private_key_echo_request.py +84 -0
- huaweicloudsdkelb/v3/model/show_certificate_private_key_echo_response.py +145 -0
- huaweicloudsdkelb/v3/model/show_flavor_request.py +3 -3
- huaweicloudsdkelb/v3/model/show_flavor_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_ip_group_request.py +3 -3
- huaweicloudsdkelb/v3/model/show_ip_group_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_l7_policy_request.py +3 -3
- huaweicloudsdkelb/v3/model/show_l7_policy_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_l7_rule_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_listener_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_load_balancer_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_load_balancer_status_response.py +3 -3
- huaweicloudsdkelb/v3/model/show_master_slave_pool_request.py +3 -3
- huaweicloudsdkelb/v3/model/show_member_request.py +3 -3
- huaweicloudsdkelb/v3/model/show_pool_request.py +3 -3
- huaweicloudsdkelb/v3/model/slow_start.py +6 -6
- huaweicloudsdkelb/v3/model/tag.py +6 -6
- huaweicloudsdkelb/v3/model/traffic_limit_config.py +173 -0
- huaweicloudsdkelb/v3/model/upadate_ip_group_ip_option.py +6 -6
- huaweicloudsdkelb/v3/model/update_certificate_option.py +3 -3
- huaweicloudsdkelb/v3/model/update_fixted_response_config.py +87 -12
- huaweicloudsdkelb/v3/model/update_health_monitor_option.py +15 -15
- huaweicloudsdkelb/v3/model/update_insert_header_config.py +170 -0
- huaweicloudsdkelb/v3/model/update_insert_headers_config.py +114 -0
- huaweicloudsdkelb/v3/model/update_ip_group_option.py +9 -9
- huaweicloudsdkelb/v3/model/update_ip_group_request.py +3 -3
- huaweicloudsdkelb/v3/model/update_ip_group_response.py +3 -3
- huaweicloudsdkelb/v3/model/update_ip_list_option.py +9 -9
- huaweicloudsdkelb/v3/model/update_ip_list_request.py +3 -3
- huaweicloudsdkelb/v3/model/update_ip_list_response.py +3 -3
- huaweicloudsdkelb/v3/model/update_l7_policy_option.py +76 -22
- huaweicloudsdkelb/v3/model/update_l7_policy_request.py +3 -3
- huaweicloudsdkelb/v3/model/update_l7_policy_response.py +3 -3
- huaweicloudsdkelb/v3/model/update_l7_rule_option.py +18 -18
- huaweicloudsdkelb/v3/model/update_l7_rule_response.py +3 -3
- huaweicloudsdkelb/v3/model/update_listener_ip_group_option.py +9 -9
- huaweicloudsdkelb/v3/model/update_listener_option.py +66 -66
- huaweicloudsdkelb/v3/model/update_listener_quic_config_option.py +6 -6
- huaweicloudsdkelb/v3/model/update_listener_response.py +3 -3
- huaweicloudsdkelb/v3/model/update_load_balancer_option.py +48 -48
- huaweicloudsdkelb/v3/model/update_load_balancer_response.py +9 -9
- huaweicloudsdkelb/v3/model/update_loadbalancer_autoscaling_option.py +6 -6
- huaweicloudsdkelb/v3/model/update_member_option.py +12 -12
- huaweicloudsdkelb/v3/model/update_member_request.py +3 -3
- huaweicloudsdkelb/v3/model/update_pool_option.py +52 -27
- huaweicloudsdkelb/v3/model/update_pool_request.py +3 -3
- huaweicloudsdkelb/v3/model/update_pool_session_persistence_option.py +6 -6
- huaweicloudsdkelb/v3/model/update_redirect_pools_config.py +143 -0
- huaweicloudsdkelb/v3/model/update_redirect_pools_extend_config.py +84 -9
- huaweicloudsdkelb/v3/model/update_redirect_pools_sticky_session_config.py +144 -0
- huaweicloudsdkelb/v3/model/update_redirect_url_config.py +71 -21
- huaweicloudsdkelb/v3/model/update_remove_header_config.py +114 -0
- huaweicloudsdkelb/v3/model/update_remove_headers_config.py +114 -0
- huaweicloudsdkelb/v3/model/update_rewrite_url_config.py +173 -0
- huaweicloudsdkelb/v3/model/update_rule_condition.py +6 -6
- huaweicloudsdkelb/v3/model/update_traffic_limit_config.py +173 -0
- huaweicloudsdkelb/v3/region/elb_region.py +19 -1
- {huaweicloudsdkelb-3.1.85.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/METADATA +2 -2
- {huaweicloudsdkelb-3.1.85.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/RECORD +213 -184
- {huaweicloudsdkelb-3.1.85.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/WHEEL +1 -1
- {huaweicloudsdkelb-3.1.85.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/LICENSE +0 -0
- {huaweicloudsdkelb-3.1.85.dist-info → huaweicloudsdkelb-3.1.132.dist-info}/top_level.txt +0 -0
@@ -34,11 +34,11 @@ class ListL7PoliciesResponse(SdkResponse):
|
|
34
34
|
|
35
35
|
The model defined in huaweicloud sdk
|
36
36
|
|
37
|
-
:param request_id:
|
37
|
+
:param request_id: 参数解释:请求ID。 注:自动生成 。
|
38
38
|
:type request_id: str
|
39
39
|
:param page_info:
|
40
40
|
:type page_info: :class:`huaweicloudsdkelb.v3.PageInfo`
|
41
|
-
:param l7policies:
|
41
|
+
:param l7policies: 参数解释:转发策略对象列表。
|
42
42
|
:type l7policies: list[:class:`huaweicloudsdkelb.v3.L7Policy`]
|
43
43
|
"""
|
44
44
|
|
@@ -60,7 +60,7 @@ class ListL7PoliciesResponse(SdkResponse):
|
|
60
60
|
def request_id(self):
|
61
61
|
"""Gets the request_id of this ListL7PoliciesResponse.
|
62
62
|
|
63
|
-
|
63
|
+
参数解释:请求ID。 注:自动生成 。
|
64
64
|
|
65
65
|
:return: The request_id of this ListL7PoliciesResponse.
|
66
66
|
:rtype: str
|
@@ -71,7 +71,7 @@ class ListL7PoliciesResponse(SdkResponse):
|
|
71
71
|
def request_id(self, request_id):
|
72
72
|
"""Sets the request_id of this ListL7PoliciesResponse.
|
73
73
|
|
74
|
-
|
74
|
+
参数解释:请求ID。 注:自动生成 。
|
75
75
|
|
76
76
|
:param request_id: The request_id of this ListL7PoliciesResponse.
|
77
77
|
:type request_id: str
|
@@ -100,7 +100,7 @@ class ListL7PoliciesResponse(SdkResponse):
|
|
100
100
|
def l7policies(self):
|
101
101
|
"""Gets the l7policies of this ListL7PoliciesResponse.
|
102
102
|
|
103
|
-
|
103
|
+
参数解释:转发策略对象列表。
|
104
104
|
|
105
105
|
:return: The l7policies of this ListL7PoliciesResponse.
|
106
106
|
:rtype: list[:class:`huaweicloudsdkelb.v3.L7Policy`]
|
@@ -111,7 +111,7 @@ class ListL7PoliciesResponse(SdkResponse):
|
|
111
111
|
def l7policies(self, l7policies):
|
112
112
|
"""Sets the l7policies of this ListL7PoliciesResponse.
|
113
113
|
|
114
|
-
|
114
|
+
参数解释:转发策略对象列表。
|
115
115
|
|
116
116
|
:param l7policies: The l7policies of this ListL7PoliciesResponse.
|
117
117
|
:type l7policies: list[:class:`huaweicloudsdkelb.v3.L7Policy`]
|
@@ -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
|
@@ -69,7 +69,7 @@ class ListL7RulesRequest:
|
|
69
69
|
:type provisioning_status: list[str]
|
70
70
|
:param invert: 是否反向匹配。使用说明:固定为false。该字段能更新但不会生效。
|
71
71
|
:type invert: bool
|
72
|
-
:param admin_state_up:
|
72
|
+
:param admin_state_up: 转发规则的管理状态。 不支持该字段,请勿使用。
|
73
73
|
:type admin_state_up: bool
|
74
74
|
:param value: 匹配内容的值。 支持多值查询,查询条件格式:*value=xxx&value=xxx*。
|
75
75
|
:type value: list[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
|
@@ -304,7 +304,7 @@ class ListL7RulesRequest:
|
|
304
304
|
def admin_state_up(self):
|
305
305
|
"""Gets the admin_state_up of this ListL7RulesRequest.
|
306
306
|
|
307
|
-
|
307
|
+
转发规则的管理状态。 不支持该字段,请勿使用。
|
308
308
|
|
309
309
|
:return: The admin_state_up of this ListL7RulesRequest.
|
310
310
|
:rtype: bool
|
@@ -315,7 +315,7 @@ class ListL7RulesRequest:
|
|
315
315
|
def admin_state_up(self, admin_state_up):
|
316
316
|
"""Sets the admin_state_up of this ListL7RulesRequest.
|
317
317
|
|
318
|
-
|
318
|
+
转发规则的管理状态。 不支持该字段,请勿使用。
|
319
319
|
|
320
320
|
:param admin_state_up: The admin_state_up of this ListL7RulesRequest.
|
321
321
|
:type admin_state_up: bool
|
@@ -34,11 +34,11 @@ class ListL7RulesResponse(SdkResponse):
|
|
34
34
|
|
35
35
|
The model defined in huaweicloud sdk
|
36
36
|
|
37
|
-
:param request_id:
|
37
|
+
:param request_id: 参数解释:请求ID。 注:自动生成 。
|
38
38
|
:type request_id: str
|
39
39
|
:param page_info:
|
40
40
|
:type page_info: :class:`huaweicloudsdkelb.v3.PageInfo`
|
41
|
-
:param rules:
|
41
|
+
:param rules: 参数解释:规则对象列表。
|
42
42
|
:type rules: list[:class:`huaweicloudsdkelb.v3.L7Rule`]
|
43
43
|
"""
|
44
44
|
|
@@ -60,7 +60,7 @@ class ListL7RulesResponse(SdkResponse):
|
|
60
60
|
def request_id(self):
|
61
61
|
"""Gets the request_id of this ListL7RulesResponse.
|
62
62
|
|
63
|
-
|
63
|
+
参数解释:请求ID。 注:自动生成 。
|
64
64
|
|
65
65
|
:return: The request_id of this ListL7RulesResponse.
|
66
66
|
:rtype: str
|
@@ -71,7 +71,7 @@ class ListL7RulesResponse(SdkResponse):
|
|
71
71
|
def request_id(self, request_id):
|
72
72
|
"""Sets the request_id of this ListL7RulesResponse.
|
73
73
|
|
74
|
-
|
74
|
+
参数解释:请求ID。 注:自动生成 。
|
75
75
|
|
76
76
|
:param request_id: The request_id of this ListL7RulesResponse.
|
77
77
|
:type request_id: str
|
@@ -100,7 +100,7 @@ class ListL7RulesResponse(SdkResponse):
|
|
100
100
|
def rules(self):
|
101
101
|
"""Gets the rules of this ListL7RulesResponse.
|
102
102
|
|
103
|
-
|
103
|
+
参数解释:规则对象列表。
|
104
104
|
|
105
105
|
:return: The rules of this ListL7RulesResponse.
|
106
106
|
:rtype: list[:class:`huaweicloudsdkelb.v3.L7Rule`]
|
@@ -111,7 +111,7 @@ class ListL7RulesResponse(SdkResponse):
|
|
111
111
|
def rules(self, rules):
|
112
112
|
"""Sets the rules of this ListL7RulesResponse.
|
113
113
|
|
114
|
-
|
114
|
+
参数解释:规则对象列表。
|
115
115
|
|
116
116
|
:param rules: The rules of this ListL7RulesResponse.
|
117
117
|
:type rules: list[:class:`huaweicloudsdkelb.v3.L7Rule`]
|
@@ -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。
|
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、HTTP、HTTPS。](tag:hcso_dt) [取值:TCP、UDP、IP、HTTP、HTTPS。IP为网关型LB上的监听器独有的协议。](tag:hws_eu) 支持多值查询,查询条件格式:*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,11 +99,11 @@ 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:
|
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]
|
106
|
-
:param default_pool_id:
|
106
|
+
:param default_pool_id: 监听器的默认后端服务器组ID。当请求没有匹配的转发策略时,转发到默认后端服务器上处理。 支持多值查询,查询条件格式:*default_pool_id=xxx&default_pool_id=xxx*。
|
107
107
|
:type default_pool_id: list[str]
|
108
108
|
:param id: 监听器ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
|
109
109
|
:type id: list[str]
|
@@ -115,27 +115,27 @@ class ListListenersRequest:
|
|
115
115
|
:type loadbalancer_id: list[str]
|
116
116
|
:param tls_ciphers_policy: 监听器使用的安全策略。 支持多值查询,查询条件格式:*tls_ciphers_policy=xxx&tls_ciphers_policy=xxx*。
|
117
117
|
:type tls_ciphers_policy: list[str]
|
118
|
-
:param member_address:
|
118
|
+
:param member_address: 后端服务器的IP地址。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_address=xxx&member_address=xxx*。
|
119
119
|
:type member_address: list[str]
|
120
|
-
:param member_device_id:
|
120
|
+
:param member_device_id: 后端服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
|
121
121
|
:type member_device_id: list[str]
|
122
122
|
: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)
|
123
123
|
:type enterprise_project_id: list[str]
|
124
124
|
:param enable_member_retry: 是否开启后端服务器的重试。 取值:true 开启重试,false 不开启重试。
|
125
125
|
:type enable_member_retry: bool
|
126
|
-
:param member_timeout: 等待后端服务器响应超时时间。请求转发后端服务器后,在等待超时member_timeout时长没有响应,负载均衡将终止等待,并返回 HTTP504错误码。 取值:1-
|
126
|
+
:param member_timeout: 等待后端服务器响应超时时间。请求转发后端服务器后,在等待超时member_timeout时长没有响应,负载均衡将终止等待,并返回 HTTP504错误码。 取值:1-3600s。 支持多值查询,查询条件格式:*member_timeout=xxx&member_timeout=xxx*。
|
127
127
|
:type member_timeout: list[int]
|
128
|
-
:param client_timeout: 等待客户端请求超时时间,包括两种情况: - 读取整个客户端请求头的超时时长:如果客户端未在超时时长内发送完整个请求头,则请求将被中断 - 两个连续body体的数据包到达LB的时间间隔,超出client_timeout将会断开连接。 取值:1-
|
128
|
+
:param client_timeout: 等待客户端请求超时时间,包括两种情况: - 读取整个客户端请求头的超时时长:如果客户端未在超时时长内发送完整个请求头,则请求将被中断 - 两个连续body体的数据包到达LB的时间间隔,超出client_timeout将会断开连接。 取值:1-3600s。 支持多值查询,查询条件格式:*client_timeout=xxx&client_timeout=xxx*。
|
129
129
|
:type client_timeout: list[int]
|
130
|
-
:param keepalive_timeout: 客户端连接空闲超时时间。在超过keepalive_timeout时长一直没有请求, 负载均衡会暂时中断当前连接,直到下一次请求时重新建立新的连接。 取值: - TCP
|
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。仅
|
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
|
-
:param member_instance_id:
|
138
|
+
:param member_instance_id: 后端服务器ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_instance_id=xxx&member_instance_id=xxx*。
|
139
139
|
:type member_instance_id: list[str]
|
140
140
|
:param protection_status: 修改保护状态, 取值: - nonProtection: 不保护,默认值为nonProtection - consoleProtection: 控制台修改保护
|
141
141
|
:type protection_status: 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。
|
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、HTTP、HTTPS。](tag:hcso_dt) [取值:TCP、UDP、IP、HTTP、HTTPS。IP为网关型LB上的监听器独有的协议。](tag:hws_eu) 支持多值查询,查询条件格式:*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。
|
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、HTTP、HTTPS。](tag:hcso_dt) [取值:TCP、UDP、IP、HTTP、HTTPS。IP为网关型LB上的监听器独有的协议。](tag:hws_eu) 支持多值查询,查询条件格式:*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
|
-
|
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
|
-
|
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
|
@@ -454,7 +454,7 @@ class ListListenersRequest:
|
|
454
454
|
def default_pool_id(self):
|
455
455
|
"""Gets the default_pool_id of this ListListenersRequest.
|
456
456
|
|
457
|
-
|
457
|
+
监听器的默认后端服务器组ID。当请求没有匹配的转发策略时,转发到默认后端服务器上处理。 支持多值查询,查询条件格式:*default_pool_id=xxx&default_pool_id=xxx*。
|
458
458
|
|
459
459
|
:return: The default_pool_id of this ListListenersRequest.
|
460
460
|
:rtype: list[str]
|
@@ -465,7 +465,7 @@ class ListListenersRequest:
|
|
465
465
|
def default_pool_id(self, default_pool_id):
|
466
466
|
"""Sets the default_pool_id of this ListListenersRequest.
|
467
467
|
|
468
|
-
|
468
|
+
监听器的默认后端服务器组ID。当请求没有匹配的转发策略时,转发到默认后端服务器上处理。 支持多值查询,查询条件格式:*default_pool_id=xxx&default_pool_id=xxx*。
|
469
469
|
|
470
470
|
:param default_pool_id: The default_pool_id of this ListListenersRequest.
|
471
471
|
:type default_pool_id: list[str]
|
@@ -586,7 +586,7 @@ class ListListenersRequest:
|
|
586
586
|
def member_address(self):
|
587
587
|
"""Gets the member_address of this ListListenersRequest.
|
588
588
|
|
589
|
-
|
589
|
+
后端服务器的IP地址。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_address=xxx&member_address=xxx*。
|
590
590
|
|
591
591
|
:return: The member_address of this ListListenersRequest.
|
592
592
|
:rtype: list[str]
|
@@ -597,7 +597,7 @@ class ListListenersRequest:
|
|
597
597
|
def member_address(self, member_address):
|
598
598
|
"""Sets the member_address of this ListListenersRequest.
|
599
599
|
|
600
|
-
|
600
|
+
后端服务器的IP地址。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_address=xxx&member_address=xxx*。
|
601
601
|
|
602
602
|
:param member_address: The member_address of this ListListenersRequest.
|
603
603
|
:type member_address: list[str]
|
@@ -608,7 +608,7 @@ class ListListenersRequest:
|
|
608
608
|
def member_device_id(self):
|
609
609
|
"""Gets the member_device_id of this ListListenersRequest.
|
610
610
|
|
611
|
-
|
611
|
+
后端服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
|
612
612
|
|
613
613
|
:return: The member_device_id of this ListListenersRequest.
|
614
614
|
:rtype: list[str]
|
@@ -619,7 +619,7 @@ class ListListenersRequest:
|
|
619
619
|
def member_device_id(self, member_device_id):
|
620
620
|
"""Sets the member_device_id of this ListListenersRequest.
|
621
621
|
|
622
|
-
|
622
|
+
后端服务器对应的弹性云服务器的ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_device_id=xxx&member_device_id=xxx*。
|
623
623
|
|
624
624
|
:param member_device_id: The member_device_id of this ListListenersRequest.
|
625
625
|
:type member_device_id: list[str]
|
@@ -674,7 +674,7 @@ class ListListenersRequest:
|
|
674
674
|
def member_timeout(self):
|
675
675
|
"""Gets the member_timeout of this ListListenersRequest.
|
676
676
|
|
677
|
-
等待后端服务器响应超时时间。请求转发后端服务器后,在等待超时member_timeout时长没有响应,负载均衡将终止等待,并返回 HTTP504错误码。 取值:1-
|
677
|
+
等待后端服务器响应超时时间。请求转发后端服务器后,在等待超时member_timeout时长没有响应,负载均衡将终止等待,并返回 HTTP504错误码。 取值:1-3600s。 支持多值查询,查询条件格式:*member_timeout=xxx&member_timeout=xxx*。
|
678
678
|
|
679
679
|
:return: The member_timeout of this ListListenersRequest.
|
680
680
|
:rtype: list[int]
|
@@ -685,7 +685,7 @@ class ListListenersRequest:
|
|
685
685
|
def member_timeout(self, member_timeout):
|
686
686
|
"""Sets the member_timeout of this ListListenersRequest.
|
687
687
|
|
688
|
-
等待后端服务器响应超时时间。请求转发后端服务器后,在等待超时member_timeout时长没有响应,负载均衡将终止等待,并返回 HTTP504错误码。 取值:1-
|
688
|
+
等待后端服务器响应超时时间。请求转发后端服务器后,在等待超时member_timeout时长没有响应,负载均衡将终止等待,并返回 HTTP504错误码。 取值:1-3600s。 支持多值查询,查询条件格式:*member_timeout=xxx&member_timeout=xxx*。
|
689
689
|
|
690
690
|
:param member_timeout: The member_timeout of this ListListenersRequest.
|
691
691
|
:type member_timeout: list[int]
|
@@ -696,7 +696,7 @@ class ListListenersRequest:
|
|
696
696
|
def client_timeout(self):
|
697
697
|
"""Gets the client_timeout of this ListListenersRequest.
|
698
698
|
|
699
|
-
等待客户端请求超时时间,包括两种情况: - 读取整个客户端请求头的超时时长:如果客户端未在超时时长内发送完整个请求头,则请求将被中断 - 两个连续body体的数据包到达LB的时间间隔,超出client_timeout将会断开连接。 取值:1-
|
699
|
+
等待客户端请求超时时间,包括两种情况: - 读取整个客户端请求头的超时时长:如果客户端未在超时时长内发送完整个请求头,则请求将被中断 - 两个连续body体的数据包到达LB的时间间隔,超出client_timeout将会断开连接。 取值:1-3600s。 支持多值查询,查询条件格式:*client_timeout=xxx&client_timeout=xxx*。
|
700
700
|
|
701
701
|
:return: The client_timeout of this ListListenersRequest.
|
702
702
|
:rtype: list[int]
|
@@ -707,7 +707,7 @@ class ListListenersRequest:
|
|
707
707
|
def client_timeout(self, client_timeout):
|
708
708
|
"""Sets the client_timeout of this ListListenersRequest.
|
709
709
|
|
710
|
-
等待客户端请求超时时间,包括两种情况: - 读取整个客户端请求头的超时时长:如果客户端未在超时时长内发送完整个请求头,则请求将被中断 - 两个连续body体的数据包到达LB的时间间隔,超出client_timeout将会断开连接。 取值:1-
|
710
|
+
等待客户端请求超时时间,包括两种情况: - 读取整个客户端请求头的超时时长:如果客户端未在超时时长内发送完整个请求头,则请求将被中断 - 两个连续body体的数据包到达LB的时间间隔,超出client_timeout将会断开连接。 取值:1-3600s。 支持多值查询,查询条件格式:*client_timeout=xxx&client_timeout=xxx*。
|
711
711
|
|
712
712
|
:param client_timeout: The client_timeout of this ListListenersRequest.
|
713
713
|
:type client_timeout: list[int]
|
@@ -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
|
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
|
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。仅
|
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。仅
|
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
|
@@ -806,7 +806,7 @@ class ListListenersRequest:
|
|
806
806
|
def member_instance_id(self):
|
807
807
|
"""Gets the member_instance_id of this ListListenersRequest.
|
808
808
|
|
809
|
-
|
809
|
+
后端服务器ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_instance_id=xxx&member_instance_id=xxx*。
|
810
810
|
|
811
811
|
:return: The member_instance_id of this ListListenersRequest.
|
812
812
|
:rtype: list[str]
|
@@ -817,7 +817,7 @@ class ListListenersRequest:
|
|
817
817
|
def member_instance_id(self, member_instance_id):
|
818
818
|
"""Sets the member_instance_id of this ListListenersRequest.
|
819
819
|
|
820
|
-
|
820
|
+
后端服务器ID。仅用于查询条件,不作为响应参数字段。 支持多值查询,查询条件格式:*member_instance_id=xxx&member_instance_id=xxx*。
|
821
821
|
|
822
822
|
:param member_instance_id: The member_instance_id of this ListListenersRequest.
|
823
823
|
:type member_instance_id: list[str]
|
@@ -34,11 +34,11 @@ class ListListenersResponse(SdkResponse):
|
|
34
34
|
|
35
35
|
The model defined in huaweicloud sdk
|
36
36
|
|
37
|
-
:param request_id:
|
37
|
+
:param request_id: 参数解释:请求ID。 注:自动生成 。
|
38
38
|
:type request_id: str
|
39
39
|
:param page_info:
|
40
40
|
:type page_info: :class:`huaweicloudsdkelb.v3.PageInfo`
|
41
|
-
:param listeners: Listener的列表。
|
41
|
+
:param listeners: 参数解释:Listener的列表。
|
42
42
|
:type listeners: list[:class:`huaweicloudsdkelb.v3.Listener`]
|
43
43
|
"""
|
44
44
|
|
@@ -60,7 +60,7 @@ class ListListenersResponse(SdkResponse):
|
|
60
60
|
def request_id(self):
|
61
61
|
"""Gets the request_id of this ListListenersResponse.
|
62
62
|
|
63
|
-
|
63
|
+
参数解释:请求ID。 注:自动生成 。
|
64
64
|
|
65
65
|
:return: The request_id of this ListListenersResponse.
|
66
66
|
:rtype: str
|
@@ -71,7 +71,7 @@ class ListListenersResponse(SdkResponse):
|
|
71
71
|
def request_id(self, request_id):
|
72
72
|
"""Sets the request_id of this ListListenersResponse.
|
73
73
|
|
74
|
-
|
74
|
+
参数解释:请求ID。 注:自动生成 。
|
75
75
|
|
76
76
|
:param request_id: The request_id of this ListListenersResponse.
|
77
77
|
:type request_id: str
|
@@ -100,7 +100,7 @@ class ListListenersResponse(SdkResponse):
|
|
100
100
|
def listeners(self):
|
101
101
|
"""Gets the listeners of this ListListenersResponse.
|
102
102
|
|
103
|
-
Listener的列表。
|
103
|
+
参数解释:Listener的列表。
|
104
104
|
|
105
105
|
:return: The listeners of this ListListenersResponse.
|
106
106
|
:rtype: list[:class:`huaweicloudsdkelb.v3.Listener`]
|
@@ -111,7 +111,7 @@ class ListListenersResponse(SdkResponse):
|
|
111
111
|
def listeners(self, listeners):
|
112
112
|
"""Sets the listeners of this ListListenersResponse.
|
113
113
|
|
114
|
-
Listener的列表。
|
114
|
+
参数解释:Listener的列表。
|
115
115
|
|
116
116
|
:param listeners: The listeners of this ListListenersResponse.
|
117
117
|
:type listeners: list[:class:`huaweicloudsdkelb.v3.Listener`]
|