assisted-service-client 2.37.0.post67__py3-none-any.whl → 2.37.0.post69__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.

@@ -32,23 +32,28 @@ class Bundle(object):
32
32
  """
33
33
  swagger_types = {
34
34
  'name': 'str',
35
+ 'description': 'str',
35
36
  'operators': 'list[str]'
36
37
  }
37
38
 
38
39
  attribute_map = {
39
40
  'name': 'name',
41
+ 'description': 'description',
40
42
  'operators': 'operators'
41
43
  }
42
44
 
43
- def __init__(self, name=None, operators=None): # noqa: E501
45
+ def __init__(self, name=None, description=None, operators=None): # noqa: E501
44
46
  """Bundle - a model defined in Swagger""" # noqa: E501
45
47
 
46
48
  self._name = None
49
+ self._description = None
47
50
  self._operators = None
48
51
  self.discriminator = None
49
52
 
50
53
  if name is not None:
51
54
  self.name = name
55
+ if description is not None:
56
+ self.description = description
52
57
  if operators is not None:
53
58
  self.operators = operators
54
59
 
@@ -75,6 +80,29 @@ class Bundle(object):
75
80
 
76
81
  self._name = name
77
82
 
83
+ @property
84
+ def description(self):
85
+ """Gets the description of this Bundle. # noqa: E501
86
+
87
+ Short description of the bundle, for example `OpenShift AI with NVIDIA GPUs`. # noqa: E501
88
+
89
+ :return: The description of this Bundle. # noqa: E501
90
+ :rtype: str
91
+ """
92
+ return self._description
93
+
94
+ @description.setter
95
+ def description(self, description):
96
+ """Sets the description of this Bundle.
97
+
98
+ Short description of the bundle, for example `OpenShift AI with NVIDIA GPUs`. # noqa: E501
99
+
100
+ :param description: The description of this Bundle. # noqa: E501
101
+ :type: str
102
+ """
103
+
104
+ self._description = description
105
+
78
106
  @property
79
107
  def operators(self):
80
108
  """Gets the operators of this Bundle. # noqa: E501
@@ -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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: assisted-service-client
3
- Version: 2.37.0.post67
3
+ Version: 2.37.0.post69
4
4
  Summary: AssistedInstall
5
5
  Home-page: https://github.com/openshift/assisted-service
6
6
  Author: RedHat
@@ -17,7 +17,7 @@ assisted_service_client/models/api_vip_connectivity_response.py,sha256=g_lug17OF
17
17
  assisted_service_client/models/architecture_support_level_id.py,sha256=hlG08k4mpxplccAeBy2aiF41lp7zcTUyxPP98x2mXUg,2711
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
- assisted_service_client/models/bundle.py,sha256=KSblKrop2bnV5MlxFaWROMC4zKatF5qMX9dn4PZOWOA,3796
20
+ assisted_service_client/models/bundle.py,sha256=qLgPAs9So42FKUclBEnCcDx65N_GPbfjcFSdlBSiw9M,4689
21
21
  assisted_service_client/models/cluster.py,sha256=3qQ8JGiYPVU_tlaQHsU4vokckaNzyoQfjIkZch1qrcM,76616
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
@@ -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=l4D58SAGWKYkT62OQN1pF_BYh88iQIjMNvam7oh7XxM,21471
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.post67.dist-info/METADATA,sha256=7I_1SRw2aauhHn_37SeWcD7QFJXrXO6LTDVDNjrfXX8,26536
387
- assisted_service_client-2.37.0.post67.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
388
- assisted_service_client-2.37.0.post67.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
389
- assisted_service_client-2.37.0.post67.dist-info/RECORD,,
386
+ assisted_service_client-2.37.0.post69.dist-info/METADATA,sha256=5KIVEHHKPfjbiVm6o2MlHRtY5jlzkivYPBg4xLYB2oQ,26536
387
+ assisted_service_client-2.37.0.post69.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
388
+ assisted_service_client-2.37.0.post69.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
389
+ assisted_service_client-2.37.0.post69.dist-info/RECORD,,