assisted-service-client 2.38.0.post35__py3-none-any.whl → 2.38.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.
Potentially problematic release.
This version of assisted-service-client might be problematic. Click here for more details.
- assisted_service_client/models/cluster.py +2 -2
- assisted_service_client/models/install_cmd_request.py +1 -35
- {assisted_service_client-2.38.0.post35.dist-info → assisted_service_client-2.38.0.post36.dist-info}/METADATA +1 -1
- {assisted_service_client-2.38.0.post35.dist-info → assisted_service_client-2.38.0.post36.dist-info}/RECORD +6 -6
- {assisted_service_client-2.38.0.post35.dist-info → assisted_service_client-2.38.0.post36.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.38.0.post35.dist-info → assisted_service_client-2.38.0.post36.dist-info}/top_level.txt +0 -0
|
@@ -426,7 +426,7 @@ class Cluster(object):
|
|
|
426
426
|
def high_availability_mode(self):
|
|
427
427
|
"""Gets the high_availability_mode of this Cluster. # noqa: E501
|
|
428
428
|
|
|
429
|
-
Guaranteed availability of the installed cluster. 'Full' installs a Highly-Available cluster over multiple master nodes whereas 'None' installs a full cluster over one node. # noqa: E501
|
|
429
|
+
(DEPRECATED) Please use 'control_plane_count' instead. Guaranteed availability of the installed cluster. 'Full' installs a Highly-Available cluster over multiple master nodes whereas 'None' installs a full cluster over one node. # noqa: E501
|
|
430
430
|
|
|
431
431
|
:return: The high_availability_mode of this Cluster. # noqa: E501
|
|
432
432
|
:rtype: str
|
|
@@ -437,7 +437,7 @@ class Cluster(object):
|
|
|
437
437
|
def high_availability_mode(self, high_availability_mode):
|
|
438
438
|
"""Sets the high_availability_mode of this Cluster.
|
|
439
439
|
|
|
440
|
-
Guaranteed availability of the installed cluster. 'Full' installs a Highly-Available cluster over multiple master nodes whereas 'None' installs a full cluster over one node. # noqa: E501
|
|
440
|
+
(DEPRECATED) Please use 'control_plane_count' instead. Guaranteed availability of the installed cluster. 'Full' installs a Highly-Available cluster over multiple master nodes whereas 'None' installs a full cluster over one node. # noqa: E501
|
|
441
441
|
|
|
442
442
|
:param high_availability_mode: The high_availability_mode of this Cluster. # noqa: E501
|
|
443
443
|
:type: str
|
|
@@ -38,7 +38,6 @@ class InstallCmdRequest(object):
|
|
|
38
38
|
'boot_device': 'str',
|
|
39
39
|
'controller_image': 'str',
|
|
40
40
|
'installer_image': 'str',
|
|
41
|
-
'high_availability_mode': 'str',
|
|
42
41
|
'control_plane_count': 'int',
|
|
43
42
|
'proxy': 'Proxy',
|
|
44
43
|
'check_cvo': 'bool',
|
|
@@ -62,7 +61,6 @@ class InstallCmdRequest(object):
|
|
|
62
61
|
'boot_device': 'boot_device',
|
|
63
62
|
'controller_image': 'controller_image',
|
|
64
63
|
'installer_image': 'installer_image',
|
|
65
|
-
'high_availability_mode': 'high_availability_mode',
|
|
66
64
|
'control_plane_count': 'control_plane_count',
|
|
67
65
|
'proxy': 'proxy',
|
|
68
66
|
'check_cvo': 'check_cvo',
|
|
@@ -78,7 +76,7 @@ class InstallCmdRequest(object):
|
|
|
78
76
|
'coreos_image': 'coreos_image'
|
|
79
77
|
}
|
|
80
78
|
|
|
81
|
-
def __init__(self, cluster_id=None, infra_env_id=None, host_id=None, role=None, boot_device=None, controller_image=None, installer_image=None,
|
|
79
|
+
def __init__(self, cluster_id=None, infra_env_id=None, host_id=None, role=None, boot_device=None, controller_image=None, installer_image=None, control_plane_count=None, proxy=None, check_cvo=True, disks_to_format=None, must_gather_image=None, mco_image=None, openshift_version=None, service_ips=None, installer_args=None, skip_installation_disk_cleanup=None, enable_skip_mco_reboot=None, notify_num_reboots=None, coreos_image=None): # noqa: E501
|
|
82
80
|
"""InstallCmdRequest - a model defined in Swagger""" # noqa: E501
|
|
83
81
|
|
|
84
82
|
self._cluster_id = None
|
|
@@ -88,7 +86,6 @@ class InstallCmdRequest(object):
|
|
|
88
86
|
self._boot_device = None
|
|
89
87
|
self._controller_image = None
|
|
90
88
|
self._installer_image = None
|
|
91
|
-
self._high_availability_mode = None
|
|
92
89
|
self._control_plane_count = None
|
|
93
90
|
self._proxy = None
|
|
94
91
|
self._check_cvo = None
|
|
@@ -111,8 +108,6 @@ class InstallCmdRequest(object):
|
|
|
111
108
|
self.boot_device = boot_device
|
|
112
109
|
self.controller_image = controller_image
|
|
113
110
|
self.installer_image = installer_image
|
|
114
|
-
if high_availability_mode is not None:
|
|
115
|
-
self.high_availability_mode = high_availability_mode
|
|
116
111
|
if control_plane_count is not None:
|
|
117
112
|
self.control_plane_count = control_plane_count
|
|
118
113
|
if proxy is not None:
|
|
@@ -313,35 +308,6 @@ class InstallCmdRequest(object):
|
|
|
313
308
|
|
|
314
309
|
self._installer_image = installer_image
|
|
315
310
|
|
|
316
|
-
@property
|
|
317
|
-
def high_availability_mode(self):
|
|
318
|
-
"""Gets the high_availability_mode of this InstallCmdRequest. # noqa: E501
|
|
319
|
-
|
|
320
|
-
Guaranteed availability of the installed cluster. 'Full' installs a Highly-Available cluster over multiple master nodes whereas 'None' installs a full cluster over one node. # noqa: E501
|
|
321
|
-
|
|
322
|
-
:return: The high_availability_mode of this InstallCmdRequest. # noqa: E501
|
|
323
|
-
:rtype: str
|
|
324
|
-
"""
|
|
325
|
-
return self._high_availability_mode
|
|
326
|
-
|
|
327
|
-
@high_availability_mode.setter
|
|
328
|
-
def high_availability_mode(self, high_availability_mode):
|
|
329
|
-
"""Sets the high_availability_mode of this InstallCmdRequest.
|
|
330
|
-
|
|
331
|
-
Guaranteed availability of the installed cluster. 'Full' installs a Highly-Available cluster over multiple master nodes whereas 'None' installs a full cluster over one node. # noqa: E501
|
|
332
|
-
|
|
333
|
-
:param high_availability_mode: The high_availability_mode of this InstallCmdRequest. # noqa: E501
|
|
334
|
-
:type: str
|
|
335
|
-
"""
|
|
336
|
-
allowed_values = ["Full", "None"] # noqa: E501
|
|
337
|
-
if high_availability_mode not in allowed_values:
|
|
338
|
-
raise ValueError(
|
|
339
|
-
"Invalid value for `high_availability_mode` ({0}), must be one of {1}" # noqa: E501
|
|
340
|
-
.format(high_availability_mode, allowed_values)
|
|
341
|
-
)
|
|
342
|
-
|
|
343
|
-
self._high_availability_mode = high_availability_mode
|
|
344
|
-
|
|
345
311
|
@property
|
|
346
312
|
def control_plane_count(self):
|
|
347
313
|
"""Gets the control_plane_count of this InstallCmdRequest. # noqa: E501
|
|
@@ -18,7 +18,7 @@ assisted_service_client/models/architecture_support_level_id.py,sha256=hlG08k4mp
|
|
|
18
18
|
assisted_service_client/models/bind_host_params.py,sha256=R6AntLnkrOE_uVaRECc_gx1QPfUmPsVNI06LoDQJONI,3170
|
|
19
19
|
assisted_service_client/models/boot.py,sha256=TKBFb4mDh-7uhYfsy7hfVH-L8WS0ATt1UGNxgo205bA,6397
|
|
20
20
|
assisted_service_client/models/bundle.py,sha256=G50_FlJFNmVz13p9CI-EOnaAyKX0kd4p_2xOBwOUFFU,5668
|
|
21
|
-
assisted_service_client/models/cluster.py,sha256=
|
|
21
|
+
assisted_service_client/models/cluster.py,sha256=dFG-5gEqqXxurEl_zcXaS_vel_bW6zPJKWnJtAltwCw,76726
|
|
22
22
|
assisted_service_client/models/cluster_create_params.py,sha256=J-VvUpdbFQ1F_yAdKvnzOP6B_w3exRwEDT1RrEWatPM,39783
|
|
23
23
|
assisted_service_client/models/cluster_default_config.py,sha256=MXhboRxA2o4-lHR9baQCiehfksCV4XfsabSMqFfSv3U,12993
|
|
24
24
|
assisted_service_client/models/cluster_finalizing_progress.py,sha256=lTBxx_NSDubtAg8aSXbxwWhW2XxPYJZ0ztUmozfEJhA,3325
|
|
@@ -102,7 +102,7 @@ assisted_service_client/models/ingress_cert_params.py,sha256=-XP1NimCqaTWoxjUIJ_
|
|
|
102
102
|
assisted_service_client/models/ingress_vip.py,sha256=lyf0K-0cVmdhuflocLIEtJ1r-zZjiYUb6BJmY8h-Vlk,4662
|
|
103
103
|
assisted_service_client/models/inline_response200.py,sha256=HB1HAsvw3l7H114kwQFzu9JKiMO8ug-I9iAezdSC5LI,3243
|
|
104
104
|
assisted_service_client/models/inline_response2001.py,sha256=Q272STaPtS7c5buEsQ6lQNQMO5r2IOxD9MUp92bNp0w,3359
|
|
105
|
-
assisted_service_client/models/install_cmd_request.py,sha256=
|
|
105
|
+
assisted_service_client/models/install_cmd_request.py,sha256=5rYh5AbwW540ALsKXAX7mWkxRmH0Dolo4-Z89_9eH-g,20915
|
|
106
106
|
assisted_service_client/models/installer_args_params.py,sha256=FDBsAPct6q5rMbPlFSP4CUHoWfhJnPiT4idOGoi0Wb0,3175
|
|
107
107
|
assisted_service_client/models/interface.py,sha256=oens5JgzzW7b7y2_m3da_xnlB39d2ZTFNWJy6j7Qfws,10898
|
|
108
108
|
assisted_service_client/models/inventory.py,sha256=Cn5ug3cuDYzyuMbRB0LNyqZtahJ3MLar26I-WELk2I4,10489
|
|
@@ -383,7 +383,7 @@ test/test_versions.py,sha256=n-4xIBBiEuExya4yfHjxHbsRinb_vccUxwIrMxyEvfk,843
|
|
|
383
383
|
test/test_versions_api.py,sha256=STXdU0DUr6Bmpp8YEBvPKo5ohNZKwxI0e_ddDi3F_1c,1087
|
|
384
384
|
test/test_vip_type.py,sha256=MAse7Cn2PT8pBELxmmAa4X9K_fZ-jtvNTmrqQ0Hvc-o,837
|
|
385
385
|
test/test_vip_verification.py,sha256=DwaHdagiOxRAPQ8TN541xSPn--MJEbRATBm1h3OmmZ4,901
|
|
386
|
-
assisted_service_client-2.38.0.
|
|
387
|
-
assisted_service_client-2.38.0.
|
|
388
|
-
assisted_service_client-2.38.0.
|
|
389
|
-
assisted_service_client-2.38.0.
|
|
386
|
+
assisted_service_client-2.38.0.post36.dist-info/METADATA,sha256=IYqnIrKdF7b_nAnUXOgx6MErb4kawPJDGyU86KnQKSc,26527
|
|
387
|
+
assisted_service_client-2.38.0.post36.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
388
|
+
assisted_service_client-2.38.0.post36.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
|
|
389
|
+
assisted_service_client-2.38.0.post36.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|