assisted-service-client 2.31.0.post72__py3-none-any.whl → 2.31.0.post73__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 +31 -3
- {assisted_service_client-2.31.0.post72.dist-info → assisted_service_client-2.31.0.post73.dist-info}/METADATA +1 -1
- {assisted_service_client-2.31.0.post72.dist-info → assisted_service_client-2.31.0.post73.dist-info}/RECORD +5 -5
- {assisted_service_client-2.31.0.post72.dist-info → assisted_service_client-2.31.0.post73.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.31.0.post72.dist-info → assisted_service_client-2.31.0.post73.dist-info}/top_level.txt +0 -0
|
@@ -48,7 +48,8 @@ class InstallCmdRequest(object):
|
|
|
48
48
|
'service_ips': 'list[str]',
|
|
49
49
|
'installer_args': 'str',
|
|
50
50
|
'skip_installation_disk_cleanup': 'bool',
|
|
51
|
-
'enable_skip_mco_reboot': 'bool'
|
|
51
|
+
'enable_skip_mco_reboot': 'bool',
|
|
52
|
+
'notify_num_reboots': 'bool'
|
|
52
53
|
}
|
|
53
54
|
|
|
54
55
|
attribute_map = {
|
|
@@ -69,10 +70,11 @@ class InstallCmdRequest(object):
|
|
|
69
70
|
'service_ips': 'service_ips',
|
|
70
71
|
'installer_args': 'installer_args',
|
|
71
72
|
'skip_installation_disk_cleanup': 'skip_installation_disk_cleanup',
|
|
72
|
-
'enable_skip_mco_reboot': 'enable_skip_mco_reboot'
|
|
73
|
+
'enable_skip_mco_reboot': 'enable_skip_mco_reboot',
|
|
74
|
+
'notify_num_reboots': 'notify_num_reboots'
|
|
73
75
|
}
|
|
74
76
|
|
|
75
|
-
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): # noqa: E501
|
|
77
|
+
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): # noqa: E501
|
|
76
78
|
"""InstallCmdRequest - a model defined in Swagger""" # noqa: E501
|
|
77
79
|
|
|
78
80
|
self._cluster_id = None
|
|
@@ -93,6 +95,7 @@ class InstallCmdRequest(object):
|
|
|
93
95
|
self._installer_args = None
|
|
94
96
|
self._skip_installation_disk_cleanup = None
|
|
95
97
|
self._enable_skip_mco_reboot = None
|
|
98
|
+
self._notify_num_reboots = None
|
|
96
99
|
self.discriminator = None
|
|
97
100
|
|
|
98
101
|
self.cluster_id = cluster_id
|
|
@@ -124,6 +127,8 @@ class InstallCmdRequest(object):
|
|
|
124
127
|
self.skip_installation_disk_cleanup = skip_installation_disk_cleanup
|
|
125
128
|
if enable_skip_mco_reboot is not None:
|
|
126
129
|
self.enable_skip_mco_reboot = enable_skip_mco_reboot
|
|
130
|
+
if notify_num_reboots is not None:
|
|
131
|
+
self.notify_num_reboots = notify_num_reboots
|
|
127
132
|
|
|
128
133
|
@property
|
|
129
134
|
def cluster_id(self):
|
|
@@ -555,6 +560,29 @@ class InstallCmdRequest(object):
|
|
|
555
560
|
|
|
556
561
|
self._enable_skip_mco_reboot = enable_skip_mco_reboot
|
|
557
562
|
|
|
563
|
+
@property
|
|
564
|
+
def notify_num_reboots(self):
|
|
565
|
+
"""Gets the notify_num_reboots of this InstallCmdRequest. # noqa: E501
|
|
566
|
+
|
|
567
|
+
If true, notify number of reboots by assisted controller # noqa: E501
|
|
568
|
+
|
|
569
|
+
:return: The notify_num_reboots of this InstallCmdRequest. # noqa: E501
|
|
570
|
+
:rtype: bool
|
|
571
|
+
"""
|
|
572
|
+
return self._notify_num_reboots
|
|
573
|
+
|
|
574
|
+
@notify_num_reboots.setter
|
|
575
|
+
def notify_num_reboots(self, notify_num_reboots):
|
|
576
|
+
"""Sets the notify_num_reboots of this InstallCmdRequest.
|
|
577
|
+
|
|
578
|
+
If true, notify number of reboots by assisted controller # noqa: E501
|
|
579
|
+
|
|
580
|
+
:param notify_num_reboots: The notify_num_reboots of this InstallCmdRequest. # noqa: E501
|
|
581
|
+
:type: bool
|
|
582
|
+
"""
|
|
583
|
+
|
|
584
|
+
self._notify_num_reboots = notify_num_reboots
|
|
585
|
+
|
|
558
586
|
def to_dict(self):
|
|
559
587
|
"""Returns the model properties as a dict"""
|
|
560
588
|
result = {}
|
|
@@ -101,7 +101,7 @@ assisted_service_client/models/ingress_cert_params.py,sha256=-XP1NimCqaTWoxjUIJ_
|
|
|
101
101
|
assisted_service_client/models/ingress_vip.py,sha256=lyf0K-0cVmdhuflocLIEtJ1r-zZjiYUb6BJmY8h-Vlk,4662
|
|
102
102
|
assisted_service_client/models/inline_response200.py,sha256=HB1HAsvw3l7H114kwQFzu9JKiMO8ug-I9iAezdSC5LI,3243
|
|
103
103
|
assisted_service_client/models/inline_response2001.py,sha256=Q272STaPtS7c5buEsQ6lQNQMO5r2IOxD9MUp92bNp0w,3359
|
|
104
|
-
assisted_service_client/models/install_cmd_request.py,sha256=
|
|
104
|
+
assisted_service_client/models/install_cmd_request.py,sha256=0-WDpsJ0cpSCEmdn54xQqsp2nUpnHNG48E9M2H6pmHY,20542
|
|
105
105
|
assisted_service_client/models/installer_args_params.py,sha256=FDBsAPct6q5rMbPlFSP4CUHoWfhJnPiT4idOGoi0Wb0,3175
|
|
106
106
|
assisted_service_client/models/interface.py,sha256=oens5JgzzW7b7y2_m3da_xnlB39d2ZTFNWJy6j7Qfws,10898
|
|
107
107
|
assisted_service_client/models/inventory.py,sha256=Cn5ug3cuDYzyuMbRB0LNyqZtahJ3MLar26I-WELk2I4,10489
|
|
@@ -373,7 +373,7 @@ test/test_versions.py,sha256=n-4xIBBiEuExya4yfHjxHbsRinb_vccUxwIrMxyEvfk,843
|
|
|
373
373
|
test/test_versions_api.py,sha256=STXdU0DUr6Bmpp8YEBvPKo5ohNZKwxI0e_ddDi3F_1c,1087
|
|
374
374
|
test/test_vip_type.py,sha256=MAse7Cn2PT8pBELxmmAa4X9K_fZ-jtvNTmrqQ0Hvc-o,837
|
|
375
375
|
test/test_vip_verification.py,sha256=DwaHdagiOxRAPQ8TN541xSPn--MJEbRATBm1h3OmmZ4,901
|
|
376
|
-
assisted_service_client-2.31.0.
|
|
377
|
-
assisted_service_client-2.31.0.
|
|
378
|
-
assisted_service_client-2.31.0.
|
|
379
|
-
assisted_service_client-2.31.0.
|
|
376
|
+
assisted_service_client-2.31.0.post73.dist-info/METADATA,sha256=iVdThnPe1Ay1XTm_19E7XpjjP1iBo-WaOakyUT-d1FE,25678
|
|
377
|
+
assisted_service_client-2.31.0.post73.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
378
|
+
assisted_service_client-2.31.0.post73.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
|
|
379
|
+
assisted_service_client-2.31.0.post73.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|