thousandeyes-sdk-instant-tests 1.0.0__py3-none-any.whl → 1.2.0__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 (110) hide show
  1. thousandeyes_sdk/instant_tests/__init__.py +4 -1
  2. thousandeyes_sdk/instant_tests/api/agent_to_agent_api.py +0 -1
  3. thousandeyes_sdk/instant_tests/api/agent_to_server_api.py +0 -1
  4. thousandeyes_sdk/instant_tests/api/api_api.py +0 -1
  5. thousandeyes_sdk/instant_tests/api/dns_security_api.py +0 -1
  6. thousandeyes_sdk/instant_tests/api/dns_server_api.py +0 -1
  7. thousandeyes_sdk/instant_tests/api/dns_trace_api.py +0 -1
  8. thousandeyes_sdk/instant_tests/api/ftp_server_api.py +0 -1
  9. thousandeyes_sdk/instant_tests/api/http_page_load_api.py +0 -1
  10. thousandeyes_sdk/instant_tests/api/http_server_api.py +0 -1
  11. thousandeyes_sdk/instant_tests/api/run_api.py +0 -1
  12. thousandeyes_sdk/instant_tests/api/sip_server_api.py +0 -1
  13. thousandeyes_sdk/instant_tests/api/voice_api.py +0 -1
  14. thousandeyes_sdk/instant_tests/api/web_transaction_api.py +0 -1
  15. thousandeyes_sdk/instant_tests/models/__init__.py +4 -1
  16. thousandeyes_sdk/instant_tests/models/agent.py +0 -1
  17. thousandeyes_sdk/instant_tests/models/agent_base.py +0 -1
  18. thousandeyes_sdk/instant_tests/models/agent_interfaces.py +89 -0
  19. thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test.py +0 -1
  20. thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_request.py +0 -1
  21. thousandeyes_sdk/instant_tests/models/agent_to_agent_properties.py +0 -1
  22. thousandeyes_sdk/instant_tests/models/agent_to_agent_test_protocol.py +0 -1
  23. thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test.py +0 -1
  24. thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_request.py +0 -1
  25. thousandeyes_sdk/instant_tests/models/agent_to_server_properties.py +0 -1
  26. thousandeyes_sdk/instant_tests/models/api_instant_test.py +0 -1
  27. thousandeyes_sdk/instant_tests/models/api_instant_test_request.py +0 -1
  28. thousandeyes_sdk/instant_tests/models/api_predefined_variable.py +0 -1
  29. thousandeyes_sdk/instant_tests/models/api_properties.py +0 -1
  30. thousandeyes_sdk/instant_tests/models/api_request.py +0 -1
  31. thousandeyes_sdk/instant_tests/models/api_request_assertion.py +0 -1
  32. thousandeyes_sdk/instant_tests/models/api_request_assertion_name.py +0 -1
  33. thousandeyes_sdk/instant_tests/models/api_request_assertion_operator.py +0 -1
  34. thousandeyes_sdk/instant_tests/models/api_request_auth_type.py +0 -1
  35. thousandeyes_sdk/instant_tests/models/api_request_header.py +0 -1
  36. thousandeyes_sdk/instant_tests/models/api_request_method.py +0 -1
  37. thousandeyes_sdk/instant_tests/models/api_request_variable.py +0 -1
  38. thousandeyes_sdk/instant_tests/models/cloud_enterprise_agent_type.py +0 -1
  39. thousandeyes_sdk/instant_tests/models/dns_query_class.py +0 -1
  40. thousandeyes_sdk/instant_tests/models/dns_sec_instant_test.py +0 -1
  41. thousandeyes_sdk/instant_tests/models/dns_sec_instant_test_request.py +0 -1
  42. thousandeyes_sdk/instant_tests/models/dns_sec_properties.py +0 -1
  43. thousandeyes_sdk/instant_tests/models/dns_server_instant_test.py +0 -1
  44. thousandeyes_sdk/instant_tests/models/dns_server_instant_test_request.py +0 -1
  45. thousandeyes_sdk/instant_tests/models/dns_server_properties.py +0 -1
  46. thousandeyes_sdk/instant_tests/models/dns_servers_request.py +0 -1
  47. thousandeyes_sdk/instant_tests/models/dns_trace_instant_test.py +0 -1
  48. thousandeyes_sdk/instant_tests/models/dns_trace_instant_test_request.py +0 -1
  49. thousandeyes_sdk/instant_tests/models/dns_trace_properties.py +0 -1
  50. thousandeyes_sdk/instant_tests/models/error.py +0 -1
  51. thousandeyes_sdk/instant_tests/models/expand.py +0 -1
  52. thousandeyes_sdk/instant_tests/models/ftp_server_instant_test.py +0 -1
  53. thousandeyes_sdk/instant_tests/models/ftp_server_properties.py +0 -1
  54. thousandeyes_sdk/instant_tests/models/ftp_server_request_type.py +0 -1
  55. thousandeyes_sdk/instant_tests/models/http_server_base_properties.py +173 -0
  56. thousandeyes_sdk/instant_tests/models/http_server_instant_test.py +21 -8
  57. thousandeyes_sdk/instant_tests/models/http_server_instant_test_request.py +21 -8
  58. thousandeyes_sdk/instant_tests/models/http_server_properties.py +21 -8
  59. thousandeyes_sdk/instant_tests/models/instant_test.py +0 -1
  60. thousandeyes_sdk/instant_tests/models/instant_test_request.py +0 -1
  61. thousandeyes_sdk/instant_tests/models/link.py +0 -1
  62. thousandeyes_sdk/instant_tests/models/o_auth.py +103 -0
  63. thousandeyes_sdk/instant_tests/models/page_load_instant_test.py +35 -18
  64. thousandeyes_sdk/instant_tests/models/page_load_instant_test_request.py +35 -18
  65. thousandeyes_sdk/instant_tests/models/page_load_properties.py +36 -19
  66. thousandeyes_sdk/instant_tests/models/request_method.py +41 -0
  67. thousandeyes_sdk/instant_tests/models/server_instant_test_request.py +0 -1
  68. thousandeyes_sdk/instant_tests/models/shared_with_account.py +0 -1
  69. thousandeyes_sdk/instant_tests/models/simple_agent.py +0 -1
  70. thousandeyes_sdk/instant_tests/models/sip_server_instant_test.py +0 -1
  71. thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request.py +0 -1
  72. thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request1.py +0 -1
  73. thousandeyes_sdk/instant_tests/models/sip_server_instant_test_response.py +0 -1
  74. thousandeyes_sdk/instant_tests/models/sip_server_properties.py +0 -1
  75. thousandeyes_sdk/instant_tests/models/sip_test_protocol.py +0 -1
  76. thousandeyes_sdk/instant_tests/models/test_agent.py +0 -1
  77. thousandeyes_sdk/instant_tests/models/test_auth_type.py +0 -1
  78. thousandeyes_sdk/instant_tests/models/test_custom_headers.py +0 -1
  79. thousandeyes_sdk/instant_tests/models/test_direction.py +0 -1
  80. thousandeyes_sdk/instant_tests/models/test_dns_server.py +0 -1
  81. thousandeyes_sdk/instant_tests/models/test_dns_transport_protocol.py +0 -1
  82. thousandeyes_sdk/instant_tests/models/test_dscp_id.py +0 -1
  83. thousandeyes_sdk/instant_tests/models/test_ipv6_policy.py +0 -1
  84. thousandeyes_sdk/instant_tests/models/test_label.py +0 -1
  85. thousandeyes_sdk/instant_tests/models/test_links.py +0 -1
  86. thousandeyes_sdk/instant_tests/models/test_page_loading_strategy.py +0 -1
  87. thousandeyes_sdk/instant_tests/models/test_path_trace_mode.py +0 -1
  88. thousandeyes_sdk/instant_tests/models/test_probe_mode.py +0 -1
  89. thousandeyes_sdk/instant_tests/models/test_protocol.py +0 -1
  90. thousandeyes_sdk/instant_tests/models/test_self_link.py +0 -1
  91. thousandeyes_sdk/instant_tests/models/test_sip_credentials.py +0 -1
  92. thousandeyes_sdk/instant_tests/models/test_ssl_version_id.py +0 -1
  93. thousandeyes_sdk/instant_tests/models/test_type.py +0 -1
  94. thousandeyes_sdk/instant_tests/models/unauthorized_error.py +0 -1
  95. thousandeyes_sdk/instant_tests/models/unexpanded_instant_test.py +0 -1
  96. thousandeyes_sdk/instant_tests/models/validation_error.py +0 -1
  97. thousandeyes_sdk/instant_tests/models/validation_error_item.py +0 -1
  98. thousandeyes_sdk/instant_tests/models/voice_instant_test.py +0 -1
  99. thousandeyes_sdk/instant_tests/models/voice_instant_test_request.py +0 -1
  100. thousandeyes_sdk/instant_tests/models/voice_properties.py +0 -1
  101. thousandeyes_sdk/instant_tests/models/web_transaction_instant_test.py +37 -20
  102. thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_request.py +37 -20
  103. thousandeyes_sdk/instant_tests/models/web_transaction_properties.py +38 -21
  104. {thousandeyes_sdk_instant_tests-1.0.0.dist-info → thousandeyes_sdk_instant_tests-1.2.0.dist-info}/METADATA +6 -2
  105. thousandeyes_sdk_instant_tests-1.2.0.dist-info/RECORD +111 -0
  106. {thousandeyes_sdk_instant_tests-1.0.0.dist-info → thousandeyes_sdk_instant_tests-1.2.0.dist-info}/WHEEL +1 -1
  107. thousandeyes_sdk_instant_tests-1.0.0.dist-info/RECORD +0 -107
  108. {thousandeyes_sdk_instant_tests-1.0.0.dist-info → thousandeyes_sdk_instant_tests-1.2.0.dist-info}/LICENSE +0 -0
  109. {thousandeyes_sdk_instant_tests-1.0.0.dist-info → thousandeyes_sdk_instant_tests-1.2.0.dist-info}/NOTICE +0 -0
  110. {thousandeyes_sdk_instant_tests-1.0.0.dist-info → thousandeyes_sdk_instant_tests-1.2.0.dist-info}/top_level.txt +0 -0
