assisted-service-client 2.40.0.post3__py3-none-any.whl → 2.47.0.post54__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.
Files changed (34) hide show
  1. assisted_service_client/__init__.py +6 -0
  2. assisted_service_client/api/installer_api.py +213 -3
  3. assisted_service_client/api/operators_api.py +36 -10
  4. assisted_service_client/models/__init__.py +6 -0
  5. assisted_service_client/models/cluster.py +7 -7
  6. assisted_service_client/models/cluster_create_params.py +3 -3
  7. assisted_service_client/models/cluster_validation_id.py +5 -0
  8. assisted_service_client/models/disconnected_cluster_create_params.py +151 -0
  9. assisted_service_client/models/disk_encryption.py +3 -3
  10. assisted_service_client/models/feature.py +196 -0
  11. assisted_service_client/models/feature_support_level_id.py +5 -1
  12. assisted_service_client/models/fencing_credentials_params.py +210 -0
  13. assisted_service_client/models/host.py +31 -3
  14. assisted_service_client/models/host_update_params.py +31 -3
  15. assisted_service_client/models/host_validation_id.py +4 -0
  16. assisted_service_client/models/image_type.py +1 -0
  17. assisted_service_client/models/incompatibility_reason.py +95 -0
  18. assisted_service_client/models/inline_response2001.py +43 -19
  19. assisted_service_client/models/inline_response2002.py +117 -0
  20. assisted_service_client/models/operator.py +252 -0
  21. assisted_service_client/models/v2_cluster_update_params.py +3 -3
  22. assisted_service_client/models/versioned_host_requirements.py +29 -1
  23. {assisted_service_client-2.40.0.post3.dist-info → assisted_service_client-2.47.0.post54.dist-info}/METADATA +10 -2
  24. {assisted_service_client-2.40.0.post3.dist-info → assisted_service_client-2.47.0.post54.dist-info}/RECORD +34 -22
  25. test/test_disconnected_cluster_create_params.py +40 -0
  26. test/test_feature.py +40 -0
  27. test/test_fencing_credentials_params.py +40 -0
  28. test/test_incompatibility_reason.py +40 -0
  29. test/test_inline_response2002.py +40 -0
  30. test/test_installer_api.py +12 -0
  31. test/test_operator.py +40 -0
  32. test/test_operators_api.py +1 -1
  33. {assisted_service_client-2.40.0.post3.dist-info → assisted_service_client-2.47.0.post54.dist-info}/WHEEL +0 -0
  34. {assisted_service_client-2.40.0.post3.dist-info → assisted_service_client-2.47.0.post54.dist-info}/top_level.txt +0 -0
