assisted-service-client 2.30.0.post49__py3-none-any.whl → 2.37.0.post25__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.
- assisted_service_client/__init__.py +4 -0
- assisted_service_client/api/events_api.py +1 -1
- assisted_service_client/api/installer_api.py +3 -3
- assisted_service_client/api/versions_api.py +9 -1
- assisted_service_client/configuration.py +7 -0
- assisted_service_client/models/__init__.py +4 -0
- assisted_service_client/models/boot.py +29 -3
- assisted_service_client/models/cluster.py +57 -3
- assisted_service_client/models/cluster_create_params.py +59 -5
- assisted_service_client/models/cluster_validation_id.py +9 -0
- assisted_service_client/models/connectivity_remote_host.py +29 -3
- assisted_service_client/models/disk.py +55 -3
- assisted_service_client/models/domain_resolution_response_resolutions.py +31 -3
- assisted_service_client/models/feature_support_level_id.py +11 -0
- assisted_service_client/models/finalizing_stage.py +1 -0
- assisted_service_client/models/host_validation_id.py +11 -0
- assisted_service_client/models/infra_env_update_params.py +31 -3
- assisted_service_client/models/install_cmd_request.py +31 -3
- assisted_service_client/models/iscsi.py +117 -0
- assisted_service_client/models/load_balancer.py +123 -0
- assisted_service_client/models/manifest.py +37 -3
- assisted_service_client/models/mtu_report.py +167 -0
- assisted_service_client/models/secure_boot_state.py +95 -0
- assisted_service_client/models/v2_cluster_update_params.py +57 -3
- {assisted_service_client-2.30.0.post49.dist-info → assisted_service_client-2.37.0.post25.dist-info}/METADATA +15 -4
- {assisted_service_client-2.30.0.post49.dist-info → assisted_service_client-2.37.0.post25.dist-info}/RECORD +32 -24
- test/test_iscsi.py +40 -0
- test/test_load_balancer.py +40 -0
- test/test_mtu_report.py +40 -0
- test/test_secure_boot_state.py +40 -0
- {assisted_service_client-2.30.0.post49.dist-info → assisted_service_client-2.37.0.post25.dist-info}/WHEEL +0 -0
- {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()
|
test/test_mtu_report.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.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()
|
File without changes
|
File without changes
|