assisted-service-client 2.28.0.post8__py3-none-any.whl → 2.28.0.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.
- assisted_service_client/models/cluster.py +1 -57
- assisted_service_client/models/cluster_create_params.py +1 -57
- assisted_service_client/models/v2_cluster_update_params.py +1 -57
- {assisted_service_client-2.28.0.post8.dist-info → assisted_service_client-2.28.0.post10.dist-info}/METADATA +1 -1
- {assisted_service_client-2.28.0.post8.dist-info → assisted_service_client-2.28.0.post10.dist-info}/RECORD +7 -7
- {assisted_service_client-2.28.0.post8.dist-info → assisted_service_client-2.28.0.post10.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.28.0.post8.dist-info → assisted_service_client-2.28.0.post10.dist-info}/top_level.txt +0 -0
@@ -48,11 +48,9 @@ class Cluster(object):
|
|
48
48
|
'cluster_network_cidr': 'str',
|
49
49
|
'cluster_network_host_prefix': 'int',
|
50
50
|
'service_network_cidr': 'str',
|
51
|
-
'api_vip': 'str',
|
52
51
|
'api_vips': 'list[ApiVip]',
|
53
52
|
'api_vip_dns_name': 'str',
|
54
53
|
'machine_network_cidr': 'str',
|
55
|
-
'ingress_vip': 'str',
|
56
54
|
'ingress_vips': 'list[IngressVip]',
|
57
55
|
'ssh_public_key': 'str',
|
58
56
|
'http_proxy': 'str',
|
@@ -121,11 +119,9 @@ class Cluster(object):
|
|
121
119
|
'cluster_network_cidr': 'cluster_network_cidr',
|
122
120
|
'cluster_network_host_prefix': 'cluster_network_host_prefix',
|
123
121
|
'service_network_cidr': 'service_network_cidr',
|
124
|
-
'api_vip': 'api_vip',
|
125
122
|
'api_vips': 'api_vips',
|
126
123
|
'api_vip_dns_name': 'api_vip_dns_name',
|
127
124
|
'machine_network_cidr': 'machine_network_cidr',
|
128
|
-
'ingress_vip': 'ingress_vip',
|
129
125
|
'ingress_vips': 'ingress_vips',
|
130
126
|
'ssh_public_key': 'ssh_public_key',
|
131
127
|
'http_proxy': 'http_proxy',
|
@@ -176,7 +172,7 @@ class Cluster(object):
|
|
176
172
|
'last_installation_preparation': 'last-installation-preparation'
|
177
173
|
}
|
178
174
|
|
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,
|
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
|
180
176
|
"""Cluster - a model defined in Swagger""" # noqa: E501
|
181
177
|
|
182
178
|
self._kind = None
|
@@ -196,11 +192,9 @@ class Cluster(object):
|
|
196
192
|
self._cluster_network_cidr = None
|
197
193
|
self._cluster_network_host_prefix = None
|
198
194
|
self._service_network_cidr = None
|
199
|
-
self._api_vip = None
|
200
195
|
self._api_vips = None
|
201
196
|
self._api_vip_dns_name = None
|
202
197
|
self._machine_network_cidr = None
|
203
|
-
self._ingress_vip = None
|
204
198
|
self._ingress_vips = None
|
205
199
|
self._ssh_public_key = None
|
206
200
|
self._http_proxy = None
|
@@ -281,16 +275,12 @@ class Cluster(object):
|
|
281
275
|
self.cluster_network_host_prefix = cluster_network_host_prefix
|
282
276
|
if service_network_cidr is not None:
|
283
277
|
self.service_network_cidr = service_network_cidr
|
284
|
-
if api_vip is not None:
|
285
|
-
self.api_vip = api_vip
|
286
278
|
if api_vips is not None:
|
287
279
|
self.api_vips = api_vips
|
288
280
|
if api_vip_dns_name is not None:
|
289
281
|
self.api_vip_dns_name = api_vip_dns_name
|
290
282
|
if machine_network_cidr is not None:
|
291
283
|
self.machine_network_cidr = machine_network_cidr
|
292
|
-
if ingress_vip is not None:
|
293
|
-
self.ingress_vip = ingress_vip
|
294
284
|
if ingress_vips is not None:
|
295
285
|
self.ingress_vips = ingress_vips
|
296
286
|
if ssh_public_key is not None:
|
@@ -791,29 +781,6 @@ class Cluster(object):
|
|
791
781
|
|
792
782
|
self._service_network_cidr = service_network_cidr
|
793
783
|
|
794
|
-
@property
|
795
|
-
def api_vip(self):
|
796
|
-
"""Gets the api_vip of this Cluster. # noqa: E501
|
797
|
-
|
798
|
-
(DEPRECATED) The virtual IP used to reach the OpenShift cluster's API. # noqa: E501
|
799
|
-
|
800
|
-
:return: The api_vip of this Cluster. # noqa: E501
|
801
|
-
:rtype: str
|
802
|
-
"""
|
803
|
-
return self._api_vip
|
804
|
-
|
805
|
-
@api_vip.setter
|
806
|
-
def api_vip(self, api_vip):
|
807
|
-
"""Sets the api_vip of this Cluster.
|
808
|
-
|
809
|
-
(DEPRECATED) The virtual IP used to reach the OpenShift cluster's API. # noqa: E501
|
810
|
-
|
811
|
-
:param api_vip: The api_vip of this Cluster. # noqa: E501
|
812
|
-
:type: str
|
813
|
-
"""
|
814
|
-
|
815
|
-
self._api_vip = api_vip
|
816
|
-
|
817
784
|
@property
|
818
785
|
def api_vips(self):
|
819
786
|
"""Gets the api_vips of this Cluster. # noqa: E501
|
@@ -883,29 +850,6 @@ class Cluster(object):
|
|
883
850
|
|
884
851
|
self._machine_network_cidr = machine_network_cidr
|
885
852
|
|
886
|
-
@property
|
887
|
-
def ingress_vip(self):
|
888
|
-
"""Gets the ingress_vip of this Cluster. # noqa: E501
|
889
|
-
|
890
|
-
(DEPRECATED) The virtual IP used for cluster ingress traffic. # noqa: E501
|
891
|
-
|
892
|
-
:return: The ingress_vip of this Cluster. # noqa: E501
|
893
|
-
:rtype: str
|
894
|
-
"""
|
895
|
-
return self._ingress_vip
|
896
|
-
|
897
|
-
@ingress_vip.setter
|
898
|
-
def ingress_vip(self, ingress_vip):
|
899
|
-
"""Sets the ingress_vip of this Cluster.
|
900
|
-
|
901
|
-
(DEPRECATED) The virtual IP used for cluster ingress traffic. # noqa: E501
|
902
|
-
|
903
|
-
:param ingress_vip: The ingress_vip of this Cluster. # noqa: E501
|
904
|
-
:type: str
|
905
|
-
"""
|
906
|
-
|
907
|
-
self._ingress_vip = ingress_vip
|
908
|
-
|
909
853
|
@property
|
910
854
|
def ingress_vips(self):
|
911
855
|
"""Gets the ingress_vips of this Cluster. # noqa: E501
|
@@ -39,9 +39,7 @@ class ClusterCreateParams(object):
|
|
39
39
|
'cluster_network_cidr': 'str',
|
40
40
|
'cluster_network_host_prefix': 'int',
|
41
41
|
'service_network_cidr': 'str',
|
42
|
-
'api_vip': 'str',
|
43
42
|
'api_vips': 'list[ApiVip]',
|
44
|
-
'ingress_vip': 'str',
|
45
43
|
'ingress_vips': 'list[IngressVip]',
|
46
44
|
'pull_secret': 'str',
|
47
45
|
'ssh_public_key': 'str',
|
@@ -74,9 +72,7 @@ class ClusterCreateParams(object):
|
|
74
72
|
'cluster_network_cidr': 'cluster_network_cidr',
|
75
73
|
'cluster_network_host_prefix': 'cluster_network_host_prefix',
|
76
74
|
'service_network_cidr': 'service_network_cidr',
|
77
|
-
'api_vip': 'api_vip',
|
78
75
|
'api_vips': 'api_vips',
|
79
|
-
'ingress_vip': 'ingress_vip',
|
80
76
|
'ingress_vips': 'ingress_vips',
|
81
77
|
'pull_secret': 'pull_secret',
|
82
78
|
'ssh_public_key': 'ssh_public_key',
|
@@ -100,7 +96,7 @@ class ClusterCreateParams(object):
|
|
100
96
|
'tags': 'tags'
|
101
97
|
}
|
102
98
|
|
103
|
-
def __init__(self, name=None, high_availability_mode='Full', openshift_version=None, ocp_release_image=None, base_dns_domain=None, cluster_network_cidr='10.128.0.0/14', cluster_network_host_prefix=None, service_network_cidr='172.30.0.0/16',
|
99
|
+
def __init__(self, name=None, high_availability_mode='Full', openshift_version=None, ocp_release_image=None, base_dns_domain=None, cluster_network_cidr='10.128.0.0/14', cluster_network_host_prefix=None, service_network_cidr='172.30.0.0/16', api_vips=None, ingress_vips=None, pull_secret=None, ssh_public_key=None, vip_dhcp_allocation=False, http_proxy=None, https_proxy=None, no_proxy=None, user_managed_networking=False, additional_ntp_source=None, olm_operators=None, hyperthreading='all', network_type=None, schedulable_masters=False, cluster_networks=None, service_networks=None, machine_networks=None, platform=None, cpu_architecture='x86_64', disk_encryption=None, ignition_endpoint=None, tags=None): # noqa: E501
|
104
100
|
"""ClusterCreateParams - a model defined in Swagger""" # noqa: E501
|
105
101
|
|
106
102
|
self._name = None
|
@@ -111,9 +107,7 @@ class ClusterCreateParams(object):
|
|
111
107
|
self._cluster_network_cidr = None
|
112
108
|
self._cluster_network_host_prefix = None
|
113
109
|
self._service_network_cidr = None
|
114
|
-
self._api_vip = None
|
115
110
|
self._api_vips = None
|
116
|
-
self._ingress_vip = None
|
117
111
|
self._ingress_vips = None
|
118
112
|
self._pull_secret = None
|
119
113
|
self._ssh_public_key = None
|
@@ -151,12 +145,8 @@ class ClusterCreateParams(object):
|
|
151
145
|
self.cluster_network_host_prefix = cluster_network_host_prefix
|
152
146
|
if service_network_cidr is not None:
|
153
147
|
self.service_network_cidr = service_network_cidr
|
154
|
-
if api_vip is not None:
|
155
|
-
self.api_vip = api_vip
|
156
148
|
if api_vips is not None:
|
157
149
|
self.api_vips = api_vips
|
158
|
-
if ingress_vip is not None:
|
159
|
-
self.ingress_vip = ingress_vip
|
160
150
|
if ingress_vips is not None:
|
161
151
|
self.ingress_vips = ingress_vips
|
162
152
|
self.pull_secret = pull_secret
|
@@ -401,29 +391,6 @@ class ClusterCreateParams(object):
|
|
401
391
|
|
402
392
|
self._service_network_cidr = service_network_cidr
|
403
393
|
|
404
|
-
@property
|
405
|
-
def api_vip(self):
|
406
|
-
"""Gets the api_vip of this ClusterCreateParams. # noqa: E501
|
407
|
-
|
408
|
-
(DEPRECATED) The virtual IP used to reach the OpenShift cluster's API. # noqa: E501
|
409
|
-
|
410
|
-
:return: The api_vip of this ClusterCreateParams. # noqa: E501
|
411
|
-
:rtype: str
|
412
|
-
"""
|
413
|
-
return self._api_vip
|
414
|
-
|
415
|
-
@api_vip.setter
|
416
|
-
def api_vip(self, api_vip):
|
417
|
-
"""Sets the api_vip of this ClusterCreateParams.
|
418
|
-
|
419
|
-
(DEPRECATED) The virtual IP used to reach the OpenShift cluster's API. # noqa: E501
|
420
|
-
|
421
|
-
:param api_vip: The api_vip of this ClusterCreateParams. # noqa: E501
|
422
|
-
:type: str
|
423
|
-
"""
|
424
|
-
|
425
|
-
self._api_vip = api_vip
|
426
|
-
|
427
394
|
@property
|
428
395
|
def api_vips(self):
|
429
396
|
"""Gets the api_vips of this ClusterCreateParams. # noqa: E501
|
@@ -447,29 +414,6 @@ class ClusterCreateParams(object):
|
|
447
414
|
|
448
415
|
self._api_vips = api_vips
|
449
416
|
|
450
|
-
@property
|
451
|
-
def ingress_vip(self):
|
452
|
-
"""Gets the ingress_vip of this ClusterCreateParams. # noqa: E501
|
453
|
-
|
454
|
-
(DEPRECATED) The virtual IP used for cluster ingress traffic. # noqa: E501
|
455
|
-
|
456
|
-
:return: The ingress_vip of this ClusterCreateParams. # noqa: E501
|
457
|
-
:rtype: str
|
458
|
-
"""
|
459
|
-
return self._ingress_vip
|
460
|
-
|
461
|
-
@ingress_vip.setter
|
462
|
-
def ingress_vip(self, ingress_vip):
|
463
|
-
"""Sets the ingress_vip of this ClusterCreateParams.
|
464
|
-
|
465
|
-
(DEPRECATED) The virtual IP used for cluster ingress traffic. # noqa: E501
|
466
|
-
|
467
|
-
:param ingress_vip: The ingress_vip of this ClusterCreateParams. # noqa: E501
|
468
|
-
:type: str
|
469
|
-
"""
|
470
|
-
|
471
|
-
self._ingress_vip = ingress_vip
|
472
|
-
|
473
417
|
@property
|
474
418
|
def ingress_vips(self):
|
475
419
|
"""Gets the ingress_vips of this ClusterCreateParams. # noqa: E501
|
@@ -37,9 +37,7 @@ class V2ClusterUpdateParams(object):
|
|
37
37
|
'platform': 'Platform',
|
38
38
|
'cluster_network_host_prefix': 'int',
|
39
39
|
'service_network_cidr': 'str',
|
40
|
-
'api_vip': 'str',
|
41
40
|
'api_vips': 'list[ApiVip]',
|
42
|
-
'ingress_vip': 'str',
|
43
41
|
'ingress_vips': 'list[IngressVip]',
|
44
42
|
'api_vip_dns_name': 'str',
|
45
43
|
'machine_network_cidr': 'str',
|
@@ -70,9 +68,7 @@ class V2ClusterUpdateParams(object):
|
|
70
68
|
'platform': 'platform',
|
71
69
|
'cluster_network_host_prefix': 'cluster_network_host_prefix',
|
72
70
|
'service_network_cidr': 'service_network_cidr',
|
73
|
-
'api_vip': 'api_vip',
|
74
71
|
'api_vips': 'api_vips',
|
75
|
-
'ingress_vip': 'ingress_vip',
|
76
72
|
'ingress_vips': 'ingress_vips',
|
77
73
|
'api_vip_dns_name': 'api_vip_dns_name',
|
78
74
|
'machine_network_cidr': 'machine_network_cidr',
|
@@ -96,7 +92,7 @@ class V2ClusterUpdateParams(object):
|
|
96
92
|
'tags': 'tags'
|
97
93
|
}
|
98
94
|
|
99
|
-
def __init__(self, name=None, base_dns_domain=None, cluster_network_cidr=None, platform=None, cluster_network_host_prefix=None, service_network_cidr=None,
|
95
|
+
def __init__(self, name=None, base_dns_domain=None, cluster_network_cidr=None, platform=None, cluster_network_host_prefix=None, service_network_cidr=None, api_vips=None, ingress_vips=None, api_vip_dns_name=None, machine_network_cidr=None, pull_secret=None, ssh_public_key=None, vip_dhcp_allocation=None, http_proxy=None, https_proxy=None, no_proxy=None, user_managed_networking=None, additional_ntp_source=None, olm_operators=None, hyperthreading=None, network_type=None, schedulable_masters=False, cluster_networks=None, service_networks=None, machine_networks=None, disk_encryption=None, ignition_endpoint=None, tags=None): # noqa: E501
|
100
96
|
"""V2ClusterUpdateParams - a model defined in Swagger""" # noqa: E501
|
101
97
|
|
102
98
|
self._name = None
|
@@ -105,9 +101,7 @@ class V2ClusterUpdateParams(object):
|
|
105
101
|
self._platform = None
|
106
102
|
self._cluster_network_host_prefix = None
|
107
103
|
self._service_network_cidr = None
|
108
|
-
self._api_vip = None
|
109
104
|
self._api_vips = None
|
110
|
-
self._ingress_vip = None
|
111
105
|
self._ingress_vips = None
|
112
106
|
self._api_vip_dns_name = None
|
113
107
|
self._machine_network_cidr = None
|
@@ -143,12 +137,8 @@ class V2ClusterUpdateParams(object):
|
|
143
137
|
self.cluster_network_host_prefix = cluster_network_host_prefix
|
144
138
|
if service_network_cidr is not None:
|
145
139
|
self.service_network_cidr = service_network_cidr
|
146
|
-
if api_vip is not None:
|
147
|
-
self.api_vip = api_vip
|
148
140
|
if api_vips is not None:
|
149
141
|
self.api_vips = api_vips
|
150
|
-
if ingress_vip is not None:
|
151
|
-
self.ingress_vip = ingress_vip
|
152
142
|
if ingress_vips is not None:
|
153
143
|
self.ingress_vips = ingress_vips
|
154
144
|
if api_vip_dns_name is not None:
|
@@ -336,29 +326,6 @@ class V2ClusterUpdateParams(object):
|
|
336
326
|
|
337
327
|
self._service_network_cidr = service_network_cidr
|
338
328
|
|
339
|
-
@property
|
340
|
-
def api_vip(self):
|
341
|
-
"""Gets the api_vip of this V2ClusterUpdateParams. # noqa: E501
|
342
|
-
|
343
|
-
(DEPRECATED) The virtual IP used to reach the OpenShift cluster's API. # noqa: E501
|
344
|
-
|
345
|
-
:return: The api_vip of this V2ClusterUpdateParams. # noqa: E501
|
346
|
-
:rtype: str
|
347
|
-
"""
|
348
|
-
return self._api_vip
|
349
|
-
|
350
|
-
@api_vip.setter
|
351
|
-
def api_vip(self, api_vip):
|
352
|
-
"""Sets the api_vip of this V2ClusterUpdateParams.
|
353
|
-
|
354
|
-
(DEPRECATED) The virtual IP used to reach the OpenShift cluster's API. # noqa: E501
|
355
|
-
|
356
|
-
:param api_vip: The api_vip of this V2ClusterUpdateParams. # noqa: E501
|
357
|
-
:type: str
|
358
|
-
"""
|
359
|
-
|
360
|
-
self._api_vip = api_vip
|
361
|
-
|
362
329
|
@property
|
363
330
|
def api_vips(self):
|
364
331
|
"""Gets the api_vips of this V2ClusterUpdateParams. # noqa: E501
|
@@ -382,29 +349,6 @@ class V2ClusterUpdateParams(object):
|
|
382
349
|
|
383
350
|
self._api_vips = api_vips
|
384
351
|
|
385
|
-
@property
|
386
|
-
def ingress_vip(self):
|
387
|
-
"""Gets the ingress_vip of this V2ClusterUpdateParams. # noqa: E501
|
388
|
-
|
389
|
-
(DEPRECATED) The virtual IP used for cluster ingress traffic. # noqa: E501
|
390
|
-
|
391
|
-
:return: The ingress_vip of this V2ClusterUpdateParams. # noqa: E501
|
392
|
-
:rtype: str
|
393
|
-
"""
|
394
|
-
return self._ingress_vip
|
395
|
-
|
396
|
-
@ingress_vip.setter
|
397
|
-
def ingress_vip(self, ingress_vip):
|
398
|
-
"""Sets the ingress_vip of this V2ClusterUpdateParams.
|
399
|
-
|
400
|
-
(DEPRECATED) The virtual IP used for cluster ingress traffic. # noqa: E501
|
401
|
-
|
402
|
-
:param ingress_vip: The ingress_vip of this V2ClusterUpdateParams. # noqa: E501
|
403
|
-
:type: str
|
404
|
-
"""
|
405
|
-
|
406
|
-
self._ingress_vip = ingress_vip
|
407
|
-
|
408
352
|
@property
|
409
353
|
def ingress_vips(self):
|
410
354
|
"""Gets the ingress_vips of this V2ClusterUpdateParams. # noqa: E501
|
@@ -16,8 +16,8 @@ assisted_service_client/models/api_vip_connectivity_response.py,sha256=g_lug17OF
|
|
16
16
|
assisted_service_client/models/architecture_support_level_id.py,sha256=hlG08k4mpxplccAeBy2aiF41lp7zcTUyxPP98x2mXUg,2711
|
17
17
|
assisted_service_client/models/bind_host_params.py,sha256=R6AntLnkrOE_uVaRECc_gx1QPfUmPsVNI06LoDQJONI,3170
|
18
18
|
assisted_service_client/models/boot.py,sha256=J_7657HQPy3sYGKHAmvAJ_fn6piE-cv3RjasFY5uXi4,4571
|
19
|
-
assisted_service_client/models/cluster.py,sha256=
|
20
|
-
assisted_service_client/models/cluster_create_params.py,sha256=
|
19
|
+
assisted_service_client/models/cluster.py,sha256=2RrLHJTju2_YlbpbtEdNQB8ydenQ35sSdd34jni6mPo,73611
|
20
|
+
assisted_service_client/models/cluster_create_params.py,sha256=QwwNUOj2o6X9QbdEPX6ZNQy-zkuyZ373pRvn2Qw3o20,37556
|
21
21
|
assisted_service_client/models/cluster_default_config.py,sha256=MXhboRxA2o4-lHR9baQCiehfksCV4XfsabSMqFfSv3U,12993
|
22
22
|
assisted_service_client/models/cluster_host_requirements.py,sha256=WA_ZAdFbM4jnENgyc1Hbwc41g651D8kVOpHFRZkCtoo,5883
|
23
23
|
assisted_service_client/models/cluster_host_requirements_details.py,sha256=uIdGCQ_eY-8urh9WV2SRNNHSt9dy9_Zjy5YY25eAauc,9954
|
@@ -170,7 +170,7 @@ assisted_service_client/models/upgrade_agent_request.py,sha256=GH3L6mbs4sAlCDBhG
|
|
170
170
|
assisted_service_client/models/upgrade_agent_response.py,sha256=OhvFdKCUZvb1awBX7vZzL6xwtRnA9PJE3YnpsZV5F3A,4265
|
171
171
|
assisted_service_client/models/upgrade_agent_result.py,sha256=n0QImJ9nWvRC88hrBb5GLpGwq4h_YaGA-Rh6J7uxEeI,2481
|
172
172
|
assisted_service_client/models/usage.py,sha256=wP7af-XSqp3kWq8eiMumEz4vZnoy9FKko_IoITk8oac,4321
|
173
|
-
assisted_service_client/models/v2_cluster_update_params.py,sha256=
|
173
|
+
assisted_service_client/models/v2_cluster_update_params.py,sha256=EsbVWKAQ2akyZk68KGDMvIHAN8X2EK9ZuFvLf3H-1j0,34777
|
174
174
|
assisted_service_client/models/verified_vip.py,sha256=XbwwmYkF4nFHeyWU0dhDzLUizU65OBkG_h-J1LUXw_Q,4348
|
175
175
|
assisted_service_client/models/verify_vip.py,sha256=ocOvQ8-jVV1xTH57rO4BXVDFVqRkTQnIrz5D-TGAXmg,3555
|
176
176
|
assisted_service_client/models/verify_vips_request.py,sha256=cK1qzbhYcmD9BTZuQgv84wsbCZKozTySr6Acf8hI9LY,2388
|
@@ -355,7 +355,7 @@ test/test_versions.py,sha256=n-4xIBBiEuExya4yfHjxHbsRinb_vccUxwIrMxyEvfk,843
|
|
355
355
|
test/test_versions_api.py,sha256=1I1X8zO7RRpqgvWhuV05bK2PnSQfYjN7_d4eBYkum1s,967
|
356
356
|
test/test_vip_type.py,sha256=MAse7Cn2PT8pBELxmmAa4X9K_fZ-jtvNTmrqQ0Hvc-o,837
|
357
357
|
test/test_vip_verification.py,sha256=DwaHdagiOxRAPQ8TN541xSPn--MJEbRATBm1h3OmmZ4,901
|
358
|
-
assisted_service_client-2.28.0.
|
359
|
-
assisted_service_client-2.28.0.
|
360
|
-
assisted_service_client-2.28.0.
|
361
|
-
assisted_service_client-2.28.0.
|
358
|
+
assisted_service_client-2.28.0.post10.dist-info/METADATA,sha256=uY0yiV4eIkhdDfGXIt1vTONufmIuX15xL0RkMbCJOH0,24871
|
359
|
+
assisted_service_client-2.28.0.post10.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
360
|
+
assisted_service_client-2.28.0.post10.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
|
361
|
+
assisted_service_client-2.28.0.post10.dist-info/RECORD,,
|
File without changes
|
File without changes
|