assisted-service-client 2.47.0.post54__py3-none-any.whl → 2.47.0.post114__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.
- assisted_service_client/api/installer_api.py +2 -2
- assisted_service_client/models/feature_support_level_id.py +1 -0
- assisted_service_client/models/infra_env.py +29 -1
- assisted_service_client/models/infra_env_create_params.py +29 -1
- assisted_service_client/models/infra_env_update_params.py +29 -1
- {assisted_service_client-2.47.0.post54.dist-info → assisted_service_client-2.47.0.post114.dist-info}/METADATA +1 -1
- {assisted_service_client-2.47.0.post54.dist-info → assisted_service_client-2.47.0.post114.dist-info}/RECORD +9 -9
- {assisted_service_client-2.47.0.post54.dist-info → assisted_service_client-2.47.0.post114.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.47.0.post54.dist-info → assisted_service_client-2.47.0.post114.dist-info}/top_level.txt +0 -0
|
@@ -6992,8 +6992,8 @@ class InstallerApi(object):
|
|
|
6992
6992
|
raise ValueError("Missing the required parameter `logs_type` when calling `v2_upload_logs`") # noqa: E501
|
|
6993
6993
|
|
|
6994
6994
|
if ('upfile' in params and
|
|
6995
|
-
len(params['upfile']) >
|
|
6996
|
-
raise ValueError("Invalid value for parameter `upfile` when calling `v2_upload_logs`, length must be less than or equal to `
|
|
6995
|
+
len(params['upfile']) > 262144000):
|
|
6996
|
+
raise ValueError("Invalid value for parameter `upfile` when calling `v2_upload_logs`, length must be less than or equal to `262144000`") # noqa: E501
|
|
6997
6997
|
collection_formats = {}
|
|
6998
6998
|
|
|
6999
6999
|
path_params = {}
|
|
@@ -44,6 +44,7 @@ class InfraEnv(object):
|
|
|
44
44
|
'ssh_authorized_key': 'str',
|
|
45
45
|
'pull_secret_set': 'bool',
|
|
46
46
|
'static_network_config': 'str',
|
|
47
|
+
'rendezvous_ip': 'str',
|
|
47
48
|
'type': 'ImageType',
|
|
48
49
|
'ignition_config_override': 'str',
|
|
49
50
|
'cluster_id': 'str',
|
|
@@ -72,6 +73,7 @@ class InfraEnv(object):
|
|
|
72
73
|
'ssh_authorized_key': 'ssh_authorized_key',
|
|
73
74
|
'pull_secret_set': 'pull_secret_set',
|
|
74
75
|
'static_network_config': 'static_network_config',
|
|
76
|
+
'rendezvous_ip': 'rendezvous_ip',
|
|
75
77
|
'type': 'type',
|
|
76
78
|
'ignition_config_override': 'ignition_config_override',
|
|
77
79
|
'cluster_id': 'cluster_id',
|
|
@@ -86,7 +88,7 @@ class InfraEnv(object):
|
|
|
86
88
|
'additional_trust_bundle': 'additional_trust_bundle'
|
|
87
89
|
}
|
|
88
90
|
|
|
89
|
-
def __init__(self, kind=None, id=None, href=None, openshift_version=None, name=None, user_name=None, org_id=None, email_domain=None, proxy=None, additional_ntp_sources=None, ssh_authorized_key=None, pull_secret_set=None, static_network_config=None, type=None, ignition_config_override=None, cluster_id=None, size_bytes=None, download_url=None, generator_version=None, updated_at=None, created_at=None, expires_at=None, cpu_architecture='x86_64', kernel_arguments=None, additional_trust_bundle=None): # noqa: E501
|
|
91
|
+
def __init__(self, kind=None, id=None, href=None, openshift_version=None, name=None, user_name=None, org_id=None, email_domain=None, proxy=None, additional_ntp_sources=None, ssh_authorized_key=None, pull_secret_set=None, static_network_config=None, rendezvous_ip=None, type=None, ignition_config_override=None, cluster_id=None, size_bytes=None, download_url=None, generator_version=None, updated_at=None, created_at=None, expires_at=None, cpu_architecture='x86_64', kernel_arguments=None, additional_trust_bundle=None): # noqa: E501
|
|
90
92
|
"""InfraEnv - a model defined in Swagger""" # noqa: E501
|
|
91
93
|
|
|
92
94
|
self._kind = None
|
|
@@ -102,6 +104,7 @@ class InfraEnv(object):
|
|
|
102
104
|
self._ssh_authorized_key = None
|
|
103
105
|
self._pull_secret_set = None
|
|
104
106
|
self._static_network_config = None
|
|
107
|
+
self._rendezvous_ip = None
|
|
105
108
|
self._type = None
|
|
106
109
|
self._ignition_config_override = None
|
|
107
110
|
self._cluster_id = None
|
|
@@ -138,6 +141,8 @@ class InfraEnv(object):
|
|
|
138
141
|
self.pull_secret_set = pull_secret_set
|
|
139
142
|
if static_network_config is not None:
|
|
140
143
|
self.static_network_config = static_network_config
|
|
144
|
+
if rendezvous_ip is not None:
|
|
145
|
+
self.rendezvous_ip = rendezvous_ip
|
|
141
146
|
self.type = type
|
|
142
147
|
if ignition_config_override is not None:
|
|
143
148
|
self.ignition_config_override = ignition_config_override
|
|
@@ -465,6 +470,29 @@ class InfraEnv(object):
|
|
|
465
470
|
|
|
466
471
|
self._static_network_config = static_network_config
|
|
467
472
|
|
|
473
|
+
@property
|
|
474
|
+
def rendezvous_ip(self):
|
|
475
|
+
"""Gets the rendezvous_ip of this InfraEnv. # noqa: E501
|
|
476
|
+
|
|
477
|
+
The IP address of the host that will act as the rendezvous (bootstrap) node for agent-based installations. This is optional for disconnected-iso image type and specifies which host will run the assisted service during the bootstrap phase. All other hosts will connect to this IP to coordinate the installation. # noqa: E501
|
|
478
|
+
|
|
479
|
+
:return: The rendezvous_ip of this InfraEnv. # noqa: E501
|
|
480
|
+
:rtype: str
|
|
481
|
+
"""
|
|
482
|
+
return self._rendezvous_ip
|
|
483
|
+
|
|
484
|
+
@rendezvous_ip.setter
|
|
485
|
+
def rendezvous_ip(self, rendezvous_ip):
|
|
486
|
+
"""Sets the rendezvous_ip of this InfraEnv.
|
|
487
|
+
|
|
488
|
+
The IP address of the host that will act as the rendezvous (bootstrap) node for agent-based installations. This is optional for disconnected-iso image type and specifies which host will run the assisted service during the bootstrap phase. All other hosts will connect to this IP to coordinate the installation. # noqa: E501
|
|
489
|
+
|
|
490
|
+
:param rendezvous_ip: The rendezvous_ip of this InfraEnv. # noqa: E501
|
|
491
|
+
:type: str
|
|
492
|
+
"""
|
|
493
|
+
|
|
494
|
+
self._rendezvous_ip = rendezvous_ip
|
|
495
|
+
|
|
468
496
|
@property
|
|
469
497
|
def type(self):
|
|
470
498
|
"""Gets the type of this InfraEnv. # noqa: E501
|
|
@@ -37,6 +37,7 @@ class InfraEnvCreateParams(object):
|
|
|
37
37
|
'ssh_authorized_key': 'str',
|
|
38
38
|
'pull_secret': 'str',
|
|
39
39
|
'static_network_config': 'list[HostStaticNetworkConfig]',
|
|
40
|
+
'rendezvous_ip': 'str',
|
|
40
41
|
'image_type': 'ImageType',
|
|
41
42
|
'ignition_config_override': 'str',
|
|
42
43
|
'cluster_id': 'str',
|
|
@@ -53,6 +54,7 @@ class InfraEnvCreateParams(object):
|
|
|
53
54
|
'ssh_authorized_key': 'ssh_authorized_key',
|
|
54
55
|
'pull_secret': 'pull_secret',
|
|
55
56
|
'static_network_config': 'static_network_config',
|
|
57
|
+
'rendezvous_ip': 'rendezvous_ip',
|
|
56
58
|
'image_type': 'image_type',
|
|
57
59
|
'ignition_config_override': 'ignition_config_override',
|
|
58
60
|
'cluster_id': 'cluster_id',
|
|
@@ -62,7 +64,7 @@ class InfraEnvCreateParams(object):
|
|
|
62
64
|
'additional_trust_bundle': 'additional_trust_bundle'
|
|
63
65
|
}
|
|
64
66
|
|
|
65
|
-
def __init__(self, name=None, proxy=None, additional_ntp_sources=None, ssh_authorized_key=None, pull_secret=None, static_network_config=None, image_type=None, ignition_config_override=None, cluster_id=None, openshift_version=None, cpu_architecture='x86_64', kernel_arguments=None, additional_trust_bundle=None): # noqa: E501
|
|
67
|
+
def __init__(self, name=None, proxy=None, additional_ntp_sources=None, ssh_authorized_key=None, pull_secret=None, static_network_config=None, rendezvous_ip=None, image_type=None, ignition_config_override=None, cluster_id=None, openshift_version=None, cpu_architecture='x86_64', kernel_arguments=None, additional_trust_bundle=None): # noqa: E501
|
|
66
68
|
"""InfraEnvCreateParams - a model defined in Swagger""" # noqa: E501
|
|
67
69
|
|
|
68
70
|
self._name = None
|
|
@@ -71,6 +73,7 @@ class InfraEnvCreateParams(object):
|
|
|
71
73
|
self._ssh_authorized_key = None
|
|
72
74
|
self._pull_secret = None
|
|
73
75
|
self._static_network_config = None
|
|
76
|
+
self._rendezvous_ip = None
|
|
74
77
|
self._image_type = None
|
|
75
78
|
self._ignition_config_override = None
|
|
76
79
|
self._cluster_id = None
|
|
@@ -90,6 +93,8 @@ class InfraEnvCreateParams(object):
|
|
|
90
93
|
self.pull_secret = pull_secret
|
|
91
94
|
if static_network_config is not None:
|
|
92
95
|
self.static_network_config = static_network_config
|
|
96
|
+
if rendezvous_ip is not None:
|
|
97
|
+
self.rendezvous_ip = rendezvous_ip
|
|
93
98
|
if image_type is not None:
|
|
94
99
|
self.image_type = image_type
|
|
95
100
|
if ignition_config_override is not None:
|
|
@@ -243,6 +248,29 @@ class InfraEnvCreateParams(object):
|
|
|
243
248
|
|
|
244
249
|
self._static_network_config = static_network_config
|
|
245
250
|
|
|
251
|
+
@property
|
|
252
|
+
def rendezvous_ip(self):
|
|
253
|
+
"""Gets the rendezvous_ip of this InfraEnvCreateParams. # noqa: E501
|
|
254
|
+
|
|
255
|
+
The IP address of the host that will act as the rendezvous (bootstrap) node for agent-based installations. This is optional for disconnected-iso image type and specifies which host will run the assisted service during the bootstrap phase. All other hosts will connect to this IP to coordinate the installation. # noqa: E501
|
|
256
|
+
|
|
257
|
+
:return: The rendezvous_ip of this InfraEnvCreateParams. # noqa: E501
|
|
258
|
+
:rtype: str
|
|
259
|
+
"""
|
|
260
|
+
return self._rendezvous_ip
|
|
261
|
+
|
|
262
|
+
@rendezvous_ip.setter
|
|
263
|
+
def rendezvous_ip(self, rendezvous_ip):
|
|
264
|
+
"""Sets the rendezvous_ip of this InfraEnvCreateParams.
|
|
265
|
+
|
|
266
|
+
The IP address of the host that will act as the rendezvous (bootstrap) node for agent-based installations. This is optional for disconnected-iso image type and specifies which host will run the assisted service during the bootstrap phase. All other hosts will connect to this IP to coordinate the installation. # noqa: E501
|
|
267
|
+
|
|
268
|
+
:param rendezvous_ip: The rendezvous_ip of this InfraEnvCreateParams. # noqa: E501
|
|
269
|
+
:type: str
|
|
270
|
+
"""
|
|
271
|
+
|
|
272
|
+
self._rendezvous_ip = rendezvous_ip
|
|
273
|
+
|
|
246
274
|
@property
|
|
247
275
|
def image_type(self):
|
|
248
276
|
"""Gets the image_type of this InfraEnvCreateParams. # noqa: E501
|
|
@@ -36,6 +36,7 @@ class InfraEnvUpdateParams(object):
|
|
|
36
36
|
'ssh_authorized_key': 'str',
|
|
37
37
|
'pull_secret': 'str',
|
|
38
38
|
'static_network_config': 'list[HostStaticNetworkConfig]',
|
|
39
|
+
'rendezvous_ip': 'str',
|
|
39
40
|
'image_type': 'ImageType',
|
|
40
41
|
'ignition_config_override': 'str',
|
|
41
42
|
'kernel_arguments': 'KernelArguments',
|
|
@@ -49,6 +50,7 @@ class InfraEnvUpdateParams(object):
|
|
|
49
50
|
'ssh_authorized_key': 'ssh_authorized_key',
|
|
50
51
|
'pull_secret': 'pull_secret',
|
|
51
52
|
'static_network_config': 'static_network_config',
|
|
53
|
+
'rendezvous_ip': 'rendezvous_ip',
|
|
52
54
|
'image_type': 'image_type',
|
|
53
55
|
'ignition_config_override': 'ignition_config_override',
|
|
54
56
|
'kernel_arguments': 'kernel_arguments',
|
|
@@ -56,7 +58,7 @@ class InfraEnvUpdateParams(object):
|
|
|
56
58
|
'openshift_version': 'openshift_version'
|
|
57
59
|
}
|
|
58
60
|
|
|
59
|
-
def __init__(self, proxy=None, additional_ntp_sources=None, ssh_authorized_key=None, pull_secret=None, static_network_config=None, image_type=None, ignition_config_override=None, kernel_arguments=None, additional_trust_bundle=None, openshift_version=None): # noqa: E501
|
|
61
|
+
def __init__(self, proxy=None, additional_ntp_sources=None, ssh_authorized_key=None, pull_secret=None, static_network_config=None, rendezvous_ip=None, image_type=None, ignition_config_override=None, kernel_arguments=None, additional_trust_bundle=None, openshift_version=None): # noqa: E501
|
|
60
62
|
"""InfraEnvUpdateParams - a model defined in Swagger""" # noqa: E501
|
|
61
63
|
|
|
62
64
|
self._proxy = None
|
|
@@ -64,6 +66,7 @@ class InfraEnvUpdateParams(object):
|
|
|
64
66
|
self._ssh_authorized_key = None
|
|
65
67
|
self._pull_secret = None
|
|
66
68
|
self._static_network_config = None
|
|
69
|
+
self._rendezvous_ip = None
|
|
67
70
|
self._image_type = None
|
|
68
71
|
self._ignition_config_override = None
|
|
69
72
|
self._kernel_arguments = None
|
|
@@ -81,6 +84,8 @@ class InfraEnvUpdateParams(object):
|
|
|
81
84
|
self.pull_secret = pull_secret
|
|
82
85
|
if static_network_config is not None:
|
|
83
86
|
self.static_network_config = static_network_config
|
|
87
|
+
if rendezvous_ip is not None:
|
|
88
|
+
self.rendezvous_ip = rendezvous_ip
|
|
84
89
|
if image_type is not None:
|
|
85
90
|
self.image_type = image_type
|
|
86
91
|
if ignition_config_override is not None:
|
|
@@ -203,6 +208,29 @@ class InfraEnvUpdateParams(object):
|
|
|
203
208
|
|
|
204
209
|
self._static_network_config = static_network_config
|
|
205
210
|
|
|
211
|
+
@property
|
|
212
|
+
def rendezvous_ip(self):
|
|
213
|
+
"""Gets the rendezvous_ip of this InfraEnvUpdateParams. # noqa: E501
|
|
214
|
+
|
|
215
|
+
The IP address of the host that will act as the rendezvous (bootstrap) node for agent-based installations. This is optional for disconnected-iso image type and specifies which host will run the assisted service during the bootstrap phase. All other hosts will connect to this IP to coordinate the installation. # noqa: E501
|
|
216
|
+
|
|
217
|
+
:return: The rendezvous_ip of this InfraEnvUpdateParams. # noqa: E501
|
|
218
|
+
:rtype: str
|
|
219
|
+
"""
|
|
220
|
+
return self._rendezvous_ip
|
|
221
|
+
|
|
222
|
+
@rendezvous_ip.setter
|
|
223
|
+
def rendezvous_ip(self, rendezvous_ip):
|
|
224
|
+
"""Sets the rendezvous_ip of this InfraEnvUpdateParams.
|
|
225
|
+
|
|
226
|
+
The IP address of the host that will act as the rendezvous (bootstrap) node for agent-based installations. This is optional for disconnected-iso image type and specifies which host will run the assisted service during the bootstrap phase. All other hosts will connect to this IP to coordinate the installation. # noqa: E501
|
|
227
|
+
|
|
228
|
+
:param rendezvous_ip: The rendezvous_ip of this InfraEnvUpdateParams. # noqa: E501
|
|
229
|
+
:type: str
|
|
230
|
+
"""
|
|
231
|
+
|
|
232
|
+
self._rendezvous_ip = rendezvous_ip
|
|
233
|
+
|
|
206
234
|
@property
|
|
207
235
|
def image_type(self):
|
|
208
236
|
"""Gets the image_type of this InfraEnvUpdateParams. # noqa: E501
|
|
@@ -4,7 +4,7 @@ assisted_service_client/configuration.py,sha256=wLYxtRlTlR9o-y24tqlDSgfjrh9YdiyW
|
|
|
4
4
|
assisted_service_client/rest.py,sha256=fLcY2m9yxpqJW4agxf3yCJyiz486qPLgqw8CbCuftZw,13123
|
|
5
5
|
assisted_service_client/api/__init__.py,sha256=PblMXYK6UKW4rSdDx3F7SA-M1xpjo4rzTBZOx0_cotA,492
|
|
6
6
|
assisted_service_client/api/events_api.py,sha256=ViI7Amn3-o8PcVbAg2iGan0nFrk6oJ0uuXGXA6nMATY,11498
|
|
7
|
-
assisted_service_client/api/installer_api.py,sha256=
|
|
7
|
+
assisted_service_client/api/installer_api.py,sha256=TRtS5MU9VjYf2dEJMpzvVQxswWwlH-UTHtYMEZ8YtBQ,309763
|
|
8
8
|
assisted_service_client/api/managed_domains_api.py,sha256=rTPj3IVxrECtMc_-acZ14u6WydVqHVw6VaM7I8Zvu3g,4087
|
|
9
9
|
assisted_service_client/api/manifests_api.py,sha256=aLktOGwkOa3siGnJOYuGO0mH3TlES-fBZvilNvseGO0,25146
|
|
10
10
|
assisted_service_client/api/operators_api.py,sha256=mlAgOM5naIPx9Ri6zVHYhwxjOp_k0USknI72I-o2Pu4,27612
|
|
@@ -64,7 +64,7 @@ assisted_service_client/models/error.py,sha256=walFlNpGmfMxSd9Cmv4eZkNHQx-0tOXpr
|
|
|
64
64
|
assisted_service_client/models/event.py,sha256=PRfTmDyGf-75xERGe_xuutt-2H0ZpVFSH2f2RK-qHUc,10372
|
|
65
65
|
assisted_service_client/models/event_list.py,sha256=QTzSwTlY-Kx3OA1kgBnYDEvULyrdLv-7DAByMgqH7-c,2356
|
|
66
66
|
assisted_service_client/models/feature.py,sha256=jNjOBzP1Qz_dzvSbfQ2LeIME4B5F-XYhSTwPP9cA9vg,5954
|
|
67
|
-
assisted_service_client/models/feature_support_level_id.py,sha256=
|
|
67
|
+
assisted_service_client/models/feature_support_level_id.py,sha256=aSsbqglbMIifzaknlZdGxqiJ8MARTZhub-IhUAv7chU,4241
|
|
68
68
|
assisted_service_client/models/fencing_credentials_params.py,sha256=3KjIlFGdUU1ro5P-1TB5YRRs5A3nOxQnssE34N897EQ,6792
|
|
69
69
|
assisted_service_client/models/finalizing_stage.py,sha256=JmPnqcnxm1VB3enMG1iMZR9NFjFEj6TZF6wVwgVgNlA,2849
|
|
70
70
|
assisted_service_client/models/free_addresses_list.py,sha256=P2q1fq3cR6BJq4i4V-gXpfG32TWIhFX4zScGzdRQmpw,2388
|
|
@@ -97,10 +97,10 @@ assisted_service_client/models/image_info.py,sha256=qLE6WdrbAF3NcgwCBXbTDxrWMlEy
|
|
|
97
97
|
assisted_service_client/models/image_type.py,sha256=j5wgSDyOUOAd1EzgTWhVifiUtb7TpZpkE2uPxTVsP48,2497
|
|
98
98
|
assisted_service_client/models/import_cluster_params.py,sha256=1fRPcjsG18l7HbxdUubpFyt5oh3s0kR-VyntcVOuF9c,6408
|
|
99
99
|
assisted_service_client/models/incompatibility_reason.py,sha256=e2nX-56qPV2bjBLcBumR3d4cmf_KIQBnnY6pcnsq-Ss,2623
|
|
100
|
-
assisted_service_client/models/infra_env.py,sha256=
|
|
101
|
-
assisted_service_client/models/infra_env_create_params.py,sha256=
|
|
100
|
+
assisted_service_client/models/infra_env.py,sha256=uDIw4goV8huAWpNIUdL9AEzJA83blOK4BvEXcaGTUCw,26150
|
|
101
|
+
assisted_service_client/models/infra_env_create_params.py,sha256=5WvRwWLV0xk8MoAO3c0yH_oqcFcggghRs8dJjZsRl90,17606
|
|
102
102
|
assisted_service_client/models/infra_env_list.py,sha256=QAy34UbUHugMwQZYOI9Y3SQKY1MNXOIKf3Yanry9GdE,2368
|
|
103
|
-
assisted_service_client/models/infra_env_update_params.py,sha256=
|
|
103
|
+
assisted_service_client/models/infra_env_update_params.py,sha256=GMoVYM3g_EDpZ-fE74oNLl-fVu2UZSq6iJhYg909oDo,13966
|
|
104
104
|
assisted_service_client/models/infra_error.py,sha256=Y5c3rRcqf_HKAPKzX5xUVvXpFVcT0ygZnWtPFH-NF74,4314
|
|
105
105
|
assisted_service_client/models/ingress_cert_params.py,sha256=-XP1NimCqaTWoxjUIJ_ELs5y37ShwaeKXadoOvUTiPA,2388
|
|
106
106
|
assisted_service_client/models/ingress_vip.py,sha256=lyf0K-0cVmdhuflocLIEtJ1r-zZjiYUb6BJmY8h-Vlk,4662
|
|
@@ -395,7 +395,7 @@ test/test_versions.py,sha256=n-4xIBBiEuExya4yfHjxHbsRinb_vccUxwIrMxyEvfk,843
|
|
|
395
395
|
test/test_versions_api.py,sha256=STXdU0DUr6Bmpp8YEBvPKo5ohNZKwxI0e_ddDi3F_1c,1087
|
|
396
396
|
test/test_vip_type.py,sha256=MAse7Cn2PT8pBELxmmAa4X9K_fZ-jtvNTmrqQ0Hvc-o,837
|
|
397
397
|
test/test_vip_verification.py,sha256=DwaHdagiOxRAPQ8TN541xSPn--MJEbRATBm1h3OmmZ4,901
|
|
398
|
-
assisted_service_client-2.47.0.
|
|
399
|
-
assisted_service_client-2.47.0.
|
|
400
|
-
assisted_service_client-2.47.0.
|
|
401
|
-
assisted_service_client-2.47.0.
|
|
398
|
+
assisted_service_client-2.47.0.post114.dist-info/METADATA,sha256=Yq6FHLkJBKvdLZwPMfHAI9q79_Or35IlvA6XZQg0aL4,27152
|
|
399
|
+
assisted_service_client-2.47.0.post114.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
400
|
+
assisted_service_client-2.47.0.post114.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
|
|
401
|
+
assisted_service_client-2.47.0.post114.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|