assisted-service-client 2.36.0.post45__py3-none-any.whl → 2.36.0.post46__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.

@@ -99,7 +99,8 @@ class Cluster(object):
99
99
  'imported': 'bool',
100
100
  'tags': 'str',
101
101
  'last_installation_preparation': 'LastInstallationPreparation',
102
- 'org_soft_timeouts_enabled': 'bool'
102
+ 'org_soft_timeouts_enabled': 'bool',
103
+ 'control_plane_count': 'int'
103
104
  }
104
105
 
105
106
  attribute_map = {
@@ -171,10 +172,11 @@ class Cluster(object):
171
172
  'imported': 'imported',
172
173
  'tags': 'tags',
173
174
  'last_installation_preparation': 'last-installation-preparation',
174
- 'org_soft_timeouts_enabled': 'org_soft_timeouts_enabled'
175
+ 'org_soft_timeouts_enabled': 'org_soft_timeouts_enabled',
176
+ 'control_plane_count': 'control_plane_count'
175
177
  }
176
178
 
177
- def __init__(self, kind=None, high_availability_mode='Full', id=None, href=None, name=None, user_name=None, org_id=None, email_domain=None, openshift_version=None, ocp_release_image=None, openshift_cluster_id=None, image_info=None, platform=None, base_dns_domain=None, cluster_network_cidr=None, cluster_network_host_prefix=None, service_network_cidr=None, api_vips=None, api_vip_dns_name=None, machine_network_cidr=None, ingress_vips=None, ssh_public_key=None, http_proxy=None, https_proxy=None, no_proxy=None, status=None, status_info=None, status_updated_at=None, progress=None, disk_encryption=None, hosts=None, ready_host_count=None, enabled_host_count=None, total_host_count=None, schedulable_masters=False, schedulable_masters_forced_true=True, updated_at=None, created_at=None, install_started_at=None, install_completed_at=None, host_networks=None, pull_secret_set=None, vip_dhcp_allocation=None, validations_info=None, logs_info=None, install_config_overrides=None, controller_logs_collected_at=None, controller_logs_started_at=None, connectivity_majority_groups=None, ip_collisions=None, ignored_host_validations=None, ignored_cluster_validations=None, deleted_at=None, user_managed_networking=None, additional_ntp_source=None, monitored_operators=None, ams_subscription_id=None, hyperthreading=None, feature_usage=None, network_type=None, cluster_networks=None, service_networks=None, machine_networks=None, cpu_architecture='x86_64', ignition_endpoint=None, imported=False, tags=None, last_installation_preparation=None, org_soft_timeouts_enabled=None): # noqa: E501
179
+ def __init__(self, kind=None, high_availability_mode='Full', id=None, href=None, name=None, user_name=None, org_id=None, email_domain=None, openshift_version=None, ocp_release_image=None, openshift_cluster_id=None, image_info=None, platform=None, base_dns_domain=None, cluster_network_cidr=None, cluster_network_host_prefix=None, service_network_cidr=None, api_vips=None, api_vip_dns_name=None, machine_network_cidr=None, ingress_vips=None, ssh_public_key=None, http_proxy=None, https_proxy=None, no_proxy=None, status=None, status_info=None, status_updated_at=None, progress=None, disk_encryption=None, hosts=None, ready_host_count=None, enabled_host_count=None, total_host_count=None, schedulable_masters=False, schedulable_masters_forced_true=True, updated_at=None, created_at=None, install_started_at=None, install_completed_at=None, host_networks=None, pull_secret_set=None, vip_dhcp_allocation=None, validations_info=None, logs_info=None, install_config_overrides=None, controller_logs_collected_at=None, controller_logs_started_at=None, connectivity_majority_groups=None, ip_collisions=None, ignored_host_validations=None, ignored_cluster_validations=None, deleted_at=None, user_managed_networking=None, additional_ntp_source=None, monitored_operators=None, ams_subscription_id=None, hyperthreading=None, feature_usage=None, network_type=None, cluster_networks=None, service_networks=None, machine_networks=None, cpu_architecture='x86_64', ignition_endpoint=None, imported=False, tags=None, last_installation_preparation=None, org_soft_timeouts_enabled=None, control_plane_count=None): # noqa: E501
178
180
  """Cluster - a model defined in Swagger""" # noqa: E501
179
181
 
180
182
  self._kind = None
@@ -246,6 +248,7 @@ class Cluster(object):
246
248
  self._tags = None
