graphiant-sdk 25.12.1__py3-none-any.whl → 26.1.1__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.
- graphiant_sdk/__init__.py +2982 -1471
- graphiant_sdk/api/default_api.py +1712 -23
- graphiant_sdk/api_client.py +16 -9
- graphiant_sdk/configuration.py +9 -3
- graphiant_sdk/exceptions.py +6 -3
- graphiant_sdk/models/__init__.py +19 -1
- graphiant_sdk/models/assurance_dns_proxy_entry.py +97 -0
- graphiant_sdk/models/iam_customer.py +6 -2
- graphiant_sdk/models/mana_v2_b2b_extranet_service_customer_match_details.py +15 -2
- graphiant_sdk/models/mana_v2_device.py +7 -1
- graphiant_sdk/models/mana_v2_edge_device_config.py +7 -1
- graphiant_sdk/models/mana_v2_interface.py +7 -1
- graphiant_sdk/models/mana_v2_interface_config.py +7 -1
- graphiant_sdk/models/mana_v2_interface_ma_csec.py +115 -0
- graphiant_sdk/models/mana_v2_lag_interface_config.py +7 -1
- graphiant_sdk/models/mana_v2_ma_csec_configuration.py +150 -0
- graphiant_sdk/models/mana_v2_nullable_ma_csec_configuration.py +91 -0
- graphiant_sdk/models/mana_v2_nullable_psk_configuration.py +91 -0
- graphiant_sdk/models/mana_v2_nullable_sak_configuration.py +91 -0
- graphiant_sdk/models/mana_v2_nullable_sla_conformance.py +91 -0
- graphiant_sdk/models/mana_v2_psk_configuration.py +99 -0
- graphiant_sdk/models/mana_v2_sak_configuration.py +93 -0
- graphiant_sdk/models/mana_v2_sla_conformance.py +91 -0
- graphiant_sdk/models/v1_auth_login_post_response.py +10 -2
- graphiant_sdk/models/v1_extranets_b2b_peering_consumer_id_prefixes_put_request.py +95 -0
- graphiant_sdk/models/v1_extranets_b2b_peering_consumer_id_prefixes_put_response.py +87 -0
- graphiant_sdk/models/v1_extranets_b2b_peering_match_service_to_customer_service_status_put_request.py +89 -0
- graphiant_sdk/models/v1_extranets_b2b_peering_match_service_to_customer_service_status_put_response.py +87 -0
- graphiant_sdk/models/v2_assurance_create_dnsproxy_entry_post_request.py +91 -0
- graphiant_sdk/models/v2_assurance_create_dnsproxy_entry_post_response.py +87 -0
- graphiant_sdk/models/v2_assurance_read_dnsproxy_list_get_response.py +95 -0
- graphiant_sdk/models/v2_assurance_update_dnsproxy_entry_post_request.py +91 -0
- graphiant_sdk/rest.py +7 -2
- {graphiant_sdk-25.12.1.dist-info → graphiant_sdk-26.1.1.dist-info}/METADATA +5 -3
- {graphiant_sdk-25.12.1.dist-info → graphiant_sdk-26.1.1.dist-info}/RECORD +56 -20
- {graphiant_sdk-25.12.1.dist-info → graphiant_sdk-26.1.1.dist-info}/WHEEL +1 -1
- test/test_assurance_dns_proxy_entry.py +70 -0
- test/test_mana_v2_interface_ma_csec.py +72 -0
- test/test_mana_v2_ma_csec_configuration.py +124 -0
- test/test_mana_v2_nullable_ma_csec_configuration.py +90 -0
- test/test_mana_v2_nullable_psk_configuration.py +58 -0
- test/test_mana_v2_nullable_sak_configuration.py +55 -0
- test/test_mana_v2_nullable_sla_conformance.py +54 -0
- test/test_mana_v2_psk_configuration.py +57 -0
- test/test_mana_v2_sak_configuration.py +54 -0
- test/test_mana_v2_sla_conformance.py +53 -0
- test/test_v1_extranets_b2b_peering_consumer_id_prefixes_put_request.py +60 -0
- test/test_v1_extranets_b2b_peering_consumer_id_prefixes_put_response.py +51 -0
- test/test_v1_extranets_b2b_peering_match_service_to_customer_service_status_put_request.py +54 -0
- test/test_v1_extranets_b2b_peering_match_service_to_customer_service_status_put_response.py +51 -0
- test/test_v2_assurance_create_dnsproxy_entry_post_request.py +61 -0
- test/test_v2_assurance_create_dnsproxy_entry_post_response.py +51 -0
- test/test_v2_assurance_read_dnsproxy_list_get_response.py +63 -0
- test/test_v2_assurance_update_dnsproxy_entry_post_request.py +61 -0
- {graphiant_sdk-25.12.1.dist-info → graphiant_sdk-26.1.1.dist-info}/licenses/LICENSE +0 -0
- {graphiant_sdk-25.12.1.dist-info → graphiant_sdk-26.1.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Graphiant APIs
|
|
5
|
+
|
|
6
|
+
Graphiant API documentation.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
from graphiant_sdk.models.v2_assurance_create_dnsproxy_entry_post_request import V2AssuranceCreateDnsproxyEntryPostRequest
|
|
18
|
+
|
|
19
|
+
class TestV2AssuranceCreateDnsproxyEntryPostRequest(unittest.TestCase):
|
|
20
|
+
"""V2AssuranceCreateDnsproxyEntryPostRequest unit test stubs"""
|
|
21
|
+
|
|
22
|
+
def setUp(self):
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
def tearDown(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def make_instance(self, include_optional) -> V2AssuranceCreateDnsproxyEntryPostRequest:
|
|
29
|
+
"""Test V2AssuranceCreateDnsproxyEntryPostRequest
|
|
30
|
+
include_optional is a boolean, when False only required
|
|
31
|
+
params are included, when True both required and
|
|
32
|
+
optional params are included """
|
|
33
|
+
# uncomment below to create an instance of `V2AssuranceCreateDnsproxyEntryPostRequest`
|
|
34
|
+
"""
|
|
35
|
+
model = V2AssuranceCreateDnsproxyEntryPostRequest()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return V2AssuranceCreateDnsproxyEntryPostRequest(
|
|
38
|
+
dnsproxy_entry = graphiant_sdk.models.assurance_dns_proxy_entry.assuranceDnsProxyEntry(
|
|
39
|
+
dnsproxy_entry_id = 'example string',
|
|
40
|
+
ip_list = [
|
|
41
|
+
'example string'
|
|
42
|
+
],
|
|
43
|
+
name = 'DNSPROXY_EXCEPTION_DNS',
|
|
44
|
+
name_text = 'example string',
|
|
45
|
+
port_list = [
|
|
46
|
+
'example string'
|
|
47
|
+
],
|
|
48
|
+
protocol = 'example string', )
|
|
49
|
+
)
|
|
50
|
+
else:
|
|
51
|
+
return V2AssuranceCreateDnsproxyEntryPostRequest(
|
|
52
|
+
)
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
def testV2AssuranceCreateDnsproxyEntryPostRequest(self):
|
|
56
|
+
"""Test V2AssuranceCreateDnsproxyEntryPostRequest"""
|
|
57
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
58
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
59
|
+
|
|
60
|
+
if __name__ == '__main__':
|
|
61
|
+
unittest.main()
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Graphiant APIs
|
|
5
|
+
|
|
6
|
+
Graphiant API documentation.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
from graphiant_sdk.models.v2_assurance_create_dnsproxy_entry_post_response import V2AssuranceCreateDnsproxyEntryPostResponse
|
|
18
|
+
|
|
19
|
+
class TestV2AssuranceCreateDnsproxyEntryPostResponse(unittest.TestCase):
|
|
20
|
+
"""V2AssuranceCreateDnsproxyEntryPostResponse unit test stubs"""
|
|
21
|
+
|
|
22
|
+
def setUp(self):
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
def tearDown(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def make_instance(self, include_optional) -> V2AssuranceCreateDnsproxyEntryPostResponse:
|
|
29
|
+
"""Test V2AssuranceCreateDnsproxyEntryPostResponse
|
|
30
|
+
include_optional is a boolean, when False only required
|
|
31
|
+
params are included, when True both required and
|
|
32
|
+
optional params are included """
|
|
33
|
+
# uncomment below to create an instance of `V2AssuranceCreateDnsproxyEntryPostResponse`
|
|
34
|
+
"""
|
|
35
|
+
model = V2AssuranceCreateDnsproxyEntryPostResponse()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return V2AssuranceCreateDnsproxyEntryPostResponse(
|
|
38
|
+
dnsproxy_entry_id = 'example string'
|
|
39
|
+
)
|
|
40
|
+
else:
|
|
41
|
+
return V2AssuranceCreateDnsproxyEntryPostResponse(
|
|
42
|
+
)
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
def testV2AssuranceCreateDnsproxyEntryPostResponse(self):
|
|
46
|
+
"""Test V2AssuranceCreateDnsproxyEntryPostResponse"""
|
|
47
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
48
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
49
|
+
|
|
50
|
+
if __name__ == '__main__':
|
|
51
|
+
unittest.main()
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Graphiant APIs
|
|
5
|
+
|
|
6
|
+
Graphiant API documentation.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
from graphiant_sdk.models.v2_assurance_read_dnsproxy_list_get_response import V2AssuranceReadDnsproxyListGetResponse
|
|
18
|
+
|
|
19
|
+
class TestV2AssuranceReadDnsproxyListGetResponse(unittest.TestCase):
|
|
20
|
+
"""V2AssuranceReadDnsproxyListGetResponse unit test stubs"""
|
|
21
|
+
|
|
22
|
+
def setUp(self):
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
def tearDown(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def make_instance(self, include_optional) -> V2AssuranceReadDnsproxyListGetResponse:
|
|
29
|
+
"""Test V2AssuranceReadDnsproxyListGetResponse
|
|
30
|
+
include_optional is a boolean, when False only required
|
|
31
|
+
params are included, when True both required and
|
|
32
|
+
optional params are included """
|
|
33
|
+
# uncomment below to create an instance of `V2AssuranceReadDnsproxyListGetResponse`
|
|
34
|
+
"""
|
|
35
|
+
model = V2AssuranceReadDnsproxyListGetResponse()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return V2AssuranceReadDnsproxyListGetResponse(
|
|
38
|
+
dnsproxy_list = [
|
|
39
|
+
graphiant_sdk.models.assurance_dns_proxy_entry.assuranceDnsProxyEntry(
|
|
40
|
+
dnsproxy_entry_id = 'example string',
|
|
41
|
+
ip_list = [
|
|
42
|
+
'example string'
|
|
43
|
+
],
|
|
44
|
+
name = 'DNSPROXY_EXCEPTION_DNS',
|
|
45
|
+
name_text = 'example string',
|
|
46
|
+
port_list = [
|
|
47
|
+
'example string'
|
|
48
|
+
],
|
|
49
|
+
protocol = 'example string', )
|
|
50
|
+
]
|
|
51
|
+
)
|
|
52
|
+
else:
|
|
53
|
+
return V2AssuranceReadDnsproxyListGetResponse(
|
|
54
|
+
)
|
|
55
|
+
"""
|
|
56
|
+
|
|
57
|
+
def testV2AssuranceReadDnsproxyListGetResponse(self):
|
|
58
|
+
"""Test V2AssuranceReadDnsproxyListGetResponse"""
|
|
59
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
60
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
61
|
+
|
|
62
|
+
if __name__ == '__main__':
|
|
63
|
+
unittest.main()
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Graphiant APIs
|
|
5
|
+
|
|
6
|
+
Graphiant API documentation.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
from graphiant_sdk.models.v2_assurance_update_dnsproxy_entry_post_request import V2AssuranceUpdateDnsproxyEntryPostRequest
|
|
18
|
+
|
|
19
|
+
class TestV2AssuranceUpdateDnsproxyEntryPostRequest(unittest.TestCase):
|
|
20
|
+
"""V2AssuranceUpdateDnsproxyEntryPostRequest unit test stubs"""
|
|
21
|
+
|
|
22
|
+
def setUp(self):
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
def tearDown(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def make_instance(self, include_optional) -> V2AssuranceUpdateDnsproxyEntryPostRequest:
|
|
29
|
+
"""Test V2AssuranceUpdateDnsproxyEntryPostRequest
|
|
30
|
+
include_optional is a boolean, when False only required
|
|
31
|
+
params are included, when True both required and
|
|
32
|
+
optional params are included """
|
|
33
|
+
# uncomment below to create an instance of `V2AssuranceUpdateDnsproxyEntryPostRequest`
|
|
34
|
+
"""
|
|
35
|
+
model = V2AssuranceUpdateDnsproxyEntryPostRequest()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return V2AssuranceUpdateDnsproxyEntryPostRequest(
|
|
38
|
+
dnsproxy_entry = graphiant_sdk.models.assurance_dns_proxy_entry.assuranceDnsProxyEntry(
|
|
39
|
+
dnsproxy_entry_id = 'example string',
|
|
40
|
+
ip_list = [
|
|
41
|
+
'example string'
|
|
42
|
+
],
|
|
43
|
+
name = 'DNSPROXY_EXCEPTION_DNS',
|
|
44
|
+
name_text = 'example string',
|
|
45
|
+
port_list = [
|
|
46
|
+
'example string'
|
|
47
|
+
],
|
|
48
|
+
protocol = 'example string', )
|
|
49
|
+
)
|
|
50
|
+
else:
|
|
51
|
+
return V2AssuranceUpdateDnsproxyEntryPostRequest(
|
|
52
|
+
)
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
def testV2AssuranceUpdateDnsproxyEntryPostRequest(self):
|
|
56
|
+
"""Test V2AssuranceUpdateDnsproxyEntryPostRequest"""
|
|
57
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
58
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
59
|
+
|
|
60
|
+
if __name__ == '__main__':
|
|
61
|
+
unittest.main()
|
|
File without changes
|
|
File without changes
|