assisted-service-client 2.30.0.post49__py3-none-any.whl → 2.37.0.post25__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. assisted_service_client/__init__.py +4 -0
  2. assisted_service_client/api/events_api.py +1 -1
  3. assisted_service_client/api/installer_api.py +3 -3
  4. assisted_service_client/api/versions_api.py +9 -1
  5. assisted_service_client/configuration.py +7 -0
  6. assisted_service_client/models/__init__.py +4 -0
  7. assisted_service_client/models/boot.py +29 -3
  8. assisted_service_client/models/cluster.py +57 -3
  9. assisted_service_client/models/cluster_create_params.py +59 -5
  10. assisted_service_client/models/cluster_validation_id.py +9 -0
  11. assisted_service_client/models/connectivity_remote_host.py +29 -3
  12. assisted_service_client/models/disk.py +55 -3
  13. assisted_service_client/models/domain_resolution_response_resolutions.py +31 -3
  14. assisted_service_client/models/feature_support_level_id.py +11 -0
  15. assisted_service_client/models/finalizing_stage.py +1 -0
  16. assisted_service_client/models/host_validation_id.py +11 -0
  17. assisted_service_client/models/infra_env_update_params.py +31 -3
  18. assisted_service_client/models/install_cmd_request.py +31 -3
  19. assisted_service_client/models/iscsi.py +117 -0
  20. assisted_service_client/models/load_balancer.py +123 -0
  21. assisted_service_client/models/manifest.py +37 -3
  22. assisted_service_client/models/mtu_report.py +167 -0
  23. assisted_service_client/models/secure_boot_state.py +95 -0
  24. assisted_service_client/models/v2_cluster_update_params.py +57 -3
  25. {assisted_service_client-2.30.0.post49.dist-info → assisted_service_client-2.37.0.post25.dist-info}/METADATA +15 -4
  26. {assisted_service_client-2.30.0.post49.dist-info → assisted_service_client-2.37.0.post25.dist-info}/RECORD +32 -24
  27. test/test_iscsi.py +40 -0
  28. test/test_load_balancer.py +40 -0
  29. test/test_mtu_report.py +40 -0
  30. test/test_secure_boot_state.py +40 -0
  31. {assisted_service_client-2.30.0.post49.dist-info → assisted_service_client-2.37.0.post25.dist-info}/WHEEL +0 -0
  32. {assisted_service_client-2.30.0.post49.dist-info → assisted_service_client-2.37.0.post25.dist-info}/top_level.txt +0 -0
@@ -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.load_balancer import LoadBalancer # noqa: E501
20
+ from assisted_service_client.rest import ApiException
21
+
22
+
23
+ class TestLoadBalancer(unittest.TestCase):
24
+ """LoadBalancer unit test stubs"""
25
+
26
+ def setUp(self):
27
+ pass
28
+
29
+ def tearDown(self):
30
+ pass
31
+
32
+ def testLoadBalancer(self):
33
+ """Test LoadBalancer"""
34
+ # FIXME: construct object with mandatory attributes with example values
35
+ # model = assisted_service_client.models.load_balancer.LoadBalancer() # 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.mtu_report import MtuReport # noqa: E501
20
+ from assisted_service_client.rest import ApiException
21
+
22
+
23
+ class TestMtuReport(unittest.TestCase):
24
+ """MtuReport unit test stubs"""
25
+
26
+ def setUp(self):
27
+ pass
28
+
29
+ def tearDown(self):
30
+ pass
31
+
32
+ def testMtuReport(self):
33
+ """Test MtuReport"""
34
+ # FIXME: construct object with mandatory attributes with example values
35
+ # model = assisted_service_client.models.mtu_report.MtuReport() # 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.secure_boot_state import SecureBootState # noqa: E501
20
+ from assisted_service_client.rest import ApiException
21
+
22
+
23
+ class TestSecureBootState(unittest.TestCase):
24
+ """SecureBootState unit test stubs"""
25
+
26
+ def setUp(self):
27
+ pass
28
+
29
+ def tearDown(self):
30
+ pass
31
+
32
+ def testSecureBootState(self):
33
+ """Test SecureBootState"""
34
+ # FIXME: construct object with mandatory attributes with example values
35
+ # model = assisted_service_client.models.secure_boot_state.SecureBootState() # noqa: E501
36
+ pass
37
+
38
+
39
+ if __name__ == '__main__':
40
+ unittest.main()