247
249
  self._last_installation_preparation = None
248
250
  self._org_soft_timeouts_enabled = None
251
+ self._control_plane_count = None
249
252
  self.discriminator = None
250
253
 
251
254
  self.kind = kind
@@ -380,6 +383,8 @@ class Cluster(object):
380
383
  self.last_installation_preparation = last_installation_preparation
381
384
  if org_soft_timeouts_enabled is not None:
382
385
  self.org_soft_timeouts_enabled = org_soft_timeouts_enabled
386
+ if control_plane_count is not None:
387
+ self.control_plane_count = control_plane_count
383
388
 
384
389
  @property
385
390
  def kind(self):
@@ -2004,6 +2009,29 @@ class Cluster(object):
2004
2009
 
2005
2010
  self._org_soft_timeouts_enabled = org_soft_timeouts_enabled
2006
2011
 
2012
+ @property
2013
+ def control_plane_count(self):
2014
+ """Gets the control_plane_count of this Cluster. # noqa: E501
2015
+
2016
+ Specifies the required number of control plane nodes that should be part of the cluster. # noqa: E501
2017
+
2018
+ :return: The control_plane_count of this Cluster. # noqa: E501
2019
+ :rtype: int
2020
+ """
2021
+ return self._control_plane_count
2022
+
2023
+ @control_plane_count.setter
2024
+ def control_plane_count(self, control_plane_count):
2025
+ """Sets the control_plane_count of this Cluster.
2026
+
2027
+ Specifies the required number of control plane nodes that should be part of the cluster. # noqa: E501
2028
+
2029
+ :param control_plane_count: The control_plane_count of this Cluster. # noqa: E501
2030
+ :type: int
2031
+ """
2032
+
2033
+ self._control_plane_count = control_plane_count
2034
+
2007
2035
  def to_dict(self):
2008
2036
  """Returns the model properties as a dict"""
2009
2037
  result = {}
@@ -924,7 +924,7 @@ class ClusterCreateParams(object):
924
924
  def control_plane_count(self):
925
925
  """Gets the control_plane_count of this ClusterCreateParams. # noqa: E501
926
926
 
927
- The amount of control planes which should be part of the cluster. # noqa: E501
927
+ Specifies the required number of control plane nodes that should be part of the cluster. # noqa: E501
928
928
 
929
929
  :return: The control_plane_count of this ClusterCreateParams. # noqa: E501
930
930
  :rtype: int
@@ -935,7 +935,7 @@ class ClusterCreateParams(object):
935
935
  def control_plane_count(self, control_plane_count):
936
936
  """Sets the control_plane_count of this ClusterCreateParams.
937
937
 
938
- The amount of control planes which should be part of the cluster. # noqa: E501
938
+ Specifies the required number of control plane nodes that should be part of the cluster. # noqa: E501
939
939
 
940
940
  :param control_plane_count: The control_plane_count of this ClusterCreateParams. # noqa: E501
941
941
  :type: int
@@ -853,7 +853,7 @@ class V2ClusterUpdateParams(object):
853
853
  def control_plane_count(self):
854
854
  """Gets the control_plane_count of this V2ClusterUpdateParams. # noqa: E501
855
855
 
856
- The amount of control planes which should be part of the cluster. # noqa: E501
856
+ Specifies the required number of control plane nodes that should be part of the cluster. # noqa: E501
857
857
 
858
858
  :return: The control_plane_count of this V2ClusterUpdateParams. # noqa: E501
859
859
  :rtype: int
@@ -864,7 +864,7 @@ class V2ClusterUpdateParams(object):
864
864
  def control_plane_count(self, control_plane_count):
865
865
  """Sets the control_plane_count of this V2ClusterUpdateParams.
866
866
 
867
- The amount of control planes which should be part of the cluster. # noqa: E501
867
+ Specifies the required number of control plane nodes that should be part of the cluster. # noqa: E501
868
868
 
869
869
  :param control_plane_count: The control_plane_count of this V2ClusterUpdateParams. # noqa: E501
870
870
  :type: int
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: assisted-service-client
3
- Version: 2.36.0.post45
3
+ Version: 2.36.0.post46
4
4
  Summary: AssistedInstall
5
5
  Home-page: https://github.com/openshift/assisted-service
6
6
  Author: RedHat
