assisted-service-client 2.29.0.post67__py3-none-any.whl → 2.29.0.post68__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- assisted_service_client/models/cluster.py +31 -3
- {assisted_service_client-2.29.0.post67.dist-info → assisted_service_client-2.29.0.post68.dist-info}/METADATA +1 -1
- {assisted_service_client-2.29.0.post67.dist-info → assisted_service_client-2.29.0.post68.dist-info}/RECORD +5 -5
- {assisted_service_client-2.29.0.post67.dist-info → assisted_service_client-2.29.0.post68.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.29.0.post67.dist-info → assisted_service_client-2.29.0.post68.dist-info}/top_level.txt +0 -0
@@ -98,7 +98,8 @@ class Cluster(object):
|
|
98
98
|
'ignition_endpoint': 'IgnitionEndpoint',
|
99
99
|
'imported': 'bool',
|
100
100
|
'tags': 'str',
|
101
|
-
'last_installation_preparation': 'LastInstallationPreparation'
|
101
|
+
'last_installation_preparation': 'LastInstallationPreparation',
|
102
|
+
'org_soft_timeouts_enabled': 'bool'
|
102
103
|
}
|
103
104
|
|
104
105
|
attribute_map = {
|
@@ -169,10 +170,11 @@ class Cluster(object):
|
|
169
170
|
'ignition_endpoint': 'ignition_endpoint',
|
170
171
|
'imported': 'imported',
|
171
172
|
'tags': 'tags',
|
172
|
-
'last_installation_preparation': 'last-installation-preparation'
|
173
|
+
'last_installation_preparation': 'last-installation-preparation',
|
174
|
+
'org_soft_timeouts_enabled': 'org_soft_timeouts_enabled'
|
173
175
|
}
|
174
176
|
|
175
|
-
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): # noqa: E501
|
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
|
176
178
|
"""Cluster - a model defined in Swagger""" # noqa: E501
|
177
179
|
|
178
180
|
self._kind = None
|
@@ -243,6 +245,7 @@ class Cluster(object):
|
|
243
245
|
self._imported = None
|
244
246
|
self._tags = None
|
245
247
|
self._last_installation_preparation = None
|
248
|
+
self._org_soft_timeouts_enabled = None
|
246
249
|
self.discriminator = None
|
247
250
|
|
248
251
|
self.kind = kind
|
@@ -375,6 +378,8 @@ class Cluster(object):
|
|
375
378
|
self.tags = tags
|
376
379
|
if last_installation_preparation is not None:
|
377
380
|
self.last_installation_preparation = last_installation_preparation
|
381
|
+
if org_soft_timeouts_enabled is not None:
|
382
|
+
self.org_soft_timeouts_enabled = org_soft_timeouts_enabled
|
378
383
|
|
379
384
|
@property
|
380
385
|
def kind(self):
|
@@ -1976,6 +1981,29 @@ class Cluster(object):
|
|
1976
1981
|
|
1977
1982
|
self._last_installation_preparation = last_installation_preparation
|
1978
1983
|
|
1984
|
+
@property
|
1985
|
+
def org_soft_timeouts_enabled(self):
|
1986
|
+
"""Gets the org_soft_timeouts_enabled of this Cluster. # noqa: E501
|
1987
|
+
|
1988
|
+
Indication if organization soft timeouts is enabled for the cluster. # noqa: E501
|
1989
|
+
|
1990
|
+
:return: The org_soft_timeouts_enabled of this Cluster. # noqa: E501
|
1991
|
+
:rtype: bool
|
1992
|
+
"""
|
1993
|
+
return self._org_soft_timeouts_enabled
|
1994
|
+
|
1995
|
+
@org_soft_timeouts_enabled.setter
|
1996
|
+
def org_soft_timeouts_enabled(self, org_soft_timeouts_enabled):
|
1997
|
+
"""Sets the org_soft_timeouts_enabled of this Cluster.
|
1998
|
+
|
1999
|
+
Indication if organization soft timeouts is enabled for the cluster. # noqa: E501
|
2000
|
+
|
2001
|
+
:param org_soft_timeouts_enabled: The org_soft_timeouts_enabled of this Cluster. # noqa: E501
|
2002
|
+
:type: bool
|
2003
|
+
"""
|
2004
|
+
|
2005
|
+
self._org_soft_timeouts_enabled = org_soft_timeouts_enabled
|
2006
|
+
|
1979
2007
|
def to_dict(self):
|
1980
2008
|
"""Returns the model properties as a dict"""
|
1981
2009
|
result = {}
|
@@ -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=J_7657HQPy3sYGKHAmvAJ_fn6piE-cv3RjasFY5uXi4,4571
|
20
|
-
assisted_service_client/models/cluster.py,sha256=
|
20
|
+
assisted_service_client/models/cluster.py,sha256=4AUWsJFlTcB3tMqfh_F8km1xkhjedQz53IGffoX_5zQ,74773
|
21
21
|
assisted_service_client/models/cluster_create_params.py,sha256=QwwNUOj2o6X9QbdEPX6ZNQy-zkuyZ373pRvn2Qw3o20,37556
|
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
|
@@ -365,7 +365,7 @@ test/test_versions.py,sha256=n-4xIBBiEuExya4yfHjxHbsRinb_vccUxwIrMxyEvfk,843
|
|
365
365
|
test/test_versions_api.py,sha256=1I1X8zO7RRpqgvWhuV05bK2PnSQfYjN7_d4eBYkum1s,967
|
366
366
|
test/test_vip_type.py,sha256=MAse7Cn2PT8pBELxmmAa4X9K_fZ-jtvNTmrqQ0Hvc-o,837
|
367
367
|
test/test_vip_verification.py,sha256=DwaHdagiOxRAPQ8TN541xSPn--MJEbRATBm1h3OmmZ4,901
|
368
|
-
assisted_service_client-2.29.0.
|
369
|
-
assisted_service_client-2.29.0.
|
370
|
-
assisted_service_client-2.29.0.
|
371
|
-
assisted_service_client-2.29.0.
|
368
|
+
assisted_service_client-2.29.0.post68.dist-info/METADATA,sha256=BZcIVJN2ziuVgnCMYxPG9aS1jPUGz4_O4yABuD0cKU0,25380
|
369
|
+
assisted_service_client-2.29.0.post68.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
370
|
+
assisted_service_client-2.29.0.post68.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
|
371
|
+
assisted_service_client-2.29.0.post68.dist-info/RECORD,,
|
File without changes
|
File without changes
|