assisted-service-client 2.16.0.post8__py3-none-any.whl → 2.16.0.post10__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- assisted_service_client/__init__.py +6 -0
- assisted_service_client/api/installer_api.py +206 -4
- assisted_service_client/models/__init__.py +6 -0
- assisted_service_client/models/architecture_support_level_id.py +96 -0
- assisted_service_client/models/feature_support_level_id.py +113 -0
- assisted_service_client/models/featuresupportlevel_features.py +5 -11
- assisted_service_client/models/inline_response200.py +117 -0
- assisted_service_client/models/inline_response2001.py +117 -0
- assisted_service_client/models/support_level.py +95 -0
- assisted_service_client/models/support_levels.py +87 -0
- {assisted_service_client-2.16.0.post8.dist-info → assisted_service_client-2.16.0.post10.dist-info}/METADATA +9 -1
- {assisted_service_client-2.16.0.post8.dist-info → assisted_service_client-2.16.0.post10.dist-info}/RECORD +21 -9
- test/test_architecture_support_level_id.py +40 -0
- test/test_feature_support_level_id.py +40 -0
- test/test_inline_response200.py +40 -0
- test/test_inline_response2001.py +40 -0
- test/test_installer_api.py +12 -0
- test/test_support_level.py +40 -0
- test/test_support_levels.py +40 -0
- {assisted_service_client-2.16.0.post8.dist-info → assisted_service_client-2.16.0.post10.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.16.0.post8.dist-info → assisted_service_client-2.16.0.post10.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.inline_response200 import InlineResponse200 # noqa: E501
|
20
|
+
from assisted_service_client.rest import ApiException
|
21
|
+
|
22
|
+
|
23
|
+
class TestInlineResponse200(unittest.TestCase):
|
24
|
+
"""InlineResponse200 unit test stubs"""
|
25
|
+
|
26
|
+
def setUp(self):
|
27
|
+
pass
|
28
|
+
|
29
|
+
def tearDown(self):
|
30
|
+
pass
|
31
|
+
|
32
|
+
def testInlineResponse200(self):
|
33
|
+
"""Test InlineResponse200"""
|
34
|
+
# FIXME: construct object with mandatory attributes with example values
|
35
|
+
# model = assisted_service_client.models.inline_response200.InlineResponse200() # 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_response2001 import InlineResponse2001 # noqa: E501
|
20
|
+
from assisted_service_client.rest import ApiException
|
21
|
+
|
22
|
+
|
23
|
+
class TestInlineResponse2001(unittest.TestCase):
|
24
|
+
"""InlineResponse2001 unit test stubs"""
|
25
|
+
|
26
|
+
def setUp(self):
|
27
|
+
pass
|
28
|
+
|
29
|
+
def tearDown(self):
|
30
|
+
pass
|
31
|
+
|
32
|
+
def testInlineResponse2001(self):
|
33
|
+
"""Test InlineResponse2001"""
|
34
|
+
# FIXME: construct object with mandatory attributes with example values
|
35
|
+
# model = assisted_service_client.models.inline_response2001.InlineResponse2001() # noqa: E501
|
36
|
+
pass
|
37
|
+
|
38
|
+
|
39
|
+
if __name__ == '__main__':
|
40
|
+
unittest.main()
|
test/test_installer_api.py
CHANGED
@@ -71,6 +71,18 @@ class TestInstallerApi(unittest.TestCase):
|
|
71
71
|
"""
|
72
72
|
pass
|
73
73
|
|
74
|
+
def test_get_supported_architectures(self):
|
75
|
+
"""Test case for get_supported_architectures
|
76
|
+
|
77
|
+
"""
|
78
|
+
pass
|
79
|
+
|
80
|
+
def test_get_supported_features(self):
|
81
|
+
"""Test case for get_supported_features
|
82
|
+
|
83
|
+
"""
|
84
|
+
pass
|
85
|
+
|
74
86
|
def test_list_cluster_hosts(self):
|
75
87
|
"""Test case for list_cluster_hosts
|
76
88
|
|
@@ -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.support_level import SupportLevel # noqa: E501
|
20
|
+
from assisted_service_client.rest import ApiException
|
21
|
+
|
22
|
+
|
23
|
+
class TestSupportLevel(unittest.TestCase):
|
24
|
+
"""SupportLevel unit test stubs"""
|
25
|
+
|
26
|
+
def setUp(self):
|
27
|
+
pass
|
28
|
+
|
29
|
+
def tearDown(self):
|
30
|
+
pass
|
31
|
+
|
32
|
+
def testSupportLevel(self):
|
33
|
+
"""Test SupportLevel"""
|
34
|
+
# FIXME: construct object with mandatory attributes with example values
|
35
|
+
# model = assisted_service_client.models.support_level.SupportLevel() # 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.support_levels import SupportLevels # noqa: E501
|
20
|
+
from assisted_service_client.rest import ApiException
|
21
|
+
|
22
|
+
|
23
|
+
class TestSupportLevels(unittest.TestCase):
|
24
|
+
"""SupportLevels unit test stubs"""
|
25
|
+
|
26
|
+
def setUp(self):
|
27
|
+
pass
|
28
|
+
|
29
|
+
def tearDown(self):
|
30
|
+
pass
|
31
|
+
|
32
|
+
def testSupportLevels(self):
|
33
|
+
"""Test SupportLevels"""
|
34
|
+
# FIXME: construct object with mandatory attributes with example values
|
35
|
+
# model = assisted_service_client.models.support_levels.SupportLevels() # noqa: E501
|
36
|
+
pass
|
37
|
+
|
38
|
+
|
39
|
+
if __name__ == '__main__':
|
40
|
+
unittest.main()
|
File without changes
|
File without changes
|