assisted-service-client 2.35.0.post67__py3-none-any.whl → 2.36.0.post5__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.
- assisted_service_client/api/events_api.py +1 -1
- assisted_service_client/api/installer_api.py +3 -3
- assisted_service_client/configuration.py +7 -0
- assisted_service_client/models/cluster_validation_id.py +6 -0
- assisted_service_client/models/feature_support_level_id.py +6 -0
- assisted_service_client/models/host_validation_id.py +6 -0
- {assisted_service_client-2.35.0.post67.dist-info → assisted_service_client-2.36.0.post5.dist-info}/METADATA +12 -1
- {assisted_service_client-2.35.0.post67.dist-info → assisted_service_client-2.36.0.post5.dist-info}/RECORD +10 -10
- {assisted_service_client-2.35.0.post67.dist-info → assisted_service_client-2.36.0.post5.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.35.0.post67.dist-info → assisted_service_client-2.36.0.post5.dist-info}/top_level.txt +0 -0
|
@@ -157,7 +157,7 @@ class EventsApi(object):
|
|
|
157
157
|
['application/json']) # noqa: E501
|
|
158
158
|
|
|
159
159
|
# Authentication setting
|
|
160
|
-
auth_settings = ['urlAuth', 'userAuth'] # noqa: E501
|
|
160
|
+
auth_settings = ['urlAuth', 'userAuth', 'watcherAuth'] # noqa: E501
|
|
161
161
|
|
|
162
162
|
return self.api_client.call_api(
|
|
163
163
|
'/v2/events', 'GET',
|
|
@@ -1160,7 +1160,7 @@ class InstallerApi(object):
|
|
|
1160
1160
|
['application/json']) # noqa: E501
|
|
1161
1161
|
|
|
1162
1162
|
# Authentication setting
|
|
1163
|
-
auth_settings = ['userAuth'] # noqa: E501
|
|
1163
|
+
auth_settings = ['userAuth', 'watcherAuth'] # noqa: E501
|
|
1164
1164
|
|
|
1165
1165
|
return self.api_client.call_api(
|
|
1166
1166
|
'/v2/infra-envs', 'GET',
|
|
@@ -2848,7 +2848,7 @@ class InstallerApi(object):
|
|
|
2848
2848
|
['application/json']) # noqa: E501
|
|
2849
2849
|
|
|
2850
2850
|
# Authentication setting
|
|
2851
|
-
auth_settings = ['agentAuth', 'userAuth'] # noqa: E501
|
|
2851
|
+
auth_settings = ['agentAuth', 'userAuth', 'watcherAuth'] # noqa: E501
|
|
2852
2852
|
|
|
2853
2853
|
return self.api_client.call_api(
|
|
2854
2854
|
'/v2/clusters/{cluster_id}', 'GET',
|
|
@@ -4406,7 +4406,7 @@ class InstallerApi(object):
|
|
|
4406
4406
|
['application/json']) # noqa: E501
|
|
4407
4407
|
|
|
4408
4408
|
# Authentication setting
|
|
4409
|
-
auth_settings = ['userAuth'] # noqa: E501
|
|
4409
|
+
auth_settings = ['userAuth', 'watcherAuth'] # noqa: E501
|
|
4410
4410
|
|
|
4411
4411
|
return self.api_client.call_api(
|
|
4412
4412
|
'/v2/clusters', 'GET',
|
|
@@ -264,6 +264,13 @@ class Configuration(object):
|
|
|
264
264
|
'key': 'Authorization',
|
|
265
265
|
'value': self.get_api_key_with_prefix('Authorization')
|
|
266
266
|
},
|
|
267
|
+
'watcherAuth':
|
|
268
|
+
{
|
|
269
|
+
'type': 'api_key',
|
|
270
|
+
'in': 'header',
|
|
271
|
+
'key': 'Watcher-Authorization',
|
|
272
|
+
'value': self.get_api_key_with_prefix('Watcher-Authorization')
|
|
273
|
+
},
|
|
267
274
|
|
|
268
275
|
}
|
|
269
276
|
|
|
@@ -51,6 +51,12 @@ class ClusterValidationId(object):
|
|
|
51
51
|
MTV_REQUIREMENTS_SATISFIED = "mtv-requirements-satisfied"
|
|
52
52
|
NETWORK_TYPE_VALID = "network-type-valid"
|
|
53
53
|
PLATFORM_REQUIREMENTS_SATISFIED = "platform-requirements-satisfied"
|
|
54
|
+
NODE_FEATURE_DISCOVERY_REQUIREMENTS_SATISFIED = "node-feature-discovery-requirements-satisfied"
|
|
55
|
+
NVIDIA_GPU_REQUIREMENTS_SATISFIED = "nvidia-gpu-requirements-satisfied"
|
|
56
|
+
PIPELINES_REQUIREMENTS_SATISFIED = "pipelines-requirements-satisfied"
|
|
57
|
+
SERVICEMESH_REQUIREMENTS_SATISFIED = "servicemesh-requirements-satisfied"
|
|
58
|
+
SERVERLESS_REQUIREMENTS_SATISFIED = "serverless-requirements-satisfied"
|
|
59
|
+
OPENSHIFT_AI_REQUIREMENTS_SATISFIED = "openshift-ai-requirements-satisfied"
|
|
54
60
|
|
|
55
61
|
"""
|
|
56
62
|
Attributes:
|
|
@@ -52,6 +52,12 @@ class FeatureSupportLevelId(object):
|
|
|
52
52
|
EXTERNAL_PLATFORM = "EXTERNAL_PLATFORM"
|
|
53
53
|
OVN_NETWORK_TYPE = "OVN_NETWORK_TYPE"
|
|
54
54
|
SDN_NETWORK_TYPE = "SDN_NETWORK_TYPE"
|
|
55
|
+
NODE_FEATURE_DISCOVERY = "NODE_FEATURE_DISCOVERY"
|
|
56
|
+
NVIDIA_GPU = "NVIDIA_GPU"
|
|
57
|
+
PIPELINES = "PIPELINES"
|
|
58
|
+
SERVICEMESH = "SERVICEMESH"
|
|
59
|
+
SERVERLESS = "SERVERLESS"
|
|
60
|
+
OPENSHIFT_AI = "OPENSHIFT_AI"
|
|
55
61
|
|
|
56
62
|
"""
|
|
57
63
|
Attributes:
|
|
@@ -69,6 +69,12 @@ class HostValidationId(object):
|
|
|
69
69
|
NO_SKIP_MISSING_DISK = "no-skip-missing-disk"
|
|
70
70
|
NO_IP_COLLISIONS_IN_NETWORK = "no-ip-collisions-in-network"
|
|
71
71
|
NO_ISCSI_NIC_BELONGS_TO_MACHINE_CIDR = "no-iscsi-nic-belongs-to-machine-cidr"
|
|
72
|
+
NODE_FEATURE_DISCOVERY_REQUIREMENTS_SATISFIED = "node-feature-discovery-requirements-satisfied"
|
|
73
|
+
NVIDIA_GPU_REQUIREMENTS_SATISFIED = "nvidia-gpu-requirements-satisfied"
|
|
74
|
+
PIPELINES_REQUIREMENTS_SATISFIED = "pipelines-requirements-satisfied"
|
|
75
|
+
SERVICEMESH_REQUIREMENTS_SATISFIED = "servicemesh-requirements-satisfied"
|
|
76
|
+
SERVERLESS_REQUIREMENTS_SATISFIED = "serverless-requirements-satisfied"
|
|
77
|
+
OPENSHIFT_AI_REQUIREMENTS_SATISFIED = "openshift-ai-requirements-satisfied"
|
|
72
78
|
|
|
73
79
|
"""
|
|
74
80
|
Attributes:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: assisted-service-client
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.36.0.post5
|
|
4
4
|
Summary: AssistedInstall
|
|
5
5
|
Home-page: https://github.com/openshift/assisted-service
|
|
6
6
|
Author: RedHat
|
|
@@ -86,6 +86,11 @@ configuration = assisted_service_client.Configuration()
|
|
|
86
86
|
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
|
|
87
87
|
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
88
88
|
# configuration.api_key_prefix['Authorization'] = 'Bearer'
|
|
89
|
+
# Configure API key authorization: watcherAuth
|
|
90
|
+
configuration = assisted_service_client.Configuration()
|
|
91
|
+
configuration.api_key['Watcher-Authorization'] = 'YOUR_API_KEY'
|
|
92
|
+
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
93
|
+
# configuration.api_key_prefix['Watcher-Authorization'] = 'Bearer'
|
|
89
94
|
|
|
90
95
|
# create an instance of the API class
|
|
91
96
|
api_instance = assisted_service_client.EventsApi(assisted_service_client.ApiClient(configuration))
|
|
@@ -414,6 +419,12 @@ Class | Method | HTTP request | Description
|
|
|
414
419
|
- **API key parameter name**: Authorization
|
|
415
420
|
- **Location**: HTTP header
|
|
416
421
|
|
|
422
|
+
## watcherAuth
|
|
423
|
+
|
|
424
|
+
- **Type**: API key
|
|
425
|
+
- **API key parameter name**: Watcher-Authorization
|
|
426
|
+
- **Location**: HTTP header
|
|
427
|
+
|
|
417
428
|
|
|
418
429
|
## Author
|
|
419
430
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
assisted_service_client/__init__.py,sha256=nTxET6SMoR7N31_tP3m4oxSqpjUWnqJi5-Auc_U1lmg,15094
|
|
2
2
|
assisted_service_client/api_client.py,sha256=ypPMDOaIc8GI-xm-g5PrNLYlakkK5K3qcJBjJP5GlbM,24986
|
|
3
|
-
assisted_service_client/configuration.py,sha256=
|
|
3
|
+
assisted_service_client/configuration.py,sha256=wLYxtRlTlR9o-y24tqlDSgfjrh9YdiyWaM8-QxFOyOY,9352
|
|
4
4
|
assisted_service_client/rest.py,sha256=fLcY2m9yxpqJW4agxf3yCJyiz486qPLgqw8CbCuftZw,13123
|
|
5
5
|
assisted_service_client/api/__init__.py,sha256=PblMXYK6UKW4rSdDx3F7SA-M1xpjo4rzTBZOx0_cotA,492
|
|
6
|
-
assisted_service_client/api/events_api.py,sha256=
|
|
7
|
-
assisted_service_client/api/installer_api.py,sha256=
|
|
6
|
+
assisted_service_client/api/events_api.py,sha256=ViI7Amn3-o8PcVbAg2iGan0nFrk6oJ0uuXGXA6nMATY,11498
|
|
7
|
+
assisted_service_client/api/installer_api.py,sha256=TzuJkgnIyr4X4Qbh1A0xis1_YaGQmo7Y_G3RapsS4TY,299908
|
|
8
8
|
assisted_service_client/api/managed_domains_api.py,sha256=rTPj3IVxrECtMc_-acZ14u6WydVqHVw6VaM7I8Zvu3g,4087
|
|
9
9
|
assisted_service_client/api/manifests_api.py,sha256=aLktOGwkOa3siGnJOYuGO0mH3TlES-fBZvilNvseGO0,25146
|
|
10
10
|
assisted_service_client/api/operators_api.py,sha256=d-QpJNPGcrAKlE2zG7K160zWrQ7_Wig4osid_92zSTQ,17473
|
|
@@ -27,7 +27,7 @@ assisted_service_client/models/cluster_host_requirements_list.py,sha256=deoEudr4
|
|
|
27
27
|
assisted_service_client/models/cluster_list.py,sha256=Eu55f_A7xr1GrciKtolSZP_HFTauwHRzZKKBbELaVcw,2364
|
|
28
28
|
assisted_service_client/models/cluster_network.py,sha256=lOjZm91Z6i0bffz1ShJExDaOeBLeVbDphRYdXtciiNE,5495
|
|
29
29
|
assisted_service_client/models/cluster_progress_info.py,sha256=At_2x8HaakTw9RNtOwsNL4VZgmrUjS9xFu-Cko5q3e8,9765
|
|
30
|
-
assisted_service_client/models/cluster_validation_id.py,sha256=
|
|
30
|
+
assisted_service_client/models/cluster_validation_id.py,sha256=lDawh4ac19g5Ne7NNbN4aPP-H9fFTKyDoVfv2Bdkm-E,4321
|
|
31
31
|
assisted_service_client/models/completion_params.py,sha256=1kQDePG_SyIOH2WjubnELSZMQvEifxZu_3PQeH6K5Gg,4647
|
|
32
32
|
assisted_service_client/models/connectivity_check_host.py,sha256=tUBCx9KuiO1z17ifrhqb_74oCnSUWjbZqnZpSsAgQTM,3759
|
|
33
33
|
assisted_service_client/models/connectivity_check_nic.py,sha256=5CYBH94K1_i8nurc8XxHQOndr4Y4W5SpEjgfkqYjU4I,4385
|
|
@@ -61,7 +61,7 @@ assisted_service_client/models/drive_type.py,sha256=OAGyxvI5ZWax3pS8bvcXxddNjyEX
|
|
|
61
61
|
assisted_service_client/models/error.py,sha256=walFlNpGmfMxSd9Cmv4eZkNHQx-0tOXpr14JAil1D0E,7152
|
|
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
|
-
assisted_service_client/models/feature_support_level_id.py,sha256=
|
|
64
|
+
assisted_service_client/models/feature_support_level_id.py,sha256=NR5ierkSblv7lR7ni65mRhFHRqtexUL-3v2-stLSqoU,3603
|
|
65
65
|
assisted_service_client/models/finalizing_stage.py,sha256=JmPnqcnxm1VB3enMG1iMZR9NFjFEj6TZF6wVwgVgNlA,2849
|
|
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
|
|
@@ -84,7 +84,7 @@ assisted_service_client/models/host_static_network_config.py,sha256=sKEeJ5w_O9XS
|
|
|
84
84
|
assisted_service_client/models/host_type_hardware_requirements.py,sha256=6246yH8N_XNG0_QpMGAQvxK4mHQTBHD_ESjWQMYLVUE,4507
|
|
85
85
|
assisted_service_client/models/host_type_hardware_requirements_wrapper.py,sha256=zAV2uaPeFuPfvvTYWnELgMxoTzf-NQ1Qgb-z64BhajE,4256
|
|
86
86
|
assisted_service_client/models/host_update_params.py,sha256=IZcocNSd2Izv6ZnplU8oSnCoFJVlD74aBN-0V0XUABk,10806
|
|
87
|
-
assisted_service_client/models/host_validation_id.py,sha256=
|
|
87
|
+
assisted_service_client/models/host_validation_id.py,sha256=9ttTRbSxG8-ERZqBvMF-ZCTq8weQZHpCDjlTZjdX_qk,5511
|
|
88
88
|
assisted_service_client/models/ignition_endpoint.py,sha256=dUS_tZE4zvAZwyjDpGV3geXYwD2ecuVDdtrKqNPn7bM,4058
|
|
89
89
|
assisted_service_client/models/ignition_endpoint_http_headers_params.py,sha256=2yhwXhtDwfq05bQWZQiNbxcEB9T7Kd-3yhH6xHI1-hY,4216
|
|
90
90
|
assisted_service_client/models/ignored_validations.py,sha256=mhpR__OOD3LXlcwUh7hYeUSyPcvNinDAEQjmVEcM_oc,5278
|
|
@@ -375,7 +375,7 @@ test/test_versions.py,sha256=n-4xIBBiEuExya4yfHjxHbsRinb_vccUxwIrMxyEvfk,843
|
|
|
375
375
|
test/test_versions_api.py,sha256=STXdU0DUr6Bmpp8YEBvPKo5ohNZKwxI0e_ddDi3F_1c,1087
|
|
376
376
|
test/test_vip_type.py,sha256=MAse7Cn2PT8pBELxmmAa4X9K_fZ-jtvNTmrqQ0Hvc-o,837
|
|
377
377
|
test/test_vip_verification.py,sha256=DwaHdagiOxRAPQ8TN541xSPn--MJEbRATBm1h3OmmZ4,901
|
|
378
|
-
assisted_service_client-2.
|
|
379
|
-
assisted_service_client-2.
|
|
380
|
-
assisted_service_client-2.
|
|
381
|
-
assisted_service_client-2.
|
|
378
|
+
assisted_service_client-2.36.0.post5.dist-info/METADATA,sha256=A8d3uZlnKRrd7DHon0mdxLwYTyWpl6VPcVaG2YsebVc,26088
|
|
379
|
+
assisted_service_client-2.36.0.post5.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
380
|
+
assisted_service_client-2.36.0.post5.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
|
|
381
|
+
assisted_service_client-2.36.0.post5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|