@@ -7,7 +7,6 @@
7
7
 
8
8
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
9
9
 
10
- The version of the OpenAPI document: 7.0.8
11
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
11
 
13
12
  Do not edit the class manually.
@@ -33,6 +32,7 @@ from thousandeyes_sdk.instant_tests.api.web_transaction_api import WebTransactio
33
32
  # import models into sdk package
34
33
  from thousandeyes_sdk.instant_tests.models.agent import Agent
35
34
  from thousandeyes_sdk.instant_tests.models.agent_base import AgentBase
35
+ from thousandeyes_sdk.instant_tests.models.agent_interfaces import AgentInterfaces
36
36
  from thousandeyes_sdk.instant_tests.models.agent_to_agent_instant_test import AgentToAgentInstantTest
37
37
  from thousandeyes_sdk.instant_tests.models.agent_to_agent_instant_test_request import AgentToAgentInstantTestRequest
38
38
  from thousandeyes_sdk.instant_tests.models.agent_to_agent_properties import AgentToAgentProperties
@@ -69,15 +69,18 @@ from thousandeyes_sdk.instant_tests.models.expand import Expand
69
69
  from thousandeyes_sdk.instant_tests.models.ftp_server_instant_test import FtpServerInstantTest
70
70
  from thousandeyes_sdk.instant_tests.models.ftp_server_properties import FtpServerProperties
71
71
  from thousandeyes_sdk.instant_tests.models.ftp_server_request_type import FtpServerRequestType
72
+ from thousandeyes_sdk.instant_tests.models.http_server_base_properties import HttpServerBaseProperties
72
73
  from thousandeyes_sdk.instant_tests.models.http_server_instant_test import HttpServerInstantTest
73
74
  from thousandeyes_sdk.instant_tests.models.http_server_instant_test_request import HttpServerInstantTestRequest
74
75
  from thousandeyes_sdk.instant_tests.models.http_server_properties import HttpServerProperties
75
76
  from thousandeyes_sdk.instant_tests.models.instant_test import InstantTest
76
77
  from thousandeyes_sdk.instant_tests.models.instant_test_request import InstantTestRequest
77
78
  from thousandeyes_sdk.instant_tests.models.link import Link
79
+ from thousandeyes_sdk.instant_tests.models.o_auth import OAuth
78
80
  from thousandeyes_sdk.instant_tests.models.page_load_instant_test import PageLoadInstantTest
79
81
  from thousandeyes_sdk.instant_tests.models.page_load_instant_test_request import PageLoadInstantTestRequest
80
82
  from thousandeyes_sdk.instant_tests.models.page_load_properties import PageLoadProperties
83
+ from thousandeyes_sdk.instant_tests.models.request_method import RequestMethod
81
84
  from thousandeyes_sdk.instant_tests.models.server_instant_test_request import ServerInstantTestRequest
82
85
  from thousandeyes_sdk.instant_tests.models.shared_with_account import SharedWithAccount
83
86
  from thousandeyes_sdk.instant_tests.models.simple_agent import SimpleAgent
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -6,7 +6,6 @@
6
6
 
7
7
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
8
8
 
9
- The version of the OpenAPI document: 7.0.8
10
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
10
 
12
11
  Do not edit the class manually.
@@ -16,6 +15,7 @@
16
15
  # import models into model package
17
16
  from thousandeyes_sdk.instant_tests.models.agent import Agent
18
17
  from thousandeyes_sdk.instant_tests.models.agent_base import AgentBase
18
+ from thousandeyes_sdk.instant_tests.models.agent_interfaces import AgentInterfaces
19
19
  from thousandeyes_sdk.instant_tests.models.agent_to_agent_instant_test import AgentToAgentInstantTest
20
20
  from thousandeyes_sdk.instant_tests.models.agent_to_agent_instant_test_request import AgentToAgentInstantTestRequest
21
21
  from thousandeyes_sdk.instant_tests.models.agent_to_agent_properties import AgentToAgentProperties
@@ -52,15 +52,18 @@ from thousandeyes_sdk.instant_tests.models.expand import Expand
52
52
  from thousandeyes_sdk.instant_tests.models.ftp_server_instant_test import FtpServerInstantTest
53
53
  from thousandeyes_sdk.instant_tests.models.ftp_server_properties import FtpServerProperties
54
54
  from thousandeyes_sdk.instant_tests.models.ftp_server_request_type import FtpServerRequestType
55
+ from thousandeyes_sdk.instant_tests.models.http_server_base_properties import HttpServerBaseProperties
55
56
  from thousandeyes_sdk.instant_tests.models.http_server_instant_test import HttpServerInstantTest
56
57
  from thousandeyes_sdk.instant_tests.models.http_server_instant_test_request import HttpServerInstantTestRequest
57
58
  from thousandeyes_sdk.instant_tests.models.http_server_properties import HttpServerProperties
58
59
  from thousandeyes_sdk.instant_tests.models.instant_test import InstantTest
59
60
  from thousandeyes_sdk.instant_tests.models.instant_test_request import InstantTestRequest
60
61
  from thousandeyes_sdk.instant_tests.models.link import Link
62
+ from thousandeyes_sdk.instant_tests.models.o_auth import OAuth
61
63
  from thousandeyes_sdk.instant_tests.models.page_load_instant_test import PageLoadInstantTest
62
64
  from thousandeyes_sdk.instant_tests.models.page_load_instant_test_request import PageLoadInstantTestRequest
63
65
  from thousandeyes_sdk.instant_tests.models.page_load_properties import PageLoadProperties
66
+ from thousandeyes_sdk.instant_tests.models.request_method import RequestMethod
64
67
  from thousandeyes_sdk.instant_tests.models.server_instant_test_request import ServerInstantTestRequest
65
68
  from thousandeyes_sdk.instant_tests.models.shared_with_account import SharedWithAccount
66
69
  from thousandeyes_sdk.instant_tests.models.simple_agent import SimpleAgent
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -0,0 +1,89 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Instant Tests API
5
+
6
+ The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
+
8
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
9
+
10
+ Do not edit the class manually.
11
+ """ # noqa: E501
12
+
13
+
14
+ from __future__ import annotations
15
+ import pprint
16
+ import re # noqa: F401
17
+ import json
18
+
19
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
20
+ from typing import Any, ClassVar, Dict, List, Optional
21
+ from typing import Optional, Set
22
+ from typing_extensions import Self
23
+
24
+ class AgentInterfaces(BaseModel):
25
+ """
26
+ AgentInterfaces
27
+ """ # noqa: E501
28
+ ip_address: Optional[StrictStr] = Field(default=None, description="IP address of the agent interface.", alias="ipAddress")
29
+ agent_id: Optional[StrictStr] = Field(default=None, description="The agent ID of the enterprise agent for the test.", alias="agentId")
30
+ __properties: ClassVar[List[str]] = ["ipAddress", "agentId"]
31
+
32
+ model_config = ConfigDict(
33
+ populate_by_name=True,
34
+ validate_assignment=True,
35
+ protected_namespaces=(),
36
+ extra="allow",
37
+ )
38
+
39
+
40
+ def to_str(self) -> str:
41
+ """Returns the string representation of the model using alias"""
42
+ return pprint.pformat(self.model_dump(by_alias=True))
43
+
44
+ def to_json(self) -> str:
45
+ """Returns the JSON representation of the model using alias"""
46
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
47
+ return self.model_dump_json(by_alias=True, exclude_unset=True, exclude_none=True)
48
+
49
+ @classmethod
50
+ def from_json(cls, json_str: str) -> Optional[Self]:
51
+ """Create an instance of AgentInterfaces from a JSON string"""
52
+ return cls.from_dict(json.loads(json_str))
53
+
54
+ def to_dict(self) -> Dict[str, Any]:
55
+ """Return the dictionary representation of the model using alias.
56
+
57
+ This has the following differences from calling pydantic's
58
+ `self.model_dump(by_alias=True)`:
59
+
60
+ * `None` is only added to the output dict for nullable fields that
61
+ were set at model initialization. Other fields with value `None`
62
+ are ignored.
63
+ """
64
+ excluded_fields: Set[str] = set([
65
+ ])
66
+
67
+ _dict = self.model_dump(
68
+ by_alias=True,
69
+ exclude=excluded_fields,
70
+ exclude_none=True,
71
+ )
72
+ return _dict
73
+
74
+ @classmethod
75
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
76
+ """Create an instance of AgentInterfaces from a dict"""
77
+ if obj is None:
78
+ return None
79
+
80
+ if not isinstance(obj, dict):
81
+ return cls.model_validate(obj)
82
+
83
+ _obj = cls.model_validate({
84
+ "ipAddress": obj.get("ipAddress"),
85
+ "agentId": obj.get("agentId")
86
+ })
87
+ return _obj
88
+
89
+
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
6
  The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
7
 
8
- The version of the OpenAPI document: 7.0.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.