assisted-service-client 2.37.0.post38__py3-none-any.whl → 2.37.0.post39__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.37.0.post38.dist-info → assisted_service_client-2.37.0.post39.dist-info}/METADATA +1 -1
- {assisted_service_client-2.37.0.post38.dist-info → assisted_service_client-2.37.0.post39.dist-info}/RECORD +5 -5
- {assisted_service_client-2.37.0.post38.dist-info → assisted_service_client-2.37.0.post39.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.37.0.post38.dist-info → assisted_service_client-2.37.0.post39.dist-info}/top_level.txt +0 -0
|
@@ -49,7 +49,8 @@ class InstallCmdRequest(object):
|
|
|
49
49
|
'installer_args': 'str',
|
|
50
50
|
'skip_installation_disk_cleanup': 'bool',
|
|
51
51
|
'enable_skip_mco_reboot': 'bool',
|
|
52
|
-
'notify_num_reboots': 'bool'
|
|
52
|
+
'notify_num_reboots': 'bool',
|
|
53
|
+
'coreos_image': 'str'
|
|
53
54
|
}
|
|
54
55
|
|
|
55
56
|
attribute_map = {
|
|
@@ -71,10 +72,11 @@ class InstallCmdRequest(object):
|
|
|
71
72
|
'installer_args': 'installer_args',
|
|
72
73
|
'skip_installation_disk_cleanup': 'skip_installation_disk_cleanup',
|
|
73
74
|
'enable_skip_mco_reboot': 'enable_skip_mco_reboot',
|
|
74
|
-
'notify_num_reboots': 'notify_num_reboots'
|
|
75
|
+
'notify_num_reboots': 'notify_num_reboots',
|
|
76
|
+
'coreos_image': 'coreos_image'
|
|
75
77
|
}
|
|
76
78
|
|
|
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
|
|
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
|
|
78
80
|
"""InstallCmdRequest - a model defined in Swagger""" # noqa: E501
|
|
79
81
|
|
|
80
82
|
self._cluster_id = None
|
|
@@ -96,6 +98,7 @@ class InstallCmdRequest(object):
|
|
|
96
98
|
self._skip_installation_disk_cleanup = None
|
|
97
99
|
self._enable_skip_mco_reboot = None
|
|
98
100
|
self._notify_num_reboots = None
|
|
101
|
+
self._coreos_image = None
|
|
99
102
|
self.discriminator = None
|
|
100
103
|
|
|
101
104
|
self.cluster_id = cluster_id
|
|
@@ -129,6 +132,8 @@ class InstallCmdRequest(object):
|
|
|
129
132
|
self.enable_skip_mco_reboot = enable_skip_mco_reboot
|
|
130
133
|
if notify_num_reboots is not None:
|
|
131
134
|
self.notify_num_reboots = notify_num_reboots
|
|
135
|
+
if coreos_image is not None:
|
|
136
|
+
self.coreos_image = coreos_image
|
|
132
137
|
|
|
133
138
|
@property
|
|
134
139
|
def cluster_id(self):
|
|
@@ -583,6 +588,29 @@ class InstallCmdRequest(object):
|
|
|
583
588
|
|
|
584
589
|
self._notify_num_reboots = notify_num_reboots
|
|
585
590
|
|
|
591
|
+
@property
|
|
592
|
+
def coreos_image(self):
|
|
593
|
+
"""Gets the coreos_image of this InstallCmdRequest. # noqa: E501
|
|
594
|
+
|
|
595
|
+
CoreOS container image to use if installing to the local device # noqa: E501
|
|
596
|
+
|
|
597
|
+
:return: The coreos_image of this InstallCmdRequest. # noqa: E501
|
|
598
|
+
:rtype: str
|
|
599
|
+
"""
|
|
600
|
+
return self._coreos_image
|
|
601
|
+
|
|
602
|
+
@coreos_image.setter
|
|
603
|
+
def coreos_image(self, coreos_image):
|
|
604
|
+
"""Sets the coreos_image of this InstallCmdRequest.
|
|
605
|
+
|
|
606
|
+
CoreOS container image to use if installing to the local device # noqa: E501
|
|
607
|
+
|
|
608
|
+
:param coreos_image: The coreos_image of this InstallCmdRequest. # noqa: E501
|
|
609
|
+
:type: str
|
|
610
|
+
"""
|
|
611
|
+
|
|
612
|
+
self._coreos_image = coreos_image
|
|
613
|
+
|
|
586
614
|
def to_dict(self):
|
|
587
615
|
"""Returns the model properties as a dict"""
|
|
588
616
|
result = {}
|
|
@@ -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=l4D58SAGWKYkT62OQN1pF_BYh88iQIjMNvam7oh7XxM,21471
|
|
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.post39.dist-info/METADATA,sha256=BHfhg2aQCk6Cew21BH_-dUdkx_XQg9M4Q-NS0pQ4Bk4,26536
|
|
387
|
+
assisted_service_client-2.37.0.post39.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
388
|
+
assisted_service_client-2.37.0.post39.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
|
|
389
|
+
assisted_service_client-2.37.0.post39.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|