assisted-service-client 2.29.0.post66__py3-none-any.whl → 2.29.0.post68__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.
- assisted_service_client/models/cluster.py +31 -3
- assisted_service_client/models/finalizing_stage.py +1 -2
- {assisted_service_client-2.29.0.post66.dist-info → assisted_service_client-2.29.0.post68.dist-info}/METADATA +1 -1
- {assisted_service_client-2.29.0.post66.dist-info → assisted_service_client-2.29.0.post68.dist-info}/RECORD +6 -6
- {assisted_service_client-2.29.0.post66.dist-info → assisted_service_client-2.29.0.post68.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.29.0.post66.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 = {}
|
@@ -29,8 +29,7 @@ class FinalizingStage(object):
|
|
29
29
|
WAITING_FOR_FINALIZING = "Waiting for finalizing"
|
30
30
|
WAITING_FOR_CLUSTER_OPERATORS = "Waiting for cluster operators"
|
31
31
|
ADDING_ROUTER_CA = "Adding router ca"
|
32
|
-
|
33
|
-
APPLYING_MANIFESTS = "Applying manifests"
|
32
|
+
APPLYING_OLM_MANIFESTS = "Applying olm manifests"
|
34
33
|
WAITING_FOR_OLM_OPERATORS_CSV_INITIALIZATION = "Waiting for olm operators csv initialization"
|
35
34
|
WAITING_FOR_OLM_OPERATORS_CSV = "Waiting for olm operators csv"
|
36
35
|
DONE = "Done"
|
@@ -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
|
@@ -62,7 +62,7 @@ assisted_service_client/models/error.py,sha256=walFlNpGmfMxSd9Cmv4eZkNHQx-0tOXpr
|
|
62
62
|
assisted_service_client/models/event.py,sha256=PRfTmDyGf-75xERGe_xuutt-2H0ZpVFSH2f2RK-qHUc,10372
|
63
63
|
assisted_service_client/models/event_list.py,sha256=QTzSwTlY-Kx3OA1kgBnYDEvULyrdLv-7DAByMgqH7-c,2356
|
64
64
|
assisted_service_client/models/feature_support_level_id.py,sha256=8urxnim2qlErla72Kd7mzXrwtKClvVEJSdH98B478n4,3379
|
65
|
-
assisted_service_client/models/finalizing_stage.py,sha256=
|
65
|
+
assisted_service_client/models/finalizing_stage.py,sha256=pxRHilwElp5ARmn0O8zCs5Zz9UNRfXZ0t7sPiqUa2j4,2823
|
66
66
|
assisted_service_client/models/free_addresses_list.py,sha256=P2q1fq3cR6BJq4i4V-gXpfG32TWIhFX4zScGzdRQmpw,2388
|
67
67
|
assisted_service_client/models/free_addresses_request.py,sha256=6EjcZ6eCz2tGdz6axoRHwILSNz0-7_A6-dIjmxeFe1k,2400
|
68
68
|
assisted_service_client/models/free_network_addresses.py,sha256=4qbfXsYN_X6t0hJiF4JFhHbGEg8SEe-0OO5vn3cn8os,3896
|
@@ -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
|