assisted-service-client 2.37.0.post66__py3-none-any.whl → 2.37.0.post68__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/install_cmd_request.py +29 -1
- {assisted_service_client-2.37.0.post66.dist-info → assisted_service_client-2.37.0.post68.dist-info}/METADATA +1 -1
- {assisted_service_client-2.37.0.post66.dist-info → assisted_service_client-2.37.0.post68.dist-info}/RECORD +5 -5
- {assisted_service_client-2.37.0.post66.dist-info → assisted_service_client-2.37.0.post68.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.37.0.post66.dist-info → assisted_service_client-2.37.0.post68.dist-info}/top_level.txt +0 -0
|
@@ -39,6 +39,7 @@ class InstallCmdRequest(object):
|
|
|
39
39
|
'controller_image': 'str',
|
|
40
40
|
'installer_image': 'str',
|
|
41
41
|
'high_availability_mode': 'str',
|
|
42
|
+
'control_plane_count': 'int',
|
|
42
43
|
'proxy': 'Proxy',
|
|
43
44
|
'check_cvo': 'bool',
|
|
44
45
|
'disks_to_format': 'list[str]',
|
|
@@ -62,6 +63,7 @@ class InstallCmdRequest(object):
|
|
|
62
63
|
'controller_image': 'controller_image',
|
|
63
64
|
'installer_image': 'installer_image',
|
|
64
65
|
'high_availability_mode': 'high_availability_mode',
|
|
66
|
+
'control_plane_count': 'control_plane_count',
|
|
65
67
|
'proxy': 'proxy',
|
|
66
68
|
'check_cvo': 'check_cvo',
|
|
67
69
|
'disks_to_format': 'disks_to_format',
|
|
@@ -76,7 +78,7 @@ class InstallCmdRequest(object):
|
|
|
76
78
|
'coreos_image': 'coreos_image'
|
|
77
79
|
}
|
|
78
80
|
|
|
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, high_availability_mode='Full', 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
|
|
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, high_availability_mode='Full', 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
|
|
80
82
|
"""InstallCmdRequest - a model defined in Swagger""" # noqa: E501
|
|
81
83
|
|
|
82
84
|
self._cluster_id = None
|
|
@@ -87,6 +89,7 @@ class InstallCmdRequest(object):
|
|
|
87
89
|
self._controller_image = None
|
|
88
90
|
self._installer_image = None
|
|
89
91
|
self._high_availability_mode = None
|
|
92
|
+
self._control_plane_count = None
|
|
90
93
|
self._proxy = None
|
|
91
94
|
self._check_cvo = None
|
|
92
95
|
self._disks_to_format = None
|
|
@@ -110,6 +113,8 @@ class InstallCmdRequest(object):
|
|
|
110
113
|
self.installer_image = installer_image
|
|
111
114
|
if high_availability_mode is not None:
|
|
112
115
|
self.high_availability_mode = high_availability_mode
|
|
116
|
+
if control_plane_count is not None:
|
|
117
|
+
self.control_plane_count = control_plane_count
|
|
113
118
|
if proxy is not None:
|
|
114
119
|
self.proxy = proxy
|
|
115
120
|
if check_cvo is not None:
|
|
@@ -337,6 +342,29 @@ class InstallCmdRequest(object):
|
|
|
337
342
|
|
|
338
343
|
self._high_availability_mode = high_availability_mode
|
|
339
344
|
|
|
345
|
+
@property
|
|
346
|
+
def control_plane_count(self):
|
|
347
|
+
"""Gets the control_plane_count of this InstallCmdRequest. # noqa: E501
|
|
348
|
+
|
|
349
|
+
Specifies the required number of control plane nodes that should be part of the cluster. # noqa: E501
|
|
350
|
+
|
|
351
|
+
:return: The control_plane_count of this InstallCmdRequest. # noqa: E501
|
|
352
|
+
:rtype: int
|
|
353
|
+
"""
|
|
354
|
+
return self._control_plane_count
|
|
355
|
+
|
|
356
|
+
@control_plane_count.setter
|
|
357
|
+
def control_plane_count(self, control_plane_count):
|
|
358
|
+
"""Sets the control_plane_count of this InstallCmdRequest.
|
|
359
|
+
|
|
360
|
+
Specifies the required number of control plane nodes that should be part of the cluster. # noqa: E501
|
|
361
|
+
|
|
362
|
+
:param control_plane_count: The control_plane_count of this InstallCmdRequest. # noqa: E501
|
|
363
|
+
:type: int
|
|
364
|
+
"""
|
|
365
|
+
|
|
366
|
+
self._control_plane_count = control_plane_count
|
|
367
|
+
|
|
340
368
|
@property
|
|
341
369
|
def proxy(self):
|
|
342
370
|
"""Gets the proxy of this InstallCmdRequest. # noqa: E501
|
|
@@ -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=d6To-dNjrv7y1TvLijmPSo7zepW56QcjFtuDa_ylshA,22590
|
|
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.37.0.
|
|
387
|
-
assisted_service_client-2.37.0.
|
|
388
|
-
assisted_service_client-2.37.0.
|
|
389
|
-
assisted_service_client-2.37.0.
|
|
386
|
+
assisted_service_client-2.37.0.post68.dist-info/METADATA,sha256=5rZjcS9r3tstBP1rto7V-kswDJSt03G1qnZieqDt6wY,26536
|
|
387
|
+
assisted_service_client-2.37.0.post68.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
388
|
+
assisted_service_client-2.37.0.post68.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
|
|
389
|
+
assisted_service_client-2.37.0.post68.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|