@@ -33,6 +33,7 @@ class VersionedHostRequirements(object):
33
33
  swagger_types = {
34
34
  'version': 'str',
35
35
  'master': 'ClusterHostRequirementsDetails',
36
+ 'arbiter': 'ClusterHostRequirementsDetails',
36
37
  'worker': 'ClusterHostRequirementsDetails',
37
38
  'sno': 'ClusterHostRequirementsDetails',
38
39
  'edge_worker': 'ClusterHostRequirementsDetails'
@@ -41,16 +42,18 @@ class VersionedHostRequirements(object):
41
42
  attribute_map = {
42
43
  'version': 'version',
43
44
  'master': 'master',
45
+ 'arbiter': 'arbiter',
44
46
  'worker': 'worker',
45
47
  'sno': 'sno',
46
48
  'edge_worker': 'edge-worker'
47
49
  }
48
50
 
49
- def __init__(self, version=None, master=None, worker=None, sno=None, edge_worker=None): # noqa: E501
51
+ def __init__(self, version=None, master=None, arbiter=None, worker=None, sno=None, edge_worker=None): # noqa: E501
50
52
  """VersionedHostRequirements - a model defined in Swagger""" # noqa: E501
51
53
 
52
54
  self._version = None
53
55
  self._master = None
56
+ self._arbiter = None
54
57
  self._worker = None
55
58
  self._sno = None
56
59
  self._edge_worker = None
@@ -60,6 +63,8 @@ class VersionedHostRequirements(object):
60
63
  self.version = version
61
64
  if master is not None:
62
65
  self.master = master
66
+ if arbiter is not None:
67
+ self.arbiter = arbiter
63
68
  if worker is not None:
64
69
  self.worker = worker
65
70
  if sno is not None:
@@ -113,6 +118,29 @@ class VersionedHostRequirements(object):
113
118
 
114
119
  self._master = master
115
120
 
121
+ @property
122
+ def arbiter(self):
123
+ """Gets the arbiter of this VersionedHostRequirements. # noqa: E501
124
+
125
+ Arbiter node requirements # noqa: E501
126
+
127
+ :return: The arbiter of this VersionedHostRequirements. # noqa: E501
128
+ :rtype: ClusterHostRequirementsDetails
129
+ """
130
+ return self._arbiter
131
+
132
+ @arbiter.setter
133
+ def arbiter(self, arbiter):
134
+ """Sets the arbiter of this VersionedHostRequirements.
135
+
136
+ Arbiter node requirements # noqa: E501
137
+
138
+ :param arbiter: The arbiter of this VersionedHostRequirements. # noqa: E501
139
+ :type: ClusterHostRequirementsDetails
140
+ """
141
+
142
+ self._arbiter = arbiter
143
+
116
144
  @property
117
145
  def worker(self):
118
146
  """Gets the worker of this VersionedHostRequirements. # noqa: E501
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: assisted-service-client
3
- Version: 2.40.0.post3
3
+ Version: 2.47.0.post54
4
4
  Summary: AssistedInstall
5
5
  Home-page: https://github.com/openshift/assisted-service
6
6
  Author: RedHat
@@ -128,6 +128,7 @@ Class | Method | HTTP request | Description
128
128
  *InstallerApi* | [**deregister_infra_env**](docs/InstallerApi.md#deregister_infra_env) | **DELETE** /v2/infra-envs/{infra_env_id} |
129
129
  *InstallerApi* | [**download_minimal_initrd**](docs/InstallerApi.md#download_minimal_initrd) | **GET** /v2/infra-envs/{infra_env_id}/downloads/minimal-initrd |
130
130
  *InstallerApi* | [**get_cluster_supported_platforms**](docs/InstallerApi.md#get_cluster_supported_platforms) | **GET** /v2/clusters/{cluster_id}/supported-platforms |
131
+ *InstallerApi* | [**get_detailed_supported_features**](docs/InstallerApi.md#get_detailed_supported_features) | **GET** /v2/support-levels/features/detailed |
131
132
  *InstallerApi* | [**get_infra_env**](docs/InstallerApi.md#get_infra_env) | **GET** /v2/infra-envs/{infra_env_id} |
132
133
  *InstallerApi* | [**get_infra_env_download_url**](docs/InstallerApi.md#get_infra_env_download_url) | **GET** /v2/infra-envs/{infra_env_id}/downloads/image-url |
133
134
  *InstallerApi* | [**get_infra_env_presigned_file_url**](docs/InstallerApi.md#get_infra_env_presigned_file_url) | **GET** /v2/infra-envs/{infra_env_id}/downloads/files-presigned |
@@ -170,6 +171,7 @@ Class | Method | HTTP request | Description
170
171
  *InstallerApi* | [**v2_list_of_cluster_operators**](docs/InstallerApi.md#v2_list_of_cluster_operators) | **GET** /v2/clusters/{cluster_id}/monitored-operators |
171
172
  *InstallerApi* | [**v2_post_step_reply**](docs/InstallerApi.md#v2_post_step_reply) | **POST** /v2/infra-envs/{infra_env_id}/hosts/{host_id}/instructions |
172
173
  *InstallerApi* | [**v2_register_cluster**](docs/InstallerApi.md#v2_register_cluster) | **POST** /v2/clusters |
174
+ *InstallerApi* | [**v2_register_disconnected_cluster**](docs/InstallerApi.md#v2_register_disconnected_cluster) | **POST** /v2/clusters/disconnected |
173
175
  *InstallerApi* | [**v2_register_host**](docs/InstallerApi.md#v2_register_host) | **POST** /v2/infra-envs/{infra_env_id}/hosts |
174
176
  *InstallerApi* | [**v2_report_monitored_operator_status**](docs/InstallerApi.md#v2_report_monitored_operator_status) | **PUT** /v2/clusters/{cluster_id}/monitored-operators |
175
177
  *InstallerApi* | [**v2_reset_cluster**](docs/InstallerApi.md#v2_reset_cluster) | **POST** /v2/clusters/{cluster_id}/actions/reset |
@@ -195,7 +197,7 @@ Class | Method | HTTP request | Description
195
197
  *ManifestsApi* | [**v2_list_cluster_manifests**](docs/ManifestsApi.md#v2_list_cluster_manifests) | **GET** /v2/clusters/{cluster_id}/manifests |
196
198
  *ManifestsApi* | [**v2_update_cluster_manifest**](docs/ManifestsApi.md#v2_update_cluster_manifest) | **PATCH** /v2/clusters/{cluster_id}/manifests |
197
199
  *OperatorsApi* | [**v2_get_bundle**](docs/OperatorsApi.md#v2_get_bundle) | **GET** /v2/operators/bundles/{id} | Get operator properties for a bundle
198
- *OperatorsApi* | [**v2_list_bundles**](docs/OperatorsApi.md#v2_list_bundles) | **GET** /v2/operators/bundles | Get list of avaliable bundles
200
+ *OperatorsApi* | [**v2_list_bundles**](docs/OperatorsApi.md#v2_list_bundles) | **GET** /v2/operators/bundles | Get list of available bundles
199
201
  *OperatorsApi* | [**v2_list_of_cluster_operators**](docs/OperatorsApi.md#v2_list_of_cluster_operators) | **GET** /v2/clusters/{cluster_id}/monitored-operators |
200
202
  *OperatorsApi* | [**v2_list_operator_properties**](docs/OperatorsApi.md#v2_list_operator_properties) | **GET** /v2/supported-operators/{operator_name} |
201
203
  *OperatorsApi* | [**v2_list_supported_operators**](docs/OperatorsApi.md#v2_list_supported_operators) | **GET** /v2/supported-operators |
@@ -241,6 +243,7 @@ Class | Method | HTTP request | Description
241
243
  - [Credentials](docs/Credentials.md)
242
244
  - [DhcpAllocationRequest](docs/DhcpAllocationRequest.md)
243
245
  - [DhcpAllocationResponse](docs/DhcpAllocationResponse.md)
246
+ - [DisconnectedClusterCreateParams](docs/DisconnectedClusterCreateParams.md)
244
247
  - [Disk](docs/Disk.md)
245
248
  - [DiskConfigParams](docs/DiskConfigParams.md)
246
249
  - [DiskEncryption](docs/DiskEncryption.md)
@@ -259,7 +262,9 @@ Class | Method | HTTP request | Description
259
262
  - [Error](docs/Error.md)
260
263
  - [Event](docs/Event.md)
261
264
  - [EventList](docs/EventList.md)
265
+ - [Feature](docs/Feature.md)
262
266
  - [FeatureSupportLevelId](docs/FeatureSupportLevelId.md)
267
+ - [FencingCredentialsParams](docs/FencingCredentialsParams.md)
263
268
  - [FinalizingStage](docs/FinalizingStage.md)
264
269
  - [FreeAddressesList](docs/FreeAddressesList.md)
265
270
  - [FreeAddressesRequest](docs/FreeAddressesRequest.md)
@@ -290,6 +295,7 @@ Class | Method | HTTP request | Description
290
295
  - [ImageInfo](docs/ImageInfo.md)
291
296
  - [ImageType](docs/ImageType.md)
292
297
  - [ImportClusterParams](docs/ImportClusterParams.md)
298
+ - [IncompatibilityReason](docs/IncompatibilityReason.md)
293
299
  - [InfraEnv](docs/InfraEnv.md)
294
300
  - [InfraEnvCreateParams](docs/InfraEnvCreateParams.md)
295
301
  - [InfraEnvList](docs/InfraEnvList.md)
@@ -299,6 +305,7 @@ Class | Method | HTTP request | Description
299
305
  - [IngressVip](docs/IngressVip.md)
300
306
  - [InlineResponse200](docs/InlineResponse200.md)
301
307
  - [InlineResponse2001](docs/InlineResponse2001.md)
308
+ - [InlineResponse2002](docs/InlineResponse2002.md)
302
309
  - [InstallCmdRequest](docs/InstallCmdRequest.md)
303
310
  - [InstallerArgsParams](docs/InstallerArgsParams.md)
304
311
  - [Interface](docs/Interface.md)
@@ -336,6 +343,7 @@ Class | Method | HTTP request | Description
336
343
  - [NtpSynchronizationResponse](docs/NtpSynchronizationResponse.md)
337
344
  - [OpenshiftVersion](docs/OpenshiftVersion.md)
338
345
  - [OpenshiftVersions](docs/OpenshiftVersions.md)
346
+ - [Operator](docs/Operator.md)
339
347
  - [OperatorCreateParams](docs/OperatorCreateParams.md)
340
348
  - [OperatorHardwareRequirements](docs/OperatorHardwareRequirements.md)
341
349
  - [OperatorHostRequirements](docs/OperatorHostRequirements.md)
@@ -1,15 +1,15 @@
1
- assisted_service_client/__init__.py,sha256=k7zp07rR11CxrPJII8Jf5xzxUOirsXzwJSh2i5Syc6A,15362
1
+ assisted_service_client/__init__.py,sha256=JqoEQ_bw4-bjZubTkYyhuzIbxXIEwosK_kTIvt-pyOg,15857
2
2
  assisted_service_client/api_client.py,sha256=ypPMDOaIc8GI-xm-g5PrNLYlakkK5K3qcJBjJP5GlbM,24986
3
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
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
7
+ assisted_service_client/api/installer_api.py,sha256=MvJ8ra_l6nJvJWROmXCE0h6Ih0JNzTXpgDhhawpHzog,309763
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
- assisted_service_client/api/operators_api.py,sha256=yBJagXBqr77hvQJM3Qruo3Pegw2j6UQLXolMgip71gM,24732
10
+ assisted_service_client/api/operators_api.py,sha256=mlAgOM5naIPx9Ri6zVHYhwxjOp_k0USknI72I-o2Pu4,27612
11
11
  assisted_service_client/api/versions_api.py,sha256=0eomTHtqgrHnxBxNhL_rZ43K3O3fjvpy0nMRxt2idEg,11674
12
- assisted_service_client/models/__init__.py,sha256=YQpsUAl9adO4fqyzicmilWMLDz21Q0JmMNy_qxOAtbA,14786
12
+ assisted_service_client/models/__init__.py,sha256=UI3ylX-XVCPV9IV0LFjFdun_S3xmP_z1teVKE20_dv4,15281
13
13
  assisted_service_client/models/api_vip.py,sha256=gn7i8OtCG3uzm-Ymku55LMWWOn9sujJ-tJ-eZ2VSLkk,4590
14
14
  assisted_service_client/models/api_vip_connectivity_additional_request_header.py,sha256=pxx8s7nM0qoKarVqYMF0qyY4R4Tz3O6eOfPnji55lRY,4138
15
15
  assisted_service_client/models/api_vip_connectivity_request.py,sha256=juCr4-I9tFkoU3f3t_YrXPJfiAgWAZ03zStfW-BZ6OU,7760
@@ -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=0xWMKa_2TiasRWNP6pi9eZ7k8IeatElu4vznNlOmrKY,77087
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
@@ -28,7 +28,7 @@ assisted_service_client/models/cluster_host_requirements_list.py,sha256=deoEudr4
28
28
  assisted_service_client/models/cluster_list.py,sha256=Eu55f_A7xr1GrciKtolSZP_HFTauwHRzZKKBbELaVcw,2364
29
29
  assisted_service_client/models/cluster_network.py,sha256=lOjZm91Z6i0bffz1ShJExDaOeBLeVbDphRYdXtciiNE,5495
30
30
  assisted_service_client/models/cluster_progress_info.py,sha256=At_2x8HaakTw9RNtOwsNL4VZgmrUjS9xFu-Cko5q3e8,9765
31
- assisted_service_client/models/cluster_validation_id.py,sha256=p27S0cmazuqcHHYd5KVyucCVl9MvSx_MzUwtiwZI_Gc,5125
31
+ assisted_service_client/models/cluster_validation_id.py,sha256=lM1EwAdidEsQnb22C20KYEnLt6hSCdzNS0whxDBmcrc,5529
32
32
  assisted_service_client/models/completion_params.py,sha256=1kQDePG_SyIOH2WjubnELSZMQvEifxZu_3PQeH6K5Gg,4647
33
33
  assisted_service_client/models/connectivity_check_host.py,sha256=tUBCx9KuiO1z17ifrhqb_74oCnSUWjbZqnZpSsAgQTM,3759
34
34
  assisted_service_client/models/connectivity_check_nic.py,sha256=5CYBH94K1_i8nurc8XxHQOndr4Y4W5SpEjgfkqYjU4I,4385
@@ -44,9 +44,10 @@ assisted_service_client/models/create_manifest_params.py,sha256=tU-zvinJWxQerhQE
44
44
  assisted_service_client/models/credentials.py,sha256=OpttbTivzaMKt1VjMkDURdWN60MsIkZhQLUhK4mQ_u4,4383
45
45
  assisted_service_client/models/dhcp_allocation_request.py,sha256=VxHpM8MXlQrXLSTZSYZXwgMI0d81vhIAZaz0pLUx-dg,7359
46
46
  assisted_service_client/models/dhcp_allocation_response.py,sha256=FC54EnUen0y6wkDtvFUA62oHKHcoX3cEfft2i54NA44,6700
47
+ assisted_service_client/models/disconnected_cluster_create_params.py,sha256=HBGrj9MHnoKw-Zxw2YJbQqsBOU9CTwnlx-CGw3b0OGs,4732
47
48
  assisted_service_client/models/disk.py,sha256=8uPYKO3bE8TdnK_PyjkvFIDWd06MnRFnQqG9HvJBVsg,17194
48
49
  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
50
+ assisted_service_client/models/disk_encryption.py,sha256=eAl0jhRJ1hvN5R0HckT8sexQdq9X-x-F2sQzL8BYsEk,5646
50
51
  assisted_service_client/models/disk_info.py,sha256=hm7ys9-b1jk3yaNR3zagO7Xo6uhcsH4SdIVk36mBsfw,4133
51
52
  assisted_service_client/models/disk_installation_eligibility.py,sha256=LNoVzk5YOmEQ_VVT-2VeYntGvE-IcdHAEwg0sZTdZwI,4439
52
53
  assisted_service_client/models/disk_role.py,sha256=I0-lQgkPusZ0kzjbRH4KzqQPxlCty8jyBwIotZBH2Oo,2435
@@ -62,14 +63,16 @@ assisted_service_client/models/drive_type.py,sha256=OAGyxvI5ZWax3pS8bvcXxddNjyEX
62
63
  assisted_service_client/models/error.py,sha256=walFlNpGmfMxSd9Cmv4eZkNHQx-0tOXpr14JAil1D0E,7152
63
64
  assisted_service_client/models/event.py,sha256=PRfTmDyGf-75xERGe_xuutt-2H0ZpVFSH2f2RK-qHUc,10372
64
65
  assisted_service_client/models/event_list.py,sha256=QTzSwTlY-Kx3OA1kgBnYDEvULyrdLv-7DAByMgqH7-c,2356
65
- assisted_service_client/models/feature_support_level_id.py,sha256=lzELdONZEl7U5Be5Ip_KoG8AHc_qfAmK6KZ0h7s_lfA,4077
66
+ assisted_service_client/models/feature.py,sha256=jNjOBzP1Qz_dzvSbfQ2LeIME4B5F-XYhSTwPP9cA9vg,5954
67
+ assisted_service_client/models/feature_support_level_id.py,sha256=7z5uP_qkGyF0J1dHmH27uJOrkGnQDKFlIiKVFOaKooE,4185
68
+ assisted_service_client/models/fencing_credentials_params.py,sha256=3KjIlFGdUU1ro5P-1TB5YRRs5A3nOxQnssE34N897EQ,6792
66
69
  assisted_service_client/models/finalizing_stage.py,sha256=JmPnqcnxm1VB3enMG1iMZR9NFjFEj6TZF6wVwgVgNlA,2849
67
70
  assisted_service_client/models/free_addresses_list.py,sha256=P2q1fq3cR6BJq4i4V-gXpfG32TWIhFX4zScGzdRQmpw,2388
68
71
  assisted_service_client/models/free_addresses_request.py,sha256=6EjcZ6eCz2tGdz6axoRHwILSNz0-7_A6-dIjmxeFe1k,2400
69
72
  assisted_service_client/models/free_network_addresses.py,sha256=4qbfXsYN_X6t0hJiF4JFhHbGEg8SEe-0OO5vn3cn8os,3896
70
73
  assisted_service_client/models/free_networks_addresses.py,sha256=xGhv0Mnv_OA-L0ZMMWxaPMYJNIgzcF54lZuFJ6PLNtQ,2404
71
74
  assisted_service_client/models/gpu.py,sha256=wwbi0eoL9rOH6iH4RkklARC5VUQzBl77pk5YwT39cMg,6095
72
- assisted_service_client/models/host.py,sha256=bAKRqAHGUySgGQnr0UGyUBC3KXokusGuXKDaEbiSkj0,46019
75
+ assisted_service_client/models/host.py,sha256=iqjbZvVUKembLwfxhvb_dOxvU0qOrEsm7f1ezH7DfL8,47014
73
76
  assisted_service_client/models/host_create_params.py,sha256=9tW8SEkQC45A0K3i67xhpwW0jQFXZ6vTfcFGd839XS8,4096
74
77
  assisted_service_client/models/host_ignition_params.py,sha256=T0R7FBjCAKcTOr6H-XW1ZWDdS2VZv1dNRXIF7bjitp4,3033
75
78
  assisted_service_client/models/host_list.py,sha256=X8m3ZEcO_3s7BMgTWGHyaQM-0ZSEAiXYnebw2kOyXWQ,2352
@@ -84,15 +87,16 @@ assisted_service_client/models/host_stage.py,sha256=YvTU-GZCuqc7gTzHwlaANPS1Iz2c
84
87
  assisted_service_client/models/host_static_network_config.py,sha256=sKEeJ5w_O9XS7oey78pVlgkjOVFPtmPTQLECgZvGVnM,4424
85
88
  assisted_service_client/models/host_type_hardware_requirements.py,sha256=6246yH8N_XNG0_QpMGAQvxK4mHQTBHD_ESjWQMYLVUE,4507
86
89
  assisted_service_client/models/host_type_hardware_requirements_wrapper.py,sha256=zAV2uaPeFuPfvvTYWnELgMxoTzf-NQ1Qgb-z64BhajE,4256
87
- assisted_service_client/models/host_update_params.py,sha256=9aV1HCslkgoUwDvFhtW_Bn1FbWboqLxSC7I9ET2xXIY,10817
88
- assisted_service_client/models/host_validation_id.py,sha256=bQEcRLauW6YekA5799_ztAXdk9QIiuw6tUtcxOf1kAc,6343
90
+ assisted_service_client/models/host_update_params.py,sha256=jloTencYqhCp6hIfINfp73Ozt8QdW7fMOCDBmrKlf48,11923
91
+ assisted_service_client/models/host_validation_id.py,sha256=1HU_DWWWPBsUMJPT_nCnh4qmwMMIX6sQ6pqnQP5DWmQ,6659
89
92
  assisted_service_client/models/ignition_endpoint.py,sha256=dUS_tZE4zvAZwyjDpGV3geXYwD2ecuVDdtrKqNPn7bM,4058
90
93
  assisted_service_client/models/ignition_endpoint_http_headers_params.py,sha256=2yhwXhtDwfq05bQWZQiNbxcEB9T7Kd-3yhH6xHI1-hY,4216
91
94
  assisted_service_client/models/ignored_validations.py,sha256=mhpR__OOD3LXlcwUh7hYeUSyPcvNinDAEQjmVEcM_oc,5278
92
95
  assisted_service_client/models/image_create_params.py,sha256=ls6dj4lLhWhdWVGi54YCUPGvM3IaE2jicwiSK8E83lY,5197
93
96
  assisted_service_client/models/image_info.py,sha256=qLE6WdrbAF3NcgwCBXbTDxrWMlEyyAeYDTlHuFeU_WU,8895
94
- assisted_service_client/models/image_type.py,sha256=xswQhbh-FSRQdOmiYYvpAxEJPsVQ7v9JfsMrmLwUIqY,2455
97
+ assisted_service_client/models/image_type.py,sha256=j5wgSDyOUOAd1EzgTWhVifiUtb7TpZpkE2uPxTVsP48,2497
95
98
  assisted_service_client/models/import_cluster_params.py,sha256=1fRPcjsG18l7HbxdUubpFyt5oh3s0kR-VyntcVOuF9c,6408
99
+ assisted_service_client/models/incompatibility_reason.py,sha256=e2nX-56qPV2bjBLcBumR3d4cmf_KIQBnnY6pcnsq-Ss,2623
96
100
  assisted_service_client/models/infra_env.py,sha256=pS9Q4A1TDwQXqKp9Ph29_87L_yAQtmJY_i4Ck87Uy60,24743
97
101
  assisted_service_client/models/infra_env_create_params.py,sha256=vEzMXPORxoepCHwNdZKlcQaTUOsNZhYWolX0FxPK2Pg,16151
98
102
  assisted_service_client/models/infra_env_list.py,sha256=QAy34UbUHugMwQZYOI9Y3SQKY1MNXOIKf3Yanry9GdE,2368
@@ -101,7 +105,8 @@ assisted_service_client/models/infra_error.py,sha256=Y5c3rRcqf_HKAPKzX5xUVvXpFVc
101
105
  assisted_service_client/models/ingress_cert_params.py,sha256=-XP1NimCqaTWoxjUIJ_ELs5y37ShwaeKXadoOvUTiPA,2388
102
106
  assisted_service_client/models/ingress_vip.py,sha256=lyf0K-0cVmdhuflocLIEtJ1r-zZjiYUb6BJmY8h-Vlk,4662
103
107
  assisted_service_client/models/inline_response200.py,sha256=HB1HAsvw3l7H114kwQFzu9JKiMO8ug-I9iAezdSC5LI,3243
104
- assisted_service_client/models/inline_response2001.py,sha256=Q272STaPtS7c5buEsQ6lQNQMO5r2IOxD9MUp92bNp0w,3359
108
+ assisted_service_client/models/inline_response2001.py,sha256=yChqBBcZRG9s4piVZfAyhs64PpPTX-byP1KNRDUWbhY,3837
109
+ assisted_service_client/models/inline_response2002.py,sha256=6uUIhLTHtmA7Ztjg9pzK66he4MhTFBs0A0x3Qj_b4ig,3359
105
110
  assisted_service_client/models/install_cmd_request.py,sha256=5rYh5AbwW540ALsKXAX7mWkxRmH0Dolo4-Z89_9eH-g,20915
106
111
  assisted_service_client/models/installer_args_params.py,sha256=FDBsAPct6q5rMbPlFSP4CUHoWfhJnPiT4idOGoi0Wb0,3175
107
112
  assisted_service_client/models/interface.py,sha256=oens5JgzzW7b7y2_m3da_xnlB39d2ZTFNWJy6j7Qfws,10898
@@ -139,6 +144,7 @@ assisted_service_client/models/ntp_synchronization_request.py,sha256=cD0chL84AV2
139
144
  assisted_service_client/models/ntp_synchronization_response.py,sha256=e5A2KMX_V3IdA841ooC9HMQWiyaiQEESiih_na-mtYE,3233
140
145
  assisted_service_client/models/openshift_version.py,sha256=Anh7LQuwIf8oulSJ1y1h0bP2nU1EVBOL3xVnJHvCAAs,6549
141
146
  assisted_service_client/models/openshift_versions.py,sha256=WaB3qWt5Xw35BHf4DYePN_vOHuyG79u4OxEYM-eOrPc,2388
147
+ assisted_service_client/models/operator.py,sha256=TA-IHBSYz9gc0l5beqAOPnuea58PRYWitIzlf-ltDz8,7588
142
148
  assisted_service_client/models/operator_create_params.py,sha256=D_ZmGTCu_C7wBnaH3fpHC7KfbFr40zjsdmRBu24oMHU,3930
143
149
  assisted_service_client/models/operator_hardware_requirements.py,sha256=i5zaHVy0H_fvj75q1WzO8i8HDIqeeeiLMu8a7rINxu8,5593
144
150
  assisted_service_client/models/operator_host_requirements.py,sha256=KPISPcjXjAu3snLUsZPVj5sYM3g77CbJhZRAKo-Hja8,4287
@@ -184,12 +190,12 @@ assisted_service_client/models/upgrade_agent_response.py,sha256=OhvFdKCUZvb1awBX
184
190
  assisted_service_client/models/upgrade_agent_result.py,sha256=n0QImJ9nWvRC88hrBb5GLpGwq4h_YaGA-Rh6J7uxEeI,2481
185
191
  assisted_service_client/models/upgrade_channel.py,sha256=1zGictvdXO0SRJZfRamBovlh6MneEnQz0eIDI6BPK7E,4560
186
192
  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
193
+ assisted_service_client/models/v2_cluster_update_params.py,sha256=IPE4P_D-E_JxmLWdzru8ZskCX4yDIHSJIuSO7VUKlxc,37063
188
194
  assisted_service_client/models/verified_vip.py,sha256=XbwwmYkF4nFHeyWU0dhDzLUizU65OBkG_h-J1LUXw_Q,4348
189
195
  assisted_service_client/models/verify_vip.py,sha256=ocOvQ8-jVV1xTH57rO4BXVDFVqRkTQnIrz5D-TGAXmg,3555
190
196
  assisted_service_client/models/verify_vips_request.py,sha256=cK1qzbhYcmD9BTZuQgv84wsbCZKozTySr6Acf8hI9LY,2388
191
197
  assisted_service_client/models/verify_vips_response.py,sha256=b-kd3ucXPhb9pCYtOqCTjHNKOZM_t6EkJxzI7PwUxlg,2392
192
- assisted_service_client/models/versioned_host_requirements.py,sha256=0wvUb2gtDTAJod-3j0CZ9ee_jCrHXOJIwLx0TLuB6rI,6749
198
+ assisted_service_client/models/versioned_host_requirements.py,sha256=HkwWbb_DcB0EUoLWwcbqc-jJZAtqg16faPUT35Jmyew,7615
193
199
  assisted_service_client/models/versions.py,sha256=WdGUqYlL60IvBpfJaeiH3gXj7HtuSZcrXEX5G_Ruyd4,2352
194
200
  assisted_service_client/models/vip_type.py,sha256=_ViccFeXAo3QmCLnOeZs1whiz1yOdAG096-iJbZHLYc,2429
195
201
  assisted_service_client/models/vip_verification.py,sha256=rhxvuffUx8OSiDysXM3O5Lu8SPTh1I4OeDR-2-EFfZs,2501
@@ -228,6 +234,7 @@ test/test_create_manifest_params.py,sha256=GfSRWDD_yDQu6CEoN7TN_5dKQ-7-M_JcLLSfB
228
234
  test/test_credentials.py,sha256=45vARSsWNcJpzOknJP6pJfnr_j7rsER2kxv3pXpK1_w,867
229
235
  test/test_dhcp_allocation_request.py,sha256=6JGAhqmz_JnFHfPkL1tiDMbf32yGrxgnuyRnHz39sco,951
230
236
  test/test_dhcp_allocation_response.py,sha256=-KR70CfTCIvkQnJ5QD0uoFFjRXfbCRcne_A_I7_h4ik,959
237
+ test/test_disconnected_cluster_create_params.py,sha256=JH0vrsAMtEoVTCTSm5Sa6aaeBZHFgNDYb66c2-hdhMQ,1033
231
238
  test/test_disk.py,sha256=QIDsWWu0dW1LPZIxQeb0vsGRjJr-fRQ-LQSxaDsO9cU,811
232
239
  test/test_disk_config_params.py,sha256=Ggf9KF1ZhZPzMBlGlyoG8yvwRz5gzPcxw3ubWCKcnfU,911
233
240
  test/test_disk_encryption.py,sha256=UlDjUOjIuJKNX_eN2Zw2dfo5kj7sIipIiLeR8Oia2d4,893
@@ -247,7 +254,9 @@ test/test_error.py,sha256=AFhjaXGJdjKBtOzNFWtRmT3SPlFnJ96OrFIRia3jpxg,819
247
254
  test/test_event.py,sha256=vBQFkmVuIWalKyKH8QDRsQSW1h_1xpvAV6PhWVW2Utw,819
248
255
  test/test_event_list.py,sha256=Qnb7sJkuZEKQGGbWzEl5BaEnQ9r046HMzHTG4w87NsI,853
249
256
  test/test_events_api.py,sha256=CtvboUkHh_9dNVQvvvtyKddt12oI_oNsWPwXv-GoXnA,891
257
+ test/test_feature.py,sha256=rsg56PLbboZGP3_7SMTHxgoPW0HK2iu-C7J9NTTpUao,835
250
258
  test/test_feature_support_level_id.py,sha256=e-DLylPtj5fYHud30PlkPWNkd39NsicxTuTaZ-WNjfo,953
259
+ test/test_fencing_credentials_params.py,sha256=P8gOVI38yaH8qRIlIOLygqVmIw2AhYLZnbiET8vIUJc,975
251
260
  test/test_finalizing_stage.py,sha256=GKZH_maI4yLePFBVGIeuqXDiyYf6b2I8-o6xkFWp_-8,901
252
261
  test/test_free_addresses_list.py,sha256=EhL9yl-YcsLpv0TGlvYmLr8qJgbX9MOrwCccuVIQXh0,919
253
262
  test/test_free_addresses_request.py,sha256=LoRizc7RlHP7ET8oxRmq3WGr18Ssy_6W5xSQyhgIWvo,943
@@ -278,6 +287,7 @@ test/test_image_create_params.py,sha256=s8zTLJwyela-ocmNXBSP_NTuuk7onOktGsN7zbCs
278
287
  test/test_image_info.py,sha256=V_3KX6PNE_xWDcsYS4b41OuOQhoGAwRHi3hB3DBHvhc,853
279
288
  test/test_image_type.py,sha256=lSyTTrxhQMUoszsRTCfUu8sH9R-JoedAy8cCfvS5nTA,853
280
289
  test/test_import_cluster_params.py,sha256=xca3TLwuKX3bBt4EeV1-NOcFbW4tcpWqkci9T1-kYAI,935
290
+ test/test_incompatibility_reason.py,sha256=ufo3esRBjLo-pCsxGpBURICI_JYeOBVUqxIMeBsBG0Q,949
281
291
  test/test_infra_env.py,sha256=GAMY9CsOyes61JfOd2YDlUKTktBaBfIhxzS1DO9oO5M,845
282
292
  test/test_infra_env_create_params.py,sha256=gDpWTR0_cPl6Zsm48MHoJoyI1s4uN-Z2GHd0CKIr1rU,945
283
293
  test/test_infra_env_list.py,sha256=6l_Vo3Pw4DKaZidKl1P-X5osKYZjss4c0eHVUqyXPlc,879
@@ -287,8 +297,9 @@ test/test_ingress_cert_params.py,sha256=GZ39-TZHdnF60CFvMNjVTXrquey_oy82y_f4pgnp
287
297
  test/test_ingress_vip.py,sha256=FIInh8SktPadK_JmC5twjDAIaMnHxyxFMtsaDU30eJk,861
288
298
  test/test_inline_response200.py,sha256=ma3jwgrH-LwlcXU_njUUGcNRaP73VFf-RCq5BGLDv9k,917
289
299
  test/test_inline_response2001.py,sha256=kIUutSpuCGh0GHQOuACqeoZecLqBNZxFLPpjH9XPE4g,925
300
+ test/test_inline_response2002.py,sha256=6HxP7ODVXxipsKuvSuxZS5p7XrE9vc3SERpZfpC4ZiE,925
290
301
  test/test_install_cmd_request.py,sha256=2SMQgHeJknXJwXq8LDD6D5My3QF7Z_ox29rRtQ6TnmY,919
291
- test/test_installer_api.py,sha256=_w1CkT5-Sk88D4j7Wt5LH_3cfZRz0nqfZ9Pjn-C1y6c,8429
302
+ test/test_installer_api.py,sha256=pXLkSp5ytVMOo1ocQ9_M9IWxICYKmFSG9vHYc6M-WT4,8703
292
303
  test/test_installer_args_params.py,sha256=5DLOVk1UexAfQBSOHbBILrYGrXXN0GeV2lsTuSddMHw,935
293
304
  test/test_interface.py,sha256=aKMlQAzR68c2sit6Lqcc6py07tqoRyX0j8z-j91HK7A,851
294
305
  test/test_inventory.py,sha256=9aK7xDNHZbTLYWDdRmEKTCtiOLlgyRgS7Qw4OAO5NMw,851
@@ -327,6 +338,7 @@ test/test_ntp_synchronization_request.py,sha256=aiQcIFZ8LJFWDRdvK7ctJcYT9UM9mtZm
327
338
  test/test_ntp_synchronization_response.py,sha256=w_plzBgATqz3E0JLG3iy_pVK94UQAbX8OWEPe9Fqtug,991
328
339
  test/test_openshift_version.py,sha256=wT6jcOUJAdqJH1gR1pf87heMQNWxnKn9YDMS2EUeN_4,909
329
340
  test/test_openshift_versions.py,sha256=GQh5i3Y-rS429ywpJko7B7JBbJw0NrDLhlvKqH-VQZc,917
341
+ test/test_operator.py,sha256=e8x-MiwAg0a9BS7GZWPrvx2xe-LmjKXSa-CJb3o3U1s,843
330
342
  test/test_operator_create_params.py,sha256=wQP2jJ7yB5xSgcZkD3LrDcOZhasEcyvFPvrrfp0gtR8,943
331
343
  test/test_operator_hardware_requirements.py,sha256=yt3EauTdPZMmF-k42ar0HysB2RGwucAOLbLWsGF0jGs,1007
332
344
  test/test_operator_host_requirements.py,sha256=MXdqHeVpmOqzp0bztj9OHs6LqzrdtQE8ZSyTrmg4DQw,975
@@ -335,7 +347,7 @@ test/test_operator_properties.py,sha256=b7qgRx73jUuGJa4_KL2q2iHgLCDTOyJuGY7nEPrE
335
347
  test/test_operator_property.py,sha256=Qcrk-23Kk3BTNmOh6K-SPjWhovmjb4aox67DiU6f8Ik,909
336
348
  test/test_operator_status.py,sha256=NYONReYAPyGrsYvY6gtjlt_H1co4k2lgBGyppNiXfH4,893
337
349
  test/test_operator_type.py,sha256=sgh-FX4cIV3BaNb-Il3ruAreGagfzOOgCjn1BQwvZEA,877
338
- test/test_operators_api.py,sha256=k0jFcSQZvz7uXjbNRa7nwrlJPJwYo4T8nmpwyswf8J0,1546
350
+ test/test_operators_api.py,sha256=e4BRExxixccBQnyaX2oP3Q-eSbZk-uUaDh81WvR4yhc,1546
339
351
  test/test_os_image.py,sha256=wZTKD1V1Zm6VVL9Ye60_BKycd8c_fkFE3NxOqI5jvo0,837
340
352
  test/test_os_images.py,sha256=rBqwen7wukMW12pccvj58zVlBizpdINNSiuQl1wXMx8,845
341
353
  test/test_platform.py,sha256=F3RymW4mgOOZzM7q79C0MgD0ibz53qNIwkzLJo2_exM,843
@@ -383,7 +395,7 @@ test/test_versions.py,sha256=n-4xIBBiEuExya4yfHjxHbsRinb_vccUxwIrMxyEvfk,843
383
395
  test/test_versions_api.py,sha256=STXdU0DUr6Bmpp8YEBvPKo5ohNZKwxI0e_ddDi3F_1c,1087
384
396
  test/test_vip_type.py,sha256=MAse7Cn2PT8pBELxmmAa4X9K_fZ-jtvNTmrqQ0Hvc-o,837
385
397
  test/test_vip_verification.py,sha256=DwaHdagiOxRAPQ8TN541xSPn--MJEbRATBm1h3OmmZ4,901
386
- assisted_service_client-2.40.0.post3.dist-info/METADATA,sha256=bK47Qtf8vTPxyobx47ydn_tMepQW-nev3OTgQaKHrFU,26526
387
- assisted_service_client-2.40.0.post3.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
388
- assisted_service_client-2.40.0.post3.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
389
- assisted_service_client-2.40.0.post3.dist-info/RECORD,,
398
+ assisted_service_client-2.47.0.post54.dist-info/METADATA,sha256=_5yKL1_VSFOv7nr_Z43JrVyH2PtwJrcmvpQAHIn8SrI,27151
399
+ assisted_service_client-2.47.0.post54.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
400
+ assisted_service_client-2.47.0.post54.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
401
+ assisted_service_client-2.47.0.post54.dist-info/RECORD,,
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ AssistedInstall
5
+
6
+ Assisted installation # noqa: E501
7
+
8
+ OpenAPI spec version: 1.0.0
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ from __future__ import absolute_import
15
+
16
+ import unittest
17
+
18
+ import assisted_service_client
19
+ from assisted_service_client.models.disconnected_cluster_create_params import DisconnectedClusterCreateParams # noqa: E501
20
+ from assisted_service_client.rest import ApiException
21
+
22
+
23
+ class TestDisconnectedClusterCreateParams(unittest.TestCase):
24
+ """DisconnectedClusterCreateParams unit test stubs"""
25
+
26
+ def setUp(self):
27
+ pass
28
+
29
+ def tearDown(self):
30
+ pass
31
+
32
+ def testDisconnectedClusterCreateParams(self):
33
+ """Test DisconnectedClusterCreateParams"""
34
+ # FIXME: construct object with mandatory attributes with example values
35
+ # model = assisted_service_client.models.disconnected_cluster_create_params.DisconnectedClusterCreateParams() # noqa: E501
36
+ pass
37
+
38
+
39
+ if __name__ == '__main__':
40
+ unittest.main()
test/test_feature.py ADDED
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ AssistedInstall
5
+
6
+ Assisted installation # noqa: E501
7
+
8
+ OpenAPI spec version: 1.0.0
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ from __future__ import absolute_import
15
+
16
+ import unittest
17
+
18
+ import assisted_service_client
19
+ from assisted_service_client.models.feature import Feature # noqa: E501
20
+ from assisted_service_client.rest import ApiException
21
+
22
+
23
+ class TestFeature(unittest.TestCase):
24
+ """Feature unit test stubs"""
25
+
26
+ def setUp(self):
27
+ pass
28
+
29
+ def tearDown(self):
30
+ pass
31
+
32
+ def testFeature(self):
33
+ """Test Feature"""
34
+ # FIXME: construct object with mandatory attributes with example values
35
+ # model = assisted_service_client.models.feature.Feature() # noqa: E501
36
+ pass
37
+
38
+
39
+ if __name__ == '__main__':
40
+ unittest.main()
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ AssistedInstall
5
+
6
+ Assisted installation # noqa: E501
7
+
8
+ OpenAPI spec version: 1.0.0
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ from __future__ import absolute_import
15
+
16
+ import unittest
17
+
18
+ import assisted_service_client
19
+ from assisted_service_client.models.fencing_credentials_params import FencingCredentialsParams # noqa: E501
20
+ from assisted_service_client.rest import ApiException
21
+
22
+
23
+ class TestFencingCredentialsParams(unittest.TestCase):
24
+ """FencingCredentialsParams unit test stubs"""
25
+
26
+ def setUp(self):
27
+ pass
28
+
29
+ def tearDown(self):
30
+ pass
31
+
32
+ def testFencingCredentialsParams(self):
33
+ """Test FencingCredentialsParams"""
34
+ # FIXME: construct object with mandatory attributes with example values
35
+ # model = assisted_service_client.models.fencing_credentials_params.FencingCredentialsParams() # noqa: E501
36
+ pass
37
+
38
+
39
+ if __name__ == '__main__':
40
+ unittest.main()
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ AssistedInstall
5
+
6
+ Assisted installation # noqa: E501
7
+
8
+ OpenAPI spec version: 1.0.0
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ from __future__ import absolute_import
15
+
16
+ import unittest
17
+
18
+ import assisted_service_client
19
+ from assisted_service_client.models.incompatibility_reason import IncompatibilityReason # noqa: E501
20
+ from assisted_service_client.rest import ApiException
21
+
22
+
23
+ class TestIncompatibilityReason(unittest.TestCase):
24
+ """IncompatibilityReason unit test stubs"""
25
+
26
+ def setUp(self):
27
+ pass
28
+
29
+ def tearDown(self):
30
+ pass
31
+
32
+ def testIncompatibilityReason(self):
33
+ """Test IncompatibilityReason"""
34
+ # FIXME: construct object with mandatory attributes with example values
35
+ # model = assisted_service_client.models.incompatibility_reason.IncompatibilityReason() # noqa: E501
36
+ pass
37
+
38
+
39
+ if __name__ == '__main__':
40
+ unittest.main()
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ AssistedInstall
5
+
6
+ Assisted installation # noqa: E501
7
+
8
+ OpenAPI spec version: 1.0.0
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ from __future__ import absolute_import
15
+
16
+ import unittest
17
+
18
+ import assisted_service_client
19
+ from assisted_service_client.models.inline_response2002 import InlineResponse2002 # noqa: E501
20
+ from assisted_service_client.rest import ApiException
21
+
22
+
23
+ class TestInlineResponse2002(unittest.TestCase):
24
+ """InlineResponse2002 unit test stubs"""
25
+
26
+ def setUp(self):
27
+ pass
28
+
29
+ def tearDown(self):
30
+ pass
31
+
32
+ def testInlineResponse2002(self):
33
+ """Test InlineResponse2002"""
34
+ # FIXME: construct object with mandatory attributes with example values
35
+ # model = assisted_service_client.models.inline_response2002.InlineResponse2002() # noqa: E501
36
+ pass
37
+
38
+
39
+ if __name__ == '__main__':
40
+ unittest.main()
@@ -53,6 +53,12 @@ class TestInstallerApi(unittest.TestCase):
53
53
  """
54
54
  pass
55
55
 
56
+ def test_get_detailed_supported_features(self):
57
+ """Test case for get_detailed_supported_features
58
+
59
+ """
60
+ pass
61
+
56
62
  def test_get_infra_env(self):
57
63
  """Test case for get_infra_env
58
64
 
@@ -305,6 +311,12 @@ class TestInstallerApi(unittest.TestCase):
305
311
  """
306
312
  pass
307
313
 
314
+ def test_v2_register_disconnected_cluster(self):
315
+ """Test case for v2_register_disconnected_cluster
316
+
317
+ """
318
+ pass
319
+
308
320
  def test_v2_register_host(self):
309
321
  """Test case for v2_register_host
310
322
 
test/test_operator.py ADDED
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ AssistedInstall
5
+
6
+ Assisted installation # noqa: E501
7
+
8
+ OpenAPI spec version: 1.0.0
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ from __future__ import absolute_import
15
+
16
+ import unittest
17
+
18
+ import assisted_service_client
19
+ from assisted_service_client.models.operator import Operator # noqa: E501
20
+ from assisted_service_client.rest import ApiException
21
+
22
+
23
+ class TestOperator(unittest.TestCase):
24
+ """Operator unit test stubs"""
25
+
26
+ def setUp(self):
27
+ pass
28
+
29
+ def tearDown(self):
30
+ pass
31
+
32
+ def testOperator(self):
33
+ """Test Operator"""
34
+ # FIXME: construct object with mandatory attributes with example values
35
+ # model = assisted_service_client.models.operator.Operator() # noqa: E501
36
+ pass
37
+
38
+
39
+ if __name__ == '__main__':
40
+ unittest.main()
@@ -39,7 +39,7 @@ class TestOperatorsApi(unittest.TestCase):
39
39
  def test_v2_list_bundles(self):
40
40
  """Test case for v2_list_bundles
41
41
 
42
- Get list of avaliable bundles # noqa: E501
42
+ Get list of available bundles # noqa: E501
43
43
  """
44
44
  pass
45
45