assisted-service-client 2.42.0.post9__py3-none-any.whl → 2.47.0.post114__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 (33) hide show
  1. assisted_service_client/__init__.py +6 -0
  2. assisted_service_client/api/installer_api.py +215 -5
  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 +4 -4
  6. assisted_service_client/models/cluster_validation_id.py +5 -0
  7. assisted_service_client/models/disconnected_cluster_create_params.py +151 -0
  8. assisted_service_client/models/feature.py +196 -0
  9. assisted_service_client/models/feature_support_level_id.py +5 -0
  10. assisted_service_client/models/fencing_credentials_params.py +210 -0
  11. assisted_service_client/models/host.py +31 -3
  12. assisted_service_client/models/host_update_params.py +31 -3
  13. assisted_service_client/models/host_validation_id.py +4 -0
  14. assisted_service_client/models/image_type.py +1 -0
  15. assisted_service_client/models/incompatibility_reason.py +95 -0
  16. assisted_service_client/models/infra_env.py +29 -1
  17. assisted_service_client/models/infra_env_create_params.py +29 -1
  18. assisted_service_client/models/infra_env_update_params.py +29 -1
  19. assisted_service_client/models/inline_response2001.py +43 -19
  20. assisted_service_client/models/inline_response2002.py +117 -0
  21. assisted_service_client/models/operator.py +252 -0
  22. {assisted_service_client-2.42.0.post9.dist-info → assisted_service_client-2.47.0.post114.dist-info}/METADATA +10 -2
  23. {assisted_service_client-2.42.0.post9.dist-info → assisted_service_client-2.47.0.post114.dist-info}/RECORD +33 -21
  24. test/test_disconnected_cluster_create_params.py +40 -0
  25. test/test_feature.py +40 -0
  26. test/test_fencing_credentials_params.py +40 -0
  27. test/test_incompatibility_reason.py +40 -0
  28. test/test_inline_response2002.py +40 -0
  29. test/test_installer_api.py +12 -0
  30. test/test_operator.py +40 -0
  31. test/test_operators_api.py +1 -1
  32. {assisted_service_client-2.42.0.post9.dist-info → assisted_service_client-2.47.0.post114.dist-info}/WHEEL +0 -0
  33. {assisted_service_client-2.42.0.post9.dist-info → assisted_service_client-2.47.0.post114.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,252 @@
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
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+
20
+ class Operator(object):
21
+ """NOTE: This class is auto generated by the swagger code generator program.
22
+
23
+ Do not edit the class manually.
24
+ """
25
+
26
+ """
27
+ Attributes:
28
+ swagger_types (dict): The key is attribute name
29
+ and the value is attribute type.
30
+ attribute_map (dict): The key is attribute name
31
+ and the value is json key in definition.
32
+ """
33
+ swagger_types = {
34
+ 'feature_support_level_id': 'FeatureSupportLevelId',
35
+ 'support_level': 'SupportLevel',
36
+ 'reason': 'IncompatibilityReason',
37
+ 'incompatibilities': 'list[FeatureSupportLevelId]',
38
+ 'name': 'str',
39
+ 'dependencies': 'list[FeatureSupportLevelId]'
40
+ }
41
+
42
+ attribute_map = {
43
+ 'feature_support_level_id': 'feature-support-level-id',
44
+ 'support_level': 'support_level',
45
+ 'reason': 'reason',
46
+ 'incompatibilities': 'incompatibilities',
47
+ 'name': 'name',
48
+ 'dependencies': 'dependencies'
49
+ }
50
+
51
+ def __init__(self, feature_support_level_id=None, support_level=None, reason=None, incompatibilities=None, name=None, dependencies=None): # noqa: E501
52
+ """Operator - a model defined in Swagger""" # noqa: E501
53
+
54
+ self._feature_support_level_id = None
55
+ self._support_level = None
56
+ self._reason = None
57
+ self._incompatibilities = None
58
+ self._name = None
59
+ self._dependencies = None
60
+ self.discriminator = None
61
+
62
+ self.feature_support_level_id = feature_support_level_id
63
+ self.support_level = support_level
64
+ if reason is not None:
65
+ self.reason = reason
66
+ self.incompatibilities = incompatibilities
67
+ self.name = name
68
+ self.dependencies = dependencies
69
+
70
+ @property
71
+ def feature_support_level_id(self):
72
+ """Gets the feature_support_level_id of this Operator. # noqa: E501
73
+
74
+
75
+ :return: The feature_support_level_id of this Operator. # noqa: E501
76
+ :rtype: FeatureSupportLevelId
77
+ """
78
+ return self._feature_support_level_id
79
+
80
+ @feature_support_level_id.setter
81
+ def feature_support_level_id(self, feature_support_level_id):
82
+ """Sets the feature_support_level_id of this Operator.
83
+
84
+
85
+ :param feature_support_level_id: The feature_support_level_id of this Operator. # noqa: E501
86
+ :type: FeatureSupportLevelId
87
+ """
88
+ if feature_support_level_id is None:
89
+ raise ValueError("Invalid value for `feature_support_level_id`, must not be `None`") # noqa: E501
90
+
91
+ self._feature_support_level_id = feature_support_level_id
92
+
93
+ @property
94
+ def support_level(self):
95
+ """Gets the support_level of this Operator. # noqa: E501
96
+
97
+
98
+ :return: The support_level of this Operator. # noqa: E501
99
+ :rtype: SupportLevel
100
+ """
101
+ return self._support_level
102
+
103
+ @support_level.setter
104
+ def support_level(self, support_level):
105
+ """Sets the support_level of this Operator.
106
+
107
+
108
+ :param support_level: The support_level of this Operator. # noqa: E501
109
+ :type: SupportLevel
110
+ """
111
+ if support_level is None:
112
+ raise ValueError("Invalid value for `support_level`, must not be `None`") # noqa: E501
113
+
114
+ self._support_level = support_level
115
+
116
+ @property
117
+ def reason(self):
118
+ """Gets the reason of this Operator. # noqa: E501
119
+
120
+
121
+ :return: The reason of this Operator. # noqa: E501
122
+ :rtype: IncompatibilityReason
123
+ """
124
+ return self._reason
125
+
126
+ @reason.setter
127
+ def reason(self, reason):
128
+ """Sets the reason of this Operator.
129
+
130
+
131
+ :param reason: The reason of this Operator. # noqa: E501
132
+ :type: IncompatibilityReason
133
+ """
134
+
135
+ self._reason = reason
136
+
137
+ @property
138
+ def incompatibilities(self):
139
+ """Gets the incompatibilities of this Operator. # noqa: E501
140
+
141
+
142
+ :return: The incompatibilities of this Operator. # noqa: E501
143
+ :rtype: list[FeatureSupportLevelId]
144
+ """
145
+ return self._incompatibilities
146
+
147
+ @incompatibilities.setter
148
+ def incompatibilities(self, incompatibilities):
149
+ """Sets the incompatibilities of this Operator.
150
+
151
+
152
+ :param incompatibilities: The incompatibilities of this Operator. # noqa: E501
153
+ :type: list[FeatureSupportLevelId]
154
+ """
155
+ if incompatibilities is None:
156
+ raise ValueError("Invalid value for `incompatibilities`, must not be `None`") # noqa: E501
157
+
158
+ self._incompatibilities = incompatibilities
159
+
160
+ @property
161
+ def name(self):
162
+ """Gets the name of this Operator. # noqa: E501
163
+
164
+ Name of the operator # noqa: E501
165
+
166
+ :return: The name of this Operator. # noqa: E501
167
+ :rtype: str
168
+ """
169
+ return self._name
170
+
171
+ @name.setter
172
+ def name(self, name):
173
+ """Sets the name of this Operator.
174
+
175
+ Name of the operator # noqa: E501
176
+
177
+ :param name: The name of this Operator. # noqa: E501
178
+ :type: str
179
+ """
180
+ if name is None:
181
+ raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501
182
+
183
+ self._name = name
184
+
185
+ @property
186
+ def dependencies(self):
187
+ """Gets the dependencies of this Operator. # noqa: E501
188
+
189
+
190
+ :return: The dependencies of this Operator. # noqa: E501
191
+ :rtype: list[FeatureSupportLevelId]
192
+ """
193
+ return self._dependencies
194
+
195
+ @dependencies.setter
196
+ def dependencies(self, dependencies):
197
+ """Sets the dependencies of this Operator.
198
+
199
+
200
+ :param dependencies: The dependencies of this Operator. # noqa: E501
201
+ :type: list[FeatureSupportLevelId]
202
+ """
203
+ if dependencies is None:
204
+ raise ValueError("Invalid value for `dependencies`, must not be `None`") # noqa: E501
205
+
206
+ self._dependencies = dependencies
207
+
208
+ def to_dict(self):
209
+ """Returns the model properties as a dict"""
210
+ result = {}
211
+
212
+ for attr, _ in six.iteritems(self.swagger_types):
213
+ value = getattr(self, attr)
214
+ if isinstance(value, list):
215
+ result[attr] = list(map(
216
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
217
+ value
218
+ ))
219
+ elif hasattr(value, "to_dict"):
220
+ result[attr] = value.to_dict()
221
+ elif isinstance(value, dict):
222
+ result[attr] = dict(map(
223
+ lambda item: (item[0], item[1].to_dict())
224
+ if hasattr(item[1], "to_dict") else item,
225
+ value.items()
226
+ ))
227
+ else:
228
+ result[attr] = value
229
+ if issubclass(Operator, dict):
230
+ for key, value in self.items():
231
+ result[key] = value
232
+
233
+ return result
234
+
235
+ def to_str(self):
236
+ """Returns the string representation of the model"""
237
+ return pprint.pformat(self.to_dict())
238
+
239
+ def __repr__(self):
240
+ """For `print` and `pprint`"""
241
+ return self.to_str()
242
+
243
+ def __eq__(self, other):
244
+ """Returns true if both objects are equal"""
245
+ if not isinstance(other, Operator):
246
+ return False
247
+
248
+ return self.__dict__ == other.__dict__
249
+
250
+ def __ne__(self, other):
251
+ """Returns true if both objects are not equal"""
252
+ return not self == other
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: assisted-service-client
3
- Version: 2.42.0.post9
3
+ Version: 2.47.0.post114
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=TRtS5MU9VjYf2dEJMpzvVQxswWwlH-UTHtYMEZ8YtBQ,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,7 +18,7 @@ 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=TwYYOi6u04_fs2zQp-LGMCYAGvkX1SMzxli2OiaWMwo,76881
21
+ assisted_service_client/models/cluster.py,sha256=0xWMKa_2TiasRWNP6pi9eZ7k8IeatElu4vznNlOmrKY,77087
22
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
@@ -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,6 +44,7 @@ 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
50
  assisted_service_client/models/disk_encryption.py,sha256=eAl0jhRJ1hvN5R0HckT8sexQdq9X-x-F2sQzL8BYsEk,5646
@@ -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=DVE7zzzbmAl66kbU-7VKIHk9W5KOX16OPnWK7zS3xQg,4053
66
+ assisted_service_client/models/feature.py,sha256=jNjOBzP1Qz_dzvSbfQ2LeIME4B5F-XYhSTwPP9cA9vg,5954
67
+ assisted_service_client/models/feature_support_level_id.py,sha256=aSsbqglbMIifzaknlZdGxqiJ8MARTZhub-IhUAv7chU,4241
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,24 +87,26 @@ 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
96
- assisted_service_client/models/infra_env.py,sha256=pS9Q4A1TDwQXqKp9Ph29_87L_yAQtmJY_i4Ck87Uy60,24743
97
- assisted_service_client/models/infra_env_create_params.py,sha256=vEzMXPORxoepCHwNdZKlcQaTUOsNZhYWolX0FxPK2Pg,16151
99
+ assisted_service_client/models/incompatibility_reason.py,sha256=e2nX-56qPV2bjBLcBumR3d4cmf_KIQBnnY6pcnsq-Ss,2623
100
+ assisted_service_client/models/infra_env.py,sha256=uDIw4goV8huAWpNIUdL9AEzJA83blOK4BvEXcaGTUCw,26150
101
+ assisted_service_client/models/infra_env_create_params.py,sha256=5WvRwWLV0xk8MoAO3c0yH_oqcFcggghRs8dJjZsRl90,17606
98
102
  assisted_service_client/models/infra_env_list.py,sha256=QAy34UbUHugMwQZYOI9Y3SQKY1MNXOIKf3Yanry9GdE,2368
99
- assisted_service_client/models/infra_env_update_params.py,sha256=0OmfOU_ZDH5XfBZOjsYJsCERyDX5iA3ONOxZJjTJzaM,12511
103
+ assisted_service_client/models/infra_env_update_params.py,sha256=GMoVYM3g_EDpZ-fE74oNLl-fVu2UZSq6iJhYg909oDo,13966
100
104
  assisted_service_client/models/infra_error.py,sha256=Y5c3rRcqf_HKAPKzX5xUVvXpFVcT0ygZnWtPFH-NF74,4314
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
@@ -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.42.0.post9.dist-info/METADATA,sha256=tnZO3rFxbXZi6dV44lCVHJsT-OoQwi8ESun7rD-dLew,26526
387
- assisted_service_client-2.42.0.post9.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
388
- assisted_service_client-2.42.0.post9.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
389
- assisted_service_client-2.42.0.post9.dist-info/RECORD,,
398
+ assisted_service_client-2.47.0.post114.dist-info/METADATA,sha256=Yq6FHLkJBKvdLZwPMfHAI9q79_Or35IlvA6XZQg0aL4,27152
399
+ assisted_service_client-2.47.0.post114.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
400
+ assisted_service_client-2.47.0.post114.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
401
+ assisted_service_client-2.47.0.post114.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()