assisted-service-client 2.29.0.post34__py3-none-any.whl → 2.29.0.post36__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/models/cluster_progress_info.py +17 -43
- assisted_service_client/models/finalizing_stage.py +1 -0
- {assisted_service_client-2.29.0.post34.dist-info → assisted_service_client-2.29.0.post36.dist-info}/METADATA +1 -1
- {assisted_service_client-2.29.0.post34.dist-info → assisted_service_client-2.29.0.post36.dist-info}/RECORD +6 -6
- {assisted_service_client-2.29.0.post34.dist-info → assisted_service_client-2.29.0.post36.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.29.0.post34.dist-info → assisted_service_client-2.29.0.post36.dist-info}/top_level.txt +0 -0
@@ -37,8 +37,7 @@ class ClusterProgressInfo(object):
|
|
37
37
|
'finalizing_stage_percentage': 'int',
|
38
38
|
'finalizing_stage': 'FinalizingStage',
|
39
39
|
'finalizing_stage_started_at': 'datetime',
|
40
|
-
'
|
41
|
-
'node_updater_finished_at': 'datetime'
|
40
|
+
'finalizing_stage_timed_out': 'bool'
|
42
41
|
}
|
43
42
|
|
44
43
|
attribute_map = {
|
@@ -48,11 +47,10 @@ class ClusterProgressInfo(object):
|
|
48
47
|
'finalizing_stage_percentage': 'finalizing_stage_percentage',
|
49
48
|
'finalizing_stage': 'finalizing_stage',
|
50
49
|
'finalizing_stage_started_at': 'finalizing_stage_started_at',
|
51
|
-
'
|
52
|
-
'node_updater_finished_at': 'node_updater_finished_at'
|
50
|
+
'finalizing_stage_timed_out': 'finalizing_stage_timed_out'
|
53
51
|
}
|
54
52
|
|
55
|
-
def __init__(self, total_percentage=None, preparing_for_installation_stage_percentage=None, installing_stage_percentage=None, finalizing_stage_percentage=None, finalizing_stage=None, finalizing_stage_started_at=None,
|
53
|
+
def __init__(self, total_percentage=None, preparing_for_installation_stage_percentage=None, installing_stage_percentage=None, finalizing_stage_percentage=None, finalizing_stage=None, finalizing_stage_started_at=None, finalizing_stage_timed_out=None): # noqa: E501
|
56
54
|
"""ClusterProgressInfo - a model defined in Swagger""" # noqa: E501
|
57
55
|
|
58
56
|
self._total_percentage = None
|
@@ -61,8 +59,7 @@ class ClusterProgressInfo(object):
|
|
61
59
|
self._finalizing_stage_percentage = None
|
62
60
|
self._finalizing_stage = None
|
63
61
|
self._finalizing_stage_started_at = None
|
64
|
-
self.
|
65
|
-
self._node_updater_finished_at = None
|
62
|
+
self._finalizing_stage_timed_out = None
|
66
63
|
self.discriminator = None
|
67
64
|
|
68
65
|
if total_percentage is not None:
|
@@ -77,10 +74,8 @@ class ClusterProgressInfo(object):
|
|
77
74
|
self.finalizing_stage = finalizing_stage
|
78
75
|
if finalizing_stage_started_at is not None:
|
79
76
|
self.finalizing_stage_started_at = finalizing_stage_started_at
|
80
|
-
if
|
81
|
-
self.
|
82
|
-
if node_updater_finished_at is not None:
|
83
|
-
self.node_updater_finished_at = node_updater_finished_at
|
77
|
+
if finalizing_stage_timed_out is not None:
|
78
|
+
self.finalizing_stage_timed_out = finalizing_stage_timed_out
|
84
79
|
|
85
80
|
@property
|
86
81
|
def total_percentage(self):
|
@@ -209,46 +204,25 @@ class ClusterProgressInfo(object):
|
|
209
204
|
self._finalizing_stage_started_at = finalizing_stage_started_at
|
210
205
|
|
211
206
|
@property
|
212
|
-
def
|
213
|
-
"""Gets the
|
207
|
+
def finalizing_stage_timed_out(self):
|
208
|
+
"""Gets the finalizing_stage_timed_out of this ClusterProgressInfo. # noqa: E501
|
214
209
|
|
215
210
|
|
216
|
-
:return: The
|
217
|
-
:rtype:
|
218
|
-
"""
|
219
|
-
return self._node_updater_started_at
|
220
|
-
|
221
|
-
@node_updater_started_at.setter
|
222
|
-
def node_updater_started_at(self, node_updater_started_at):
|
223
|
-
"""Sets the node_updater_started_at of this ClusterProgressInfo.
|
224
|
-
|
225
|
-
|
226
|
-
:param node_updater_started_at: The node_updater_started_at of this ClusterProgressInfo. # noqa: E501
|
227
|
-
:type: datetime
|
228
|
-
"""
|
229
|
-
|
230
|
-
self._node_updater_started_at = node_updater_started_at
|
231
|
-
|
232
|
-
@property
|
233
|
-
def node_updater_finished_at(self):
|
234
|
-
"""Gets the node_updater_finished_at of this ClusterProgressInfo. # noqa: E501
|
235
|
-
|
236
|
-
|
237
|
-
:return: The node_updater_finished_at of this ClusterProgressInfo. # noqa: E501
|
238
|
-
:rtype: datetime
|
211
|
+
:return: The finalizing_stage_timed_out of this ClusterProgressInfo. # noqa: E501
|
212
|
+
:rtype: bool
|
239
213
|
"""
|
240
|
-
return self.
|
214
|
+
return self._finalizing_stage_timed_out
|
241
215
|
|
242
|
-
@
|
243
|
-
def
|
244
|
-
"""Sets the
|
216
|
+
@finalizing_stage_timed_out.setter
|
217
|
+
def finalizing_stage_timed_out(self, finalizing_stage_timed_out):
|
218
|
+
"""Sets the finalizing_stage_timed_out of this ClusterProgressInfo.
|
245
219
|
|
246
220
|
|
247
|
-
:param
|
248
|
-
:type:
|
221
|
+
:param finalizing_stage_timed_out: The finalizing_stage_timed_out of this ClusterProgressInfo. # noqa: E501
|
222
|
+
:type: bool
|
249
223
|
"""
|
250
224
|
|
251
|
-
self.
|
225
|
+
self._finalizing_stage_timed_out = finalizing_stage_timed_out
|
252
226
|
|
253
227
|
def to_dict(self):
|
254
228
|
"""Returns the model properties as a dict"""
|
@@ -31,6 +31,7 @@ class FinalizingStage(object):
|
|
31
31
|
ADDING_ROUTER_CA = "Adding router ca"
|
32
32
|
WAITING_FOR_OLM_OPERATORS = "Waiting for olm operators"
|
33
33
|
APPLYING_MANIFESTS = "Applying manifests"
|
34
|
+
WAITING_FOR_OLM_OPERATORS_CSV_INITIALIZATION = "Waiting for olm operators csv initialization"
|
34
35
|
WAITING_FOR_OLM_OPERATORS_CSV = "Waiting for olm operators csv"
|
35
36
|
DONE = "Done"
|
36
37
|
|
@@ -26,7 +26,7 @@ assisted_service_client/models/cluster_host_requirements_details.py,sha256=uIdGC
|
|
26
26
|
assisted_service_client/models/cluster_host_requirements_list.py,sha256=deoEudr4wKtjwJHqeXxjq-jSS0VYM-tKWcP1m8l6svM,2428
|
27
27
|
assisted_service_client/models/cluster_list.py,sha256=Eu55f_A7xr1GrciKtolSZP_HFTauwHRzZKKBbELaVcw,2364
|
28
28
|
assisted_service_client/models/cluster_network.py,sha256=lOjZm91Z6i0bffz1ShJExDaOeBLeVbDphRYdXtciiNE,5495
|
29
|
-
assisted_service_client/models/cluster_progress_info.py,sha256=
|
29
|
+
assisted_service_client/models/cluster_progress_info.py,sha256=At_2x8HaakTw9RNtOwsNL4VZgmrUjS9xFu-Cko5q3e8,9765
|
30
30
|
assisted_service_client/models/cluster_validation_id.py,sha256=ZnioiDhyvVgXckZDhYbv0SGzm3VyYg4MHGnofMCcPjs,3775
|
31
31
|
assisted_service_client/models/completion_params.py,sha256=1kQDePG_SyIOH2WjubnELSZMQvEifxZu_3PQeH6K5Gg,4647
|
32
32
|
assisted_service_client/models/connectivity_check_host.py,sha256=tUBCx9KuiO1z17ifrhqb_74oCnSUWjbZqnZpSsAgQTM,3759
|
@@ -62,7 +62,7 @@ assisted_service_client/models/error.py,sha256=walFlNpGmfMxSd9Cmv4eZkNHQx-0tOXpr
|
|
62
62
|
assisted_service_client/models/event.py,sha256=PRfTmDyGf-75xERGe_xuutt-2H0ZpVFSH2f2RK-qHUc,10372
|
63
63
|
assisted_service_client/models/event_list.py,sha256=QTzSwTlY-Kx3OA1kgBnYDEvULyrdLv-7DAByMgqH7-c,2356
|
64
64
|
assisted_service_client/models/feature_support_level_id.py,sha256=8urxnim2qlErla72Kd7mzXrwtKClvVEJSdH98B478n4,3379
|
65
|
-
assisted_service_client/models/finalizing_stage.py,sha256=
|
65
|
+
assisted_service_client/models/finalizing_stage.py,sha256=b1BdXGUhBtMPTslUxOGPPEXr3ovhYYy2C306CAmJAcU,2875
|
66
66
|
assisted_service_client/models/free_addresses_list.py,sha256=P2q1fq3cR6BJq4i4V-gXpfG32TWIhFX4zScGzdRQmpw,2388
|
67
67
|
assisted_service_client/models/free_addresses_request.py,sha256=6EjcZ6eCz2tGdz6axoRHwILSNz0-7_A6-dIjmxeFe1k,2400
|
68
68
|
assisted_service_client/models/free_network_addresses.py,sha256=4qbfXsYN_X6t0hJiF4JFhHbGEg8SEe-0OO5vn3cn8os,3896
|
@@ -363,7 +363,7 @@ test/test_versions.py,sha256=n-4xIBBiEuExya4yfHjxHbsRinb_vccUxwIrMxyEvfk,843
|
|
363
363
|
test/test_versions_api.py,sha256=1I1X8zO7RRpqgvWhuV05bK2PnSQfYjN7_d4eBYkum1s,967
|
364
364
|
test/test_vip_type.py,sha256=MAse7Cn2PT8pBELxmmAa4X9K_fZ-jtvNTmrqQ0Hvc-o,837
|
365
365
|
test/test_vip_verification.py,sha256=DwaHdagiOxRAPQ8TN541xSPn--MJEbRATBm1h3OmmZ4,901
|
366
|
-
assisted_service_client-2.29.0.
|
367
|
-
assisted_service_client-2.29.0.
|
368
|
-
assisted_service_client-2.29.0.
|
369
|
-
assisted_service_client-2.29.0.
|
366
|
+
assisted_service_client-2.29.0.post36.dist-info/METADATA,sha256=YfwDxfiAgLlkBXthh0eL8JWBtp2UbU7xFM0xNBKuE-I,25298
|
367
|
+
assisted_service_client-2.29.0.post36.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
368
|
+
assisted_service_client-2.29.0.post36.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
|
369
|
+
assisted_service_client-2.29.0.post36.dist-info/RECORD,,
|
File without changes
|
File without changes
|