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.
Files changed (56) hide show
  1. graphiant_sdk/__init__.py +2982 -1471
  2. graphiant_sdk/api/default_api.py +1712 -23
  3. graphiant_sdk/api_client.py +16 -9
  4. graphiant_sdk/configuration.py +9 -3
  5. graphiant_sdk/exceptions.py +6 -3
  6. graphiant_sdk/models/__init__.py +19 -1
  7. graphiant_sdk/models/assurance_dns_proxy_entry.py +97 -0
  8. graphiant_sdk/models/iam_customer.py +6 -2
  9. graphiant_sdk/models/mana_v2_b2b_extranet_service_customer_match_details.py +15 -2
  10. graphiant_sdk/models/mana_v2_device.py +7 -1
  11. graphiant_sdk/models/mana_v2_edge_device_config.py +7 -1
  12. graphiant_sdk/models/mana_v2_interface.py +7 -1
  13. graphiant_sdk/models/mana_v2_interface_config.py +7 -1
  14. graphiant_sdk/models/mana_v2_interface_ma_csec.py +115 -0
  15. graphiant_sdk/models/mana_v2_lag_interface_config.py +7 -1
  16. graphiant_sdk/models/mana_v2_ma_csec_configuration.py +150 -0
  17. graphiant_sdk/models/mana_v2_nullable_ma_csec_configuration.py +91 -0
  18. graphiant_sdk/models/mana_v2_nullable_psk_configuration.py +91 -0
  19. graphiant_sdk/models/mana_v2_nullable_sak_configuration.py +91 -0
  20. graphiant_sdk/models/mana_v2_nullable_sla_conformance.py +91 -0
  21. graphiant_sdk/models/mana_v2_psk_configuration.py +99 -0
  22. graphiant_sdk/models/mana_v2_sak_configuration.py +93 -0
  23. graphiant_sdk/models/mana_v2_sla_conformance.py +91 -0
  24. graphiant_sdk/models/v1_auth_login_post_response.py +10 -2
  25. graphiant_sdk/models/v1_extranets_b2b_peering_consumer_id_prefixes_put_request.py +95 -0
  26. graphiant_sdk/models/v1_extranets_b2b_peering_consumer_id_prefixes_put_response.py +87 -0
  27. graphiant_sdk/models/v1_extranets_b2b_peering_match_service_to_customer_service_status_put_request.py +89 -0
  28. graphiant_sdk/models/v1_extranets_b2b_peering_match_service_to_customer_service_status_put_response.py +87 -0
  29. graphiant_sdk/models/v2_assurance_create_dnsproxy_entry_post_request.py +91 -0
  30. graphiant_sdk/models/v2_assurance_create_dnsproxy_entry_post_response.py +87 -0
  31. graphiant_sdk/models/v2_assurance_read_dnsproxy_list_get_response.py +95 -0
  32. graphiant_sdk/models/v2_assurance_update_dnsproxy_entry_post_request.py +91 -0
  33. graphiant_sdk/rest.py +7 -2
  34. {graphiant_sdk-25.12.1.dist-info → graphiant_sdk-26.1.1.dist-info}/METADATA +5 -3
  35. {graphiant_sdk-25.12.1.dist-info → graphiant_sdk-26.1.1.dist-info}/RECORD +56 -20
  36. {graphiant_sdk-25.12.1.dist-info → graphiant_sdk-26.1.1.dist-info}/WHEEL +1 -1
  37. test/test_assurance_dns_proxy_entry.py +70 -0
  38. test/test_mana_v2_interface_ma_csec.py +72 -0
  39. test/test_mana_v2_ma_csec_configuration.py +124 -0
  40. test/test_mana_v2_nullable_ma_csec_configuration.py +90 -0
  41. test/test_mana_v2_nullable_psk_configuration.py +58 -0
  42. test/test_mana_v2_nullable_sak_configuration.py +55 -0
  43. test/test_mana_v2_nullable_sla_conformance.py +54 -0
  44. test/test_mana_v2_psk_configuration.py +57 -0
  45. test/test_mana_v2_sak_configuration.py +54 -0
  46. test/test_mana_v2_sla_conformance.py +53 -0
  47. test/test_v1_extranets_b2b_peering_consumer_id_prefixes_put_request.py +60 -0
  48. test/test_v1_extranets_b2b_peering_consumer_id_prefixes_put_response.py +51 -0
  49. test/test_v1_extranets_b2b_peering_match_service_to_customer_service_status_put_request.py +54 -0
  50. test/test_v1_extranets_b2b_peering_match_service_to_customer_service_status_put_response.py +51 -0
  51. test/test_v2_assurance_create_dnsproxy_entry_post_request.py +61 -0
  52. test/test_v2_assurance_create_dnsproxy_entry_post_response.py +51 -0
  53. test/test_v2_assurance_read_dnsproxy_list_get_response.py +63 -0
  54. test/test_v2_assurance_update_dnsproxy_entry_post_request.py +61 -0
  55. {graphiant_sdk-25.12.1.dist-info → graphiant_sdk-26.1.1.dist-info}/licenses/LICENSE +0 -0
  56. {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()