@@ -17,8 +17,8 @@ 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=HaFURZ2Zcn14eHfojQVuCT7W6jmVly_hgCpgoeY-Pu8,5412
20
- assisted_service_client/models/cluster.py,sha256=4AUWsJFlTcB3tMqfh_F8km1xkhjedQz53IGffoX_5zQ,74773
21
- assisted_service_client/models/cluster_create_params.py,sha256=Dr7zJ-kNVTzy7dyDoHMf2cmR_V_svHwvunQDGA0BOD8,38747
20
+ assisted_service_client/models/cluster.py,sha256=eKGg1rQ-aBP29GjnCnoZZLu6-XVnuJ53wLMRDSUGkVw,75852
21
+ assisted_service_client/models/cluster_create_params.py,sha256=zpD737VDJif_QDzCKkGd4okCsHc4WGAcgbgXfiSHF-s,38793
22
22
  assisted_service_client/models/cluster_default_config.py,sha256=MXhboRxA2o4-lHR9baQCiehfksCV4XfsabSMqFfSv3U,12993
23
23
  assisted_service_client/models/cluster_finalizing_progress.py,sha256=lTBxx_NSDubtAg8aSXbxwWhW2XxPYJZ0ztUmozfEJhA,3325
24
24
  assisted_service_client/models/cluster_host_requirements.py,sha256=WA_ZAdFbM4jnENgyc1Hbwc41g651D8kVOpHFRZkCtoo,5883
@@ -182,7 +182,7 @@ assisted_service_client/models/upgrade_agent_response.py,sha256=OhvFdKCUZvb1awBX
182
182
  assisted_service_client/models/upgrade_agent_result.py,sha256=n0QImJ9nWvRC88hrBb5GLpGwq4h_YaGA-Rh6J7uxEeI,2481
183
183
  assisted_service_client/models/upgrade_channel.py,sha256=1zGictvdXO0SRJZfRamBovlh6MneEnQz0eIDI6BPK7E,4560
184
184
  assisted_service_client/models/usage.py,sha256=wP7af-XSqp3kWq8eiMumEz4vZnoy9FKko_IoITk8oac,4321
185
- assisted_service_client/models/v2_cluster_update_params.py,sha256=76Xjj5jNUYrG8VWsny0gkWcSh05LgW7YcRBvAmstJSw,35866
185
+ assisted_service_client/models/v2_cluster_update_params.py,sha256=xeUvps69i94w2NOynMfuN5m0U6kLMNbntsu_d2i1kLk,35912
186
186
  assisted_service_client/models/verified_vip.py,sha256=XbwwmYkF4nFHeyWU0dhDzLUizU65OBkG_h-J1LUXw_Q,4348
187
187
  assisted_service_client/models/verify_vip.py,sha256=ocOvQ8-jVV1xTH57rO4BXVDFVqRkTQnIrz5D-TGAXmg,3555
188
188
  assisted_service_client/models/verify_vips_request.py,sha256=cK1qzbhYcmD9BTZuQgv84wsbCZKozTySr6Acf8hI9LY,2388
@@ -379,7 +379,7 @@ test/test_versions.py,sha256=n-4xIBBiEuExya4yfHjxHbsRinb_vccUxwIrMxyEvfk,843
379
379
  test/test_versions_api.py,sha256=STXdU0DUr6Bmpp8YEBvPKo5ohNZKwxI0e_ddDi3F_1c,1087
380
380
  test/test_vip_type.py,sha256=MAse7Cn2PT8pBELxmmAa4X9K_fZ-jtvNTmrqQ0Hvc-o,837
381
381
  test/test_vip_verification.py,sha256=DwaHdagiOxRAPQ8TN541xSPn--MJEbRATBm1h3OmmZ4,901
382
- assisted_service_client-2.36.0.post45.dist-info/METADATA,sha256=zBbFIKj6YEkMHifjSlAV8MQl0bkefMTuqQpX3MgUCwo,26169
383
- assisted_service_client-2.36.0.post45.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
384
- assisted_service_client-2.36.0.post45.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
385
- assisted_service_client-2.36.0.post45.dist-info/RECORD,,
382
+ assisted_service_client-2.36.0.post46.dist-info/METADATA,sha256=dPBkxLpV5DppXqPM0p18dJe9D-FLl9O6FEph_pWgZjM,26169
383
+ assisted_service_client-2.36.0.post46.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
384
+ assisted_service_client-2.36.0.post46.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
385
+ assisted_service_client-2.36.0.post46.dist-info/RECORD,,