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
@@ -25,7 +25,9 @@ class ListCertificatesRequest:
|
|
25
25
|
'description': 'list[str]',
|
26
26
|
'admin_state_up': 'bool',
|
27
27
|
'domain': 'list[str]',
|
28
|
-
'type': 'list[str]'
|
28
|
+
'type': 'list[str]',
|
29
|
+
'common_name': 'list[str]',
|
30
|
+
'fingerprint': 'list[str]'
|
29
31
|
}
|
30
32
|
|
31
33
|
attribute_map = {
|
@@ -37,17 +39,19 @@ class ListCertificatesRequest:
|
|
37
39
|
'description': 'description',
|
38
40
|
'admin_state_up': 'admin_state_up',
|
39
41
|
'domain': 'domain',
|
40
|
-
'type': 'type'
|
42
|
+
'type': 'type',
|
43
|
+
'common_name': 'common_name',
|
44
|
+
'fingerprint': 'fingerprint'
|
41
45
|
}
|
42
46
|
|
43
|
-
def __init__(self, marker=None, limit=None, page_reverse=None, id=None, name=None, description=None, admin_state_up=None, domain=None, type=None):
|
47
|
+
def __init__(self, marker=None, limit=None, page_reverse=None, id=None, name=None, description=None, admin_state_up=None, domain=None, type=None, common_name=None, fingerprint=None):
|
44
48
|
"""ListCertificatesRequest
|
45
49
|
|
46
50
|
The model defined in huaweicloud sdk
|
47
51
|
|
48
52
|
:param marker: 上一页最后一条记录的ID。 使用说明: - 必须与limit一起使用。 - 不指定时表示查询第一页。 - 该字段不允许为空或无效的ID。
|
49
53
|
:type marker: str
|
50
|
-
:param limit:
|
54
|
+
:param limit: 参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
51
55
|
:type limit: int
|
52
56
|
:param page_reverse: 是否反向查询。 取值: - true:查询上一页。 - false:查询下一页,默认。 使用说明: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。
|
53
57
|
:type page_reverse: bool
|
@@ -63,6 +67,10 @@ class ListCertificatesRequest:
|
|
63
67
|
:type domain: list[str]
|
64
68
|
:param type: 证书的类型。分为服务器证书(server)和CA证书(client)。 支持多值查询,查询条件格式:type=xxx&type=xxx。
|
65
69
|
:type type: list[str]
|
70
|
+
:param common_name: 证书的主域名。 支持多值查询,查询条件格式:common_name=xxx&common_name=xxx。
|
71
|
+
:type common_name: list[str]
|
72
|
+
:param fingerprint: 证书的指纹。 支持多值查询,查询条件格式:fingerprint=xxx&fingerprint=xxx。
|
73
|
+
:type fingerprint: list[str]
|
66
74
|
"""
|
67
75
|
|
68
76
|
|
@@ -76,6 +84,8 @@ class ListCertificatesRequest:
|
|
76
84
|
self._admin_state_up = None
|
77
85
|
self._domain = None
|
78
86
|
self._type = None
|
87
|
+
self._common_name = None
|
88
|
+
self._fingerprint = None
|
79
89
|
self.discriminator = None
|
80
90
|
|
81
91
|
if marker is not None:
|
@@ -96,6 +106,10 @@ class ListCertificatesRequest:
|
|
96
106
|
self.domain = domain
|
97
107
|
if type is not None:
|
98
108
|
self.type = type
|
109
|
+
if common_name is not None:
|
110
|
+
self.common_name = common_name
|
111
|
+
if fingerprint is not None:
|
112
|
+
self.fingerprint = fingerprint
|
99
113
|
|
100
114
|
@property
|
101
115
|
def marker(self):
|
@@ -123,7 +137,7 @@ class ListCertificatesRequest:
|
|
123
137
|
def limit(self):
|
124
138
|
"""Gets the limit of this ListCertificatesRequest.
|
125
139
|
|
126
|
-
|
140
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
127
141
|
|
128
142
|
:return: The limit of this ListCertificatesRequest.
|
129
143
|
:rtype: int
|
@@ -134,7 +148,7 @@ class ListCertificatesRequest:
|
|
134
148
|
def limit(self, limit):
|
135
149
|
"""Sets the limit of this ListCertificatesRequest.
|
136
150
|
|
137
|
-
|
151
|
+
参数解释:每页返回的个数。 取值范围:0-2000 默认取值:2000
|
138
152
|
|
139
153
|
:param limit: The limit of this ListCertificatesRequest.
|
140
154
|
:type limit: int
|
@@ -295,6 +309,50 @@ class ListCertificatesRequest:
|
|
295
309
|
"""
|
296
310
|
self._type = type
|
297
311
|
|
312
|
+
@property
|
313
|
+
def common_name(self):
|
314
|
+
"""Gets the common_name of this ListCertificatesRequest.
|
315
|
+
|
316
|
+
证书的主域名。 支持多值查询,查询条件格式:common_name=xxx&common_name=xxx。
|
317
|
+
|
318
|
+
:return: The common_name of this ListCertificatesRequest.
|
319
|
+
:rtype: list[str]
|
320
|
+
"""
|
321
|
+
return self._common_name
|
322
|
+
|
323
|
+
@common_name.setter
|
324
|
+
def common_name(self, common_name):
|
325
|
+
"""Sets the common_name of this ListCertificatesRequest.
|
326
|
+
|
327
|
+
证书的主域名。 支持多值查询,查询条件格式:common_name=xxx&common_name=xxx。
|
328
|
+
|
329
|
+
:param common_name: The common_name of this ListCertificatesRequest.
|
330
|
+
:type common_name: list[str]
|
331
|
+
"""
|
332
|
+
self._common_name = common_name
|
333
|
+
|
334
|
+
@property
|
335
|
+
def fingerprint(self):
|
336
|
+
"""Gets the fingerprint of this ListCertificatesRequest.
|
337
|
+
|
338
|
+
证书的指纹。 支持多值查询,查询条件格式:fingerprint=xxx&fingerprint=xxx。
|
339
|
+
|
340
|
+
:return: The fingerprint of this ListCertificatesRequest.
|
341
|
+
:rtype: list[str]
|
342
|
+
"""
|
343
|
+
return self._fingerprint
|
344
|
+
|
345
|
+
@fingerprint.setter
|
346
|
+
def fingerprint(self, fingerprint):
|
347
|
+
"""Sets the fingerprint of this ListCertificatesRequest.
|
348
|
+
|
349
|
+
证书的指纹。 支持多值查询,查询条件格式:fingerprint=xxx&fingerprint=xxx。
|
350
|
+
|
351
|
+
:param fingerprint: The fingerprint of this ListCertificatesRequest.
|
352
|
+
:type fingerprint: list[str]
|
353
|
+
"""
|
354
|
+
self._fingerprint = fingerprint
|
355
|
+
|
298
356
|
def to_dict(self):
|
299
357
|
"""Returns the model properties as a dict"""
|
300
358
|
result = {}
|
@@ -41,19 +41,19 @@ class ListFlavorsRequest:
|
|
41
41
|
|
42
42
|
The model defined in huaweicloud sdk
|
43
43
|
|
44
|
-
:param marker:
|
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:
|
48
|
+
:param page_reverse: 参数解释:是否反向查询。 约束限制: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。 取值范围: - true:查询上一页。 - false:查询下一页,默认。
|
49
49
|
:type page_reverse: bool
|
50
|
-
:param id:
|
50
|
+
:param id: 参数解释:规格ID。 支持多值查询,查询条件格式:*id=xxx&id=xxx*。
|
51
51
|
:type id: list[str]
|
52
|
-
:param name:
|
52
|
+
:param name: 参数解释:规格名称。 支持多值查询,查询条件格式:*name=xxx&name=xxx*。
|
53
53
|
:type name: list[str]
|
54
|
-
:param type:
|
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:
|
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
|
-
|
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
|
-
|
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
|
-
|
134
|
+
参数解释:是否反向查询。 约束限制: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。 取值范围: - true:查询上一页。 - false:查询下一页,默认。
|
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
|
-
|
145
|
+
参数解释:是否反向查询。 约束限制: - 必须与limit一起使用。 - 当page_reverse=true时,若要查询上一页,marker取值为当前页返回值的previous_marker。 取值范围: - true:查询上一页。 - false:查询下一页,默认。
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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:
|
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
|
-
|
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
|
-
|
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
|
@@ -79,19 +79,19 @@ class ListHealthMonitorsRequest:
|
|
79
79
|
:type delay: list[int]
|
80
80
|
:param max_retries: 健康检查连续成功多少次后,将后端服务器的健康检查状态由OFFLINE判定为ONLINE。取值范围:1-10。 支持多值查询,查询条件格式:*******max_retries=xxx&max_retries=xxx*******。
|
81
81
|
:type max_retries: list[int]
|
82
|
-
:param admin_state_up:
|
82
|
+
:param admin_state_up: 参数解释:健康检查的管理状态。 取值范围: - true:表示开启健康检查。 - false表示关闭健康检查。
|
83
83
|
:type admin_state_up: bool
|
84
84
|
:param max_retries_down: 健康检查连续失败多少次后,将后端服务器的健康检查状态由ONLINE判定为OFFLINE。取值范围:1-10。 支持多值查询,查询条件格式:******max_retries_down=xxx&max_retries_down=xxx******。
|
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
|
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
|
@@ -355,7 +355,7 @@ class ListHealthMonitorsRequest:
|
|
355
355
|
def admin_state_up(self):
|
356
356
|
"""Gets the admin_state_up of this ListHealthMonitorsRequest.
|
357
357
|
|
358
|
-
|
358
|
+
参数解释:健康检查的管理状态。 取值范围: - true:表示开启健康检查。 - false表示关闭健康检查。
|
359
359
|
|
360
360
|
:return: The admin_state_up of this ListHealthMonitorsRequest.
|
361
361
|
:rtype: bool
|
@@ -366,7 +366,7 @@ class ListHealthMonitorsRequest:
|
|
366
366
|
def admin_state_up(self, admin_state_up):
|
367
367
|
"""Sets the admin_state_up of this ListHealthMonitorsRequest.
|
368
368
|
|
369
|
-
|
369
|
+
参数解释:健康检查的管理状态。 取值范围: - true:表示开启健康检查。 - false表示关闭健康检查。
|
370
370
|
|
371
371
|
:param admin_state_up: The admin_state_up of this ListHealthMonitorsRequest.
|
372
372
|
:type admin_state_up: bool
|
@@ -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
|
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
|
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]
|