assisted-service-client 2.40.1.post9__py3-none-any.whl → 2.40.1.post10__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.

@@ -1726,7 +1726,7 @@ class Cluster(object):
1726
1726
  def hyperthreading(self):
1727
1727
  """Gets the hyperthreading of this Cluster. # noqa: E501
1728
1728
 
1729
- Enable/disable hyperthreading on master nodes, worker nodes, or all nodes # noqa: E501
1729
+ Enable/disable hyperthreading on master nodes, arbiter nodes, worker nodes, or a combination of them. # noqa: E501
1730
1730
 
1731
1731
  :return: The hyperthreading of this Cluster. # noqa: E501
1732
1732
  :rtype: str
@@ -1737,12 +1737,12 @@ class Cluster(object):
1737
1737
  def hyperthreading(self, hyperthreading):
1738
1738
  """Sets the hyperthreading of this Cluster.
1739
1739
 
1740
- Enable/disable hyperthreading on master nodes, worker nodes, or all nodes # noqa: E501
1740
+ Enable/disable hyperthreading on master nodes, arbiter nodes, worker nodes, or a combination of them. # noqa: E501
1741
1741
 
1742
1742
  :param hyperthreading: The hyperthreading of this Cluster. # noqa: E501
1743
1743
  :type: str
1744
1744
  """
1745
- allowed_values = ["masters", "workers", "all", "none"] # noqa: E501
1745
+ allowed_values = ["none", "masters", "arbiters", "workers", "masters,arbiters", "masters,workers", "arbiters,workers", "masters,arbiters,workers", "all"] # noqa: E501
1746
1746
  if hyperthreading not in allowed_values:
1747
1747
  raise ValueError(
1748
1748
  "Invalid value for `hyperthreading` ({0}), must be one of {1}" # noqa: E501
@@ -660,7 +660,7 @@ class ClusterCreateParams(object):
660
660
  def hyperthreading(self):
661
661
  """Gets the hyperthreading of this ClusterCreateParams. # noqa: E501
662
662
 
663
- Enable/disable hyperthreading on master nodes, worker nodes, or all nodes. # noqa: E501
663
+ Enable/disable hyperthreading on master nodes, arbiter nodes, worker nodes, or a combination of them. # noqa: E501
664
664
 
665
665
  :return: The hyperthreading of this ClusterCreateParams. # noqa: E501
666
666
  :rtype: str
@@ -671,12 +671,12 @@ class ClusterCreateParams(object):
671
671
  def hyperthreading(self, hyperthreading):
672
672
  """Sets the hyperthreading of this ClusterCreateParams.
673
673
 
674
- Enable/disable hyperthreading on master nodes, worker nodes, or all nodes. # noqa: E501
674
+ Enable/disable hyperthreading on master nodes, arbiter nodes, worker nodes, or a combination of them. # noqa: E501
675
675
 
676
676
  :param hyperthreading: The hyperthreading of this ClusterCreateParams. # noqa: E501
677
677
  :type: str
678
678
  """
679
- allowed_values = ["masters", "workers", "none", "all"] # noqa: E501
679
+ allowed_values = ["none", "masters", "arbiters", "workers", "masters,arbiters", "masters,workers", "arbiters,workers", "masters,arbiters,workers", "all"] # noqa: E501
680
680
  if hyperthreading not in allowed_values:
681
681
  raise ValueError(
682
682
  "Invalid value for `hyperthreading` ({0}), must be one of {1}" # noqa: E501
@@ -61,7 +61,7 @@ class DiskEncryption(object):
61
61
  def enable_on(self):
62
62
  """Gets the enable_on of this DiskEncryption. # noqa: E501
63
63
 
64
- Enable/disable disk encryption on master nodes, worker nodes, or all nodes. # noqa: E501
64
+ Enable/disable disk encryption on master nodes, arbiter nodes, worker nodes, or a combination of them. # noqa: E501
65
65
 
66
66
  :return: The enable_on of this DiskEncryption. # noqa: E501
67
67
  :rtype: str
@@ -72,12 +72,12 @@ class DiskEncryption(object):
72
72
  def enable_on(self, enable_on):
73
73
  """Sets the enable_on of this DiskEncryption.
74
74
 
75
- Enable/disable disk encryption on master nodes, worker nodes, or all nodes. # noqa: E501
75
+ Enable/disable disk encryption on master nodes, arbiter nodes, worker nodes, or a combination of them. # noqa: E501
76
76
 
77
77
  :param enable_on: The enable_on of this DiskEncryption. # noqa: E501
78
78
  :type: str
79
79
  """
80
- allowed_values = ["none", "all", "masters", "workers"] # noqa: E501
80
+ allowed_values = ["none", "masters", "arbiters", "workers", "masters,arbiters", "masters,workers", "arbiters,workers", "masters,arbiters,workers", "all"] # noqa: E501
81
81
  if enable_on not in allowed_values:
82
82
  raise ValueError(
83
83
  "Invalid value for `enable_on` ({0}), must be one of {1}" # noqa: E501
@@ -639,7 +639,7 @@ class V2ClusterUpdateParams(object):
639
639
  def hyperthreading(self):
640
640
  """Gets the hyperthreading of this V2ClusterUpdateParams. # noqa: E501
641
641
 
642
- Enable/disable hyperthreading on master nodes, worker nodes, or all nodes. # noqa: E501
642
+ Enable/disable hyperthreading on master nodes, arbiter nodes, worker nodes, or a combination of them. # noqa: E501
643
643
 
644
644
  :return: The hyperthreading of this V2ClusterUpdateParams. # noqa: E501
645
645
  :rtype: str
@@ -650,12 +650,12 @@ class V2ClusterUpdateParams(object):
650
650
  def hyperthreading(self, hyperthreading):
651
651
  """Sets the hyperthreading of this V2ClusterUpdateParams.
652
652
 
653
- Enable/disable hyperthreading on master nodes, worker nodes, or all nodes. # noqa: E501
653
+ Enable/disable hyperthreading on master nodes, arbiter nodes, worker nodes, or a combination of them. # noqa: E501
654
654
 
655
655
  :param hyperthreading: The hyperthreading of this V2ClusterUpdateParams. # noqa: E501
656
656
  :type: str
657
657
  """
658
- allowed_values = ["masters", "workers", "all", "none"] # noqa: E501
658
+ allowed_values = ["none", "masters", "arbiters", "workers", "masters,arbiters", "masters,workers", "arbiters,workers", "masters,arbiters,workers", "all"] # noqa: E501
659
659
  if hyperthreading not in allowed_values:
660
660
  raise ValueError(
661
661
  "Invalid value for `hyperthreading` ({0}), must be one of {1}" # noqa: E501
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: assisted-service-client
3
- Version: 2.40.1.post9
3
+ Version: 2.40.1.post10
4
4
  Summary: AssistedInstall
5
5
  Home-page: https://github.com/openshift/assisted-service
6
6
  Author: RedHat
@@ -18,8 +18,8 @@ assisted_service_client/models/architecture_support_level_id.py,sha256=hlG08k4mp
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
20
  assisted_service_client/models/bundle.py,sha256=G50_FlJFNmVz13p9CI-EOnaAyKX0kd4p_2xOBwOUFFU,5668
21
- assisted_service_client/models/cluster.py,sha256=dFG-5gEqqXxurEl_zcXaS_vel_bW6zPJKWnJtAltwCw,76726
22
- assisted_service_client/models/cluster_create_params.py,sha256=J-VvUpdbFQ1F_yAdKvnzOP6B_w3exRwEDT1RrEWatPM,39783
21
+ assisted_service_client/models/cluster.py,sha256=TwYYOi6u04_fs2zQp-LGMCYAGvkX1SMzxli2OiaWMwo,76881
22
+ assisted_service_client/models/cluster_create_params.py,sha256=iOZ7Q6DyJ3GVftL9o5JwOzdsDMD0kZS3B73eFlN_whU,39936
23
23
  assisted_service_client/models/cluster_default_config.py,sha256=MXhboRxA2o4-lHR9baQCiehfksCV4XfsabSMqFfSv3U,12993
24
24
  assisted_service_client/models/cluster_finalizing_progress.py,sha256=lTBxx_NSDubtAg8aSXbxwWhW2XxPYJZ0ztUmozfEJhA,3325
25
25
  assisted_service_client/models/cluster_host_requirements.py,sha256=WA_ZAdFbM4jnENgyc1Hbwc41g651D8kVOpHFRZkCtoo,5883
@@ -46,7 +46,7 @@ assisted_service_client/models/dhcp_allocation_request.py,sha256=VxHpM8MXlQrXLST
46
46
  assisted_service_client/models/dhcp_allocation_response.py,sha256=FC54EnUen0y6wkDtvFUA62oHKHcoX3cEfft2i54NA44,6700
47
47
  assisted_service_client/models/disk.py,sha256=8uPYKO3bE8TdnK_PyjkvFIDWd06MnRFnQqG9HvJBVsg,17194
48
48
  assisted_service_client/models/disk_config_params.py,sha256=9Uefw5UTnF5h-psWu_CR0bz5ZJWqzAofyIQ8ahf0JAQ,3626
49
- assisted_service_client/models/disk_encryption.py,sha256=p0fnBJcLHPNcBg_Kj_YXucgns1Osz3Mv0xdTrdBxHxg,5493
49
+ assisted_service_client/models/disk_encryption.py,sha256=eAl0jhRJ1hvN5R0HckT8sexQdq9X-x-F2sQzL8BYsEk,5646
50
50
  assisted_service_client/models/disk_info.py,sha256=hm7ys9-b1jk3yaNR3zagO7Xo6uhcsH4SdIVk36mBsfw,4133
51
51
  assisted_service_client/models/disk_installation_eligibility.py,sha256=LNoVzk5YOmEQ_VVT-2VeYntGvE-IcdHAEwg0sZTdZwI,4439
52
52
  assisted_service_client/models/disk_role.py,sha256=I0-lQgkPusZ0kzjbRH4KzqQPxlCty8jyBwIotZBH2Oo,2435
@@ -184,7 +184,7 @@ assisted_service_client/models/upgrade_agent_response.py,sha256=OhvFdKCUZvb1awBX
184
184
  assisted_service_client/models/upgrade_agent_result.py,sha256=n0QImJ9nWvRC88hrBb5GLpGwq4h_YaGA-Rh6J7uxEeI,2481
185
185
  assisted_service_client/models/upgrade_channel.py,sha256=1zGictvdXO0SRJZfRamBovlh6MneEnQz0eIDI6BPK7E,4560
186
186
  assisted_service_client/models/usage.py,sha256=wP7af-XSqp3kWq8eiMumEz4vZnoy9FKko_IoITk8oac,4321
187
- assisted_service_client/models/v2_cluster_update_params.py,sha256=KJvTJQzG-DzLCbrLz3C-o3jOJqgsvhXauvqEoGDYClI,36910
187
+ assisted_service_client/models/v2_cluster_update_params.py,sha256=IPE4P_D-E_JxmLWdzru8ZskCX4yDIHSJIuSO7VUKlxc,37063
188
188
  assisted_service_client/models/verified_vip.py,sha256=XbwwmYkF4nFHeyWU0dhDzLUizU65OBkG_h-J1LUXw_Q,4348
189
189
  assisted_service_client/models/verify_vip.py,sha256=ocOvQ8-jVV1xTH57rO4BXVDFVqRkTQnIrz5D-TGAXmg,3555
190
190
  assisted_service_client/models/verify_vips_request.py,sha256=cK1qzbhYcmD9BTZuQgv84wsbCZKozTySr6Acf8hI9LY,2388
@@ -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.40.1.post9.dist-info/METADATA,sha256=ACqq6HUXN5vubsFosuZqCshLBAaYQWZiQJAWKLAUmDw,26526
387
- assisted_service_client-2.40.1.post9.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
388
- assisted_service_client-2.40.1.post9.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
389
- assisted_service_client-2.40.1.post9.dist-info/RECORD,,
386
+ assisted_service_client-2.40.1.post10.dist-info/METADATA,sha256=O0G7JBhtwpGFh15MVKWgHOTBFRjhZ6DJjjdYt1hFJLU,26527
387
+ assisted_service_client-2.40.1.post10.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
388
+ assisted_service_client-2.40.1.post10.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
389
+ assisted_service_client-2.40.1.post10.dist-info/RECORD,,