thousandeyes-sdk-instant-tests 1.3.0__py3-none-any.whl → 2.0.0rc1__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.
- thousandeyes_sdk/instant_tests/__init__.py +28 -18
- thousandeyes_sdk/instant_tests/api/__init__.py +13 -13
- thousandeyes_sdk/instant_tests/api/{agent_to_agent_api.py → agent_to_agent_instant_tests_api.py} +15 -15
- thousandeyes_sdk/instant_tests/api/{agent_to_server_api.py → agent_to_server_instant_tests_api.py} +15 -15
- thousandeyes_sdk/instant_tests/api/{api_api.py → api_instant_tests_api.py} +15 -15
- thousandeyes_sdk/instant_tests/api/{dns_server_api.py → dns_server_instant_tests_api.py} +15 -15
- thousandeyes_sdk/instant_tests/api/{dns_trace_api.py → dns_trace_instant_tests_api.py} +15 -15
- thousandeyes_sdk/instant_tests/api/{dns_security_api.py → dnssec_instant_tests_api.py} +21 -21
- thousandeyes_sdk/instant_tests/api/{ftp_server_api.py → ftp_server_instant_tests_api.py} +31 -31
- thousandeyes_sdk/instant_tests/api/{http_page_load_api.py → http_page_load_instant_tests_api.py} +15 -15
- thousandeyes_sdk/instant_tests/api/{http_server_api.py → http_server_instant_tests_api.py} +15 -15
- thousandeyes_sdk/instant_tests/api/{run_api.py → instant_tests_api.py} +2 -2
- thousandeyes_sdk/instant_tests/api/{sip_server_api.py → sip_server_instant_tests_api.py} +9 -9
- thousandeyes_sdk/instant_tests/api/{voice_api.py → voice_instant_tests_api.py} +15 -15
- thousandeyes_sdk/instant_tests/api/{web_transaction_api.py → web_transaction_instant_tests_api.py} +15 -15
- thousandeyes_sdk/instant_tests/models/__init__.py +15 -5
- thousandeyes_sdk/instant_tests/models/agent_base.py +1 -1
- thousandeyes_sdk/instant_tests/models/agent_interfaces.py +1 -1
- thousandeyes_sdk/instant_tests/models/{agent.py → agent_response.py} +5 -5
- thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test.py +3 -15
- thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_request.py +1 -1
- thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_response.py +195 -0
- thousandeyes_sdk/instant_tests/models/agent_to_agent_properties.py +1 -1
- thousandeyes_sdk/instant_tests/models/agent_to_agent_test_protocol.py +6 -1
- thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test.py +3 -15
- thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_request.py +1 -1
- thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_response.py +200 -0
- thousandeyes_sdk/instant_tests/models/agent_to_server_properties.py +1 -1
- thousandeyes_sdk/instant_tests/models/api_instant_test.py +8 -14
- thousandeyes_sdk/instant_tests/models/api_instant_test_request.py +11 -5
- thousandeyes_sdk/instant_tests/models/api_instant_test_response.py +217 -0
- thousandeyes_sdk/instant_tests/models/api_predefined_variable.py +1 -1
- thousandeyes_sdk/instant_tests/models/api_properties.py +8 -2
- thousandeyes_sdk/instant_tests/models/api_request.py +1 -1
- thousandeyes_sdk/instant_tests/models/api_request_assertion.py +1 -1
- thousandeyes_sdk/instant_tests/models/api_request_assertion_name.py +6 -1
- thousandeyes_sdk/instant_tests/models/api_request_assertion_operator.py +6 -1
- thousandeyes_sdk/instant_tests/models/api_request_auth_type.py +6 -1
- thousandeyes_sdk/instant_tests/models/api_request_header.py +1 -1
- thousandeyes_sdk/instant_tests/models/api_request_method.py +6 -1
- thousandeyes_sdk/instant_tests/models/api_request_variable.py +1 -1
- thousandeyes_sdk/instant_tests/models/cloud_enterprise_agent_type.py +6 -1
- thousandeyes_sdk/instant_tests/models/dns_query_class.py +6 -1
- thousandeyes_sdk/instant_tests/models/dns_sec_instant_test.py +3 -15
- thousandeyes_sdk/instant_tests/models/dns_sec_instant_test_request.py +1 -1
- thousandeyes_sdk/instant_tests/models/dns_sec_instant_test_response.py +167 -0
- thousandeyes_sdk/instant_tests/models/dns_sec_properties.py +1 -1
- thousandeyes_sdk/instant_tests/models/dns_server_instant_test.py +3 -15
- thousandeyes_sdk/instant_tests/models/dns_server_instant_test_request.py +1 -1
- thousandeyes_sdk/instant_tests/models/{sip_server_instant_test_request1.py → dns_server_instant_test_response.py} +36 -27
- thousandeyes_sdk/instant_tests/models/dns_server_properties.py +1 -1
- thousandeyes_sdk/instant_tests/models/dns_servers_request.py +1 -1
- thousandeyes_sdk/instant_tests/models/dns_trace_instant_test.py +3 -15
- thousandeyes_sdk/instant_tests/models/dns_trace_instant_test_request.py +1 -1
- thousandeyes_sdk/instant_tests/models/dns_trace_instant_test_response.py +170 -0
- thousandeyes_sdk/instant_tests/models/dns_trace_properties.py +1 -1
- thousandeyes_sdk/instant_tests/models/error.py +1 -1
- thousandeyes_sdk/instant_tests/models/expand_instant_test_options.py +42 -0
- thousandeyes_sdk/instant_tests/models/ftp_server_instant_test.py +3 -15
- thousandeyes_sdk/instant_tests/models/{server_instant_test_request.py → ftp_server_instant_test_request.py} +5 -5
- thousandeyes_sdk/instant_tests/models/ftp_server_instant_test_response.py +204 -0
- thousandeyes_sdk/instant_tests/models/ftp_server_properties.py +1 -1
- thousandeyes_sdk/instant_tests/models/ftp_server_request_type.py +6 -1
- thousandeyes_sdk/instant_tests/models/http_server_base_properties.py +3 -3
- thousandeyes_sdk/instant_tests/models/http_server_instant_test.py +5 -17
- thousandeyes_sdk/instant_tests/models/http_server_instant_test_request.py +3 -3
- thousandeyes_sdk/instant_tests/models/http_server_instant_test_response.py +257 -0
- thousandeyes_sdk/instant_tests/models/http_server_properties.py +3 -3
- thousandeyes_sdk/instant_tests/models/instant_test.py +1 -1
- thousandeyes_sdk/instant_tests/models/instant_test_request.py +1 -1
- thousandeyes_sdk/instant_tests/models/link.py +1 -1
- thousandeyes_sdk/instant_tests/models/o_auth.py +1 -1
- thousandeyes_sdk/instant_tests/models/page_load_instant_test.py +5 -17
- thousandeyes_sdk/instant_tests/models/page_load_instant_test_request.py +3 -3
- thousandeyes_sdk/instant_tests/models/page_load_instant_test_response.py +269 -0
- thousandeyes_sdk/instant_tests/models/page_load_properties.py +3 -3
- thousandeyes_sdk/instant_tests/models/request_method.py +6 -1
- thousandeyes_sdk/instant_tests/models/shared_with_account.py +1 -1
- thousandeyes_sdk/instant_tests/models/simple_agent.py +1 -1
- thousandeyes_sdk/instant_tests/models/sip_server_instant_test.py +3 -15
- thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request.py +1 -1
- thousandeyes_sdk/instant_tests/models/sip_server_instant_test_response.py +6 -8
- thousandeyes_sdk/instant_tests/models/sip_server_properties.py +1 -1
- thousandeyes_sdk/instant_tests/models/sip_test_protocol.py +6 -1
- thousandeyes_sdk/instant_tests/models/test_agent.py +1 -1
- thousandeyes_sdk/instant_tests/models/test_auth_type.py +6 -1
- thousandeyes_sdk/instant_tests/models/test_custom_headers.py +1 -1
- thousandeyes_sdk/instant_tests/models/test_direction.py +6 -1
- thousandeyes_sdk/instant_tests/models/test_dns_server.py +1 -1
- thousandeyes_sdk/instant_tests/models/test_dns_transport_protocol.py +6 -1
- thousandeyes_sdk/instant_tests/models/test_dscp_id.py +6 -1
- thousandeyes_sdk/instant_tests/models/test_ipv6_policy.py +6 -1
- thousandeyes_sdk/instant_tests/models/test_label.py +1 -1
- thousandeyes_sdk/instant_tests/models/test_links.py +1 -1
- thousandeyes_sdk/instant_tests/models/test_page_loading_strategy.py +6 -1
- thousandeyes_sdk/instant_tests/models/test_path_trace_mode.py +6 -1
- thousandeyes_sdk/instant_tests/models/test_probe_mode.py +6 -1
- thousandeyes_sdk/instant_tests/models/test_protocol.py +6 -1
- thousandeyes_sdk/instant_tests/models/test_self_link.py +1 -1
- thousandeyes_sdk/instant_tests/models/test_sip_credentials.py +1 -1
- thousandeyes_sdk/instant_tests/models/test_ssl_version_id.py +6 -1
- thousandeyes_sdk/instant_tests/models/test_type.py +6 -1
- thousandeyes_sdk/instant_tests/models/unauthorized_error.py +1 -1
- thousandeyes_sdk/instant_tests/models/unexpanded_instant_test.py +1 -1
- thousandeyes_sdk/instant_tests/models/validation_error.py +1 -1
- thousandeyes_sdk/instant_tests/models/validation_error_item.py +1 -1
- thousandeyes_sdk/instant_tests/models/voice_instant_test.py +3 -15
- thousandeyes_sdk/instant_tests/models/voice_instant_test_request.py +1 -1
- thousandeyes_sdk/instant_tests/models/voice_instant_test_response.py +186 -0
- thousandeyes_sdk/instant_tests/models/voice_properties.py +1 -1
- thousandeyes_sdk/instant_tests/models/web_transaction_instant_test.py +4 -16
- thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_request.py +7 -7
- thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_response.py +273 -0
- thousandeyes_sdk/instant_tests/models/web_transaction_properties.py +3 -3
- {thousandeyes_sdk_instant_tests-1.3.0.dist-info → thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info}/METADATA +36 -26
- thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info/RECORD +121 -0
- {thousandeyes_sdk_instant_tests-1.3.0.dist-info → thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info}/WHEEL +1 -1
- thousandeyes_sdk/instant_tests/models/expand.py +0 -37
- thousandeyes_sdk_instant_tests-1.3.0.dist-info/RECORD +0 -111
- {thousandeyes_sdk_instant_tests-1.3.0.dist-info → thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info}/LICENSE +0 -0
- {thousandeyes_sdk_instant_tests-1.3.0.dist-info → thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info}/NOTICE +0 -0
- {thousandeyes_sdk_instant_tests-1.3.0.dist-info → thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info}/top_level.txt +0 -0
@@ -5,7 +5,7 @@
|
|
5
5
|
"""
|
6
6
|
Instant Tests API
|
7
7
|
|
8
|
-
The Instant Tests API
|
8
|
+
The Instant Tests API operations 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
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -14,34 +14,37 @@
|
|
14
14
|
|
15
15
|
|
16
16
|
# import apis into sdk package
|
17
|
-
from thousandeyes_sdk.instant_tests.api.
|
18
|
-
from thousandeyes_sdk.instant_tests.api.
|
19
|
-
from thousandeyes_sdk.instant_tests.api.
|
20
|
-
from thousandeyes_sdk.instant_tests.api.
|
21
|
-
from thousandeyes_sdk.instant_tests.api.
|
22
|
-
from thousandeyes_sdk.instant_tests.api.
|
23
|
-
from thousandeyes_sdk.instant_tests.api.
|
24
|
-
from thousandeyes_sdk.instant_tests.api.
|
25
|
-
from thousandeyes_sdk.instant_tests.api.
|
26
|
-
from thousandeyes_sdk.instant_tests.api.
|
27
|
-
from thousandeyes_sdk.instant_tests.api.
|
28
|
-
from thousandeyes_sdk.instant_tests.api.
|
29
|
-
from thousandeyes_sdk.instant_tests.api.
|
17
|
+
from thousandeyes_sdk.instant_tests.api.api_instant_tests_api import APIInstantTestsApi
|
18
|
+
from thousandeyes_sdk.instant_tests.api.agent_to_agent_instant_tests_api import AgentToAgentInstantTestsApi
|
19
|
+
from thousandeyes_sdk.instant_tests.api.agent_to_server_instant_tests_api import AgentToServerInstantTestsApi
|
20
|
+
from thousandeyes_sdk.instant_tests.api.dnssec_instant_tests_api import DNSSECInstantTestsApi
|
21
|
+
from thousandeyes_sdk.instant_tests.api.dns_server_instant_tests_api import DNSServerInstantTestsApi
|
22
|
+
from thousandeyes_sdk.instant_tests.api.dns_trace_instant_tests_api import DNSTraceInstantTestsApi
|
23
|
+
from thousandeyes_sdk.instant_tests.api.ftp_server_instant_tests_api import FTPServerInstantTestsApi
|
24
|
+
from thousandeyes_sdk.instant_tests.api.http_page_load_instant_tests_api import HTTPPageLoadInstantTestsApi
|
25
|
+
from thousandeyes_sdk.instant_tests.api.http_server_instant_tests_api import HTTPServerInstantTestsApi
|
26
|
+
from thousandeyes_sdk.instant_tests.api.instant_tests_api import InstantTestsApi
|
27
|
+
from thousandeyes_sdk.instant_tests.api.sip_server_instant_tests_api import SIPServerInstantTestsApi
|
28
|
+
from thousandeyes_sdk.instant_tests.api.voice_instant_tests_api import VoiceInstantTestsApi
|
29
|
+
from thousandeyes_sdk.instant_tests.api.web_transaction_instant_tests_api import WebTransactionInstantTestsApi
|
30
30
|
|
31
31
|
|
32
32
|
# import models into sdk package
|
33
|
-
from thousandeyes_sdk.instant_tests.models.agent import Agent
|
34
33
|
from thousandeyes_sdk.instant_tests.models.agent_base import AgentBase
|
35
34
|
from thousandeyes_sdk.instant_tests.models.agent_interfaces import AgentInterfaces
|
35
|
+
from thousandeyes_sdk.instant_tests.models.agent_response import AgentResponse
|
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
|
+
from thousandeyes_sdk.instant_tests.models.agent_to_agent_instant_test_response import AgentToAgentInstantTestResponse
|
38
39
|
from thousandeyes_sdk.instant_tests.models.agent_to_agent_properties import AgentToAgentProperties
|
39
40
|
from thousandeyes_sdk.instant_tests.models.agent_to_agent_test_protocol import AgentToAgentTestProtocol
|
40
41
|
from thousandeyes_sdk.instant_tests.models.agent_to_server_instant_test import AgentToServerInstantTest
|
41
42
|
from thousandeyes_sdk.instant_tests.models.agent_to_server_instant_test_request import AgentToServerInstantTestRequest
|
43
|
+
from thousandeyes_sdk.instant_tests.models.agent_to_server_instant_test_response import AgentToServerInstantTestResponse
|
42
44
|
from thousandeyes_sdk.instant_tests.models.agent_to_server_properties import AgentToServerProperties
|
43
45
|
from thousandeyes_sdk.instant_tests.models.api_instant_test import ApiInstantTest
|
44
46
|
from thousandeyes_sdk.instant_tests.models.api_instant_test_request import ApiInstantTestRequest
|
47
|
+
from thousandeyes_sdk.instant_tests.models.api_instant_test_response import ApiInstantTestResponse
|
45
48
|
from thousandeyes_sdk.instant_tests.models.api_predefined_variable import ApiPredefinedVariable
|
46
49
|
from thousandeyes_sdk.instant_tests.models.api_properties import ApiProperties
|
47
50
|
from thousandeyes_sdk.instant_tests.models.api_request import ApiRequest
|
@@ -56,22 +59,28 @@ from thousandeyes_sdk.instant_tests.models.cloud_enterprise_agent_type import Cl
|
|
56
59
|
from thousandeyes_sdk.instant_tests.models.dns_query_class import DnsQueryClass
|
57
60
|
from thousandeyes_sdk.instant_tests.models.dns_sec_instant_test import DnsSecInstantTest
|
58
61
|
from thousandeyes_sdk.instant_tests.models.dns_sec_instant_test_request import DnsSecInstantTestRequest
|
62
|
+
from thousandeyes_sdk.instant_tests.models.dns_sec_instant_test_response import DnsSecInstantTestResponse
|
59
63
|
from thousandeyes_sdk.instant_tests.models.dns_sec_properties import DnsSecProperties
|
60
64
|
from thousandeyes_sdk.instant_tests.models.dns_server_instant_test import DnsServerInstantTest
|
61
65
|
from thousandeyes_sdk.instant_tests.models.dns_server_instant_test_request import DnsServerInstantTestRequest
|
66
|
+
from thousandeyes_sdk.instant_tests.models.dns_server_instant_test_response import DnsServerInstantTestResponse
|
62
67
|
from thousandeyes_sdk.instant_tests.models.dns_server_properties import DnsServerProperties
|
63
68
|
from thousandeyes_sdk.instant_tests.models.dns_servers_request import DnsServersRequest
|
64
69
|
from thousandeyes_sdk.instant_tests.models.dns_trace_instant_test import DnsTraceInstantTest
|
65
70
|
from thousandeyes_sdk.instant_tests.models.dns_trace_instant_test_request import DnsTraceInstantTestRequest
|
71
|
+
from thousandeyes_sdk.instant_tests.models.dns_trace_instant_test_response import DnsTraceInstantTestResponse
|
66
72
|
from thousandeyes_sdk.instant_tests.models.dns_trace_properties import DnsTraceProperties
|
67
73
|
from thousandeyes_sdk.instant_tests.models.error import Error
|
68
|
-
from thousandeyes_sdk.instant_tests.models.
|
74
|
+
from thousandeyes_sdk.instant_tests.models.expand_instant_test_options import ExpandInstantTestOptions
|
69
75
|
from thousandeyes_sdk.instant_tests.models.ftp_server_instant_test import FtpServerInstantTest
|
76
|
+
from thousandeyes_sdk.instant_tests.models.ftp_server_instant_test_request import FtpServerInstantTestRequest
|
77
|
+
from thousandeyes_sdk.instant_tests.models.ftp_server_instant_test_response import FtpServerInstantTestResponse
|
70
78
|
from thousandeyes_sdk.instant_tests.models.ftp_server_properties import FtpServerProperties
|
71
79
|
from thousandeyes_sdk.instant_tests.models.ftp_server_request_type import FtpServerRequestType
|
72
80
|
from thousandeyes_sdk.instant_tests.models.http_server_base_properties import HttpServerBaseProperties
|
73
81
|
from thousandeyes_sdk.instant_tests.models.http_server_instant_test import HttpServerInstantTest
|
74
82
|
from thousandeyes_sdk.instant_tests.models.http_server_instant_test_request import HttpServerInstantTestRequest
|
83
|
+
from thousandeyes_sdk.instant_tests.models.http_server_instant_test_response import HttpServerInstantTestResponse
|
75
84
|
from thousandeyes_sdk.instant_tests.models.http_server_properties import HttpServerProperties
|
76
85
|
from thousandeyes_sdk.instant_tests.models.instant_test import InstantTest
|
77
86
|
from thousandeyes_sdk.instant_tests.models.instant_test_request import InstantTestRequest
|
@@ -79,14 +88,13 @@ from thousandeyes_sdk.instant_tests.models.link import Link
|
|
79
88
|
from thousandeyes_sdk.instant_tests.models.o_auth import OAuth
|
80
89
|
from thousandeyes_sdk.instant_tests.models.page_load_instant_test import PageLoadInstantTest
|
81
90
|
from thousandeyes_sdk.instant_tests.models.page_load_instant_test_request import PageLoadInstantTestRequest
|
91
|
+
from thousandeyes_sdk.instant_tests.models.page_load_instant_test_response import PageLoadInstantTestResponse
|
82
92
|
from thousandeyes_sdk.instant_tests.models.page_load_properties import PageLoadProperties
|
83
93
|
from thousandeyes_sdk.instant_tests.models.request_method import RequestMethod
|
84
|
-
from thousandeyes_sdk.instant_tests.models.server_instant_test_request import ServerInstantTestRequest
|
85
94
|
from thousandeyes_sdk.instant_tests.models.shared_with_account import SharedWithAccount
|
86
95
|
from thousandeyes_sdk.instant_tests.models.simple_agent import SimpleAgent
|
87
96
|
from thousandeyes_sdk.instant_tests.models.sip_server_instant_test import SipServerInstantTest
|
88
97
|
from thousandeyes_sdk.instant_tests.models.sip_server_instant_test_request import SipServerInstantTestRequest
|
89
|
-
from thousandeyes_sdk.instant_tests.models.sip_server_instant_test_request1 import SipServerInstantTestRequest1
|
90
98
|
from thousandeyes_sdk.instant_tests.models.sip_server_instant_test_response import SipServerInstantTestResponse
|
91
99
|
from thousandeyes_sdk.instant_tests.models.sip_server_properties import SipServerProperties
|
92
100
|
from thousandeyes_sdk.instant_tests.models.sip_test_protocol import SipTestProtocol
|
@@ -114,7 +122,9 @@ from thousandeyes_sdk.instant_tests.models.validation_error import ValidationErr
|
|
114
122
|
from thousandeyes_sdk.instant_tests.models.validation_error_item import ValidationErrorItem
|
115
123
|
from thousandeyes_sdk.instant_tests.models.voice_instant_test import VoiceInstantTest
|
116
124
|
from thousandeyes_sdk.instant_tests.models.voice_instant_test_request import VoiceInstantTestRequest
|
125
|
+
from thousandeyes_sdk.instant_tests.models.voice_instant_test_response import VoiceInstantTestResponse
|
117
126
|
from thousandeyes_sdk.instant_tests.models.voice_properties import VoiceProperties
|
118
127
|
from thousandeyes_sdk.instant_tests.models.web_transaction_instant_test import WebTransactionInstantTest
|
119
128
|
from thousandeyes_sdk.instant_tests.models.web_transaction_instant_test_request import WebTransactionInstantTestRequest
|
129
|
+
from thousandeyes_sdk.instant_tests.models.web_transaction_instant_test_response import WebTransactionInstantTestResponse
|
120
130
|
from thousandeyes_sdk.instant_tests.models.web_transaction_properties import WebTransactionProperties
|
@@ -1,17 +1,17 @@
|
|
1
1
|
# flake8: noqa
|
2
2
|
|
3
3
|
# import apis into api package
|
4
|
-
from thousandeyes_sdk.instant_tests.api.
|
5
|
-
from thousandeyes_sdk.instant_tests.api.
|
6
|
-
from thousandeyes_sdk.instant_tests.api.
|
7
|
-
from thousandeyes_sdk.instant_tests.api.
|
8
|
-
from thousandeyes_sdk.instant_tests.api.
|
9
|
-
from thousandeyes_sdk.instant_tests.api.
|
10
|
-
from thousandeyes_sdk.instant_tests.api.
|
11
|
-
from thousandeyes_sdk.instant_tests.api.
|
12
|
-
from thousandeyes_sdk.instant_tests.api.
|
13
|
-
from thousandeyes_sdk.instant_tests.api.
|
14
|
-
from thousandeyes_sdk.instant_tests.api.
|
15
|
-
from thousandeyes_sdk.instant_tests.api.
|
16
|
-
from thousandeyes_sdk.instant_tests.api.
|
4
|
+
from thousandeyes_sdk.instant_tests.api.api_instant_tests_api import APIInstantTestsApi
|
5
|
+
from thousandeyes_sdk.instant_tests.api.agent_to_agent_instant_tests_api import AgentToAgentInstantTestsApi
|
6
|
+
from thousandeyes_sdk.instant_tests.api.agent_to_server_instant_tests_api import AgentToServerInstantTestsApi
|
7
|
+
from thousandeyes_sdk.instant_tests.api.dnssec_instant_tests_api import DNSSECInstantTestsApi
|
8
|
+
from thousandeyes_sdk.instant_tests.api.dns_server_instant_tests_api import DNSServerInstantTestsApi
|
9
|
+
from thousandeyes_sdk.instant_tests.api.dns_trace_instant_tests_api import DNSTraceInstantTestsApi
|
10
|
+
from thousandeyes_sdk.instant_tests.api.ftp_server_instant_tests_api import FTPServerInstantTestsApi
|
11
|
+
from thousandeyes_sdk.instant_tests.api.http_page_load_instant_tests_api import HTTPPageLoadInstantTestsApi
|
12
|
+
from thousandeyes_sdk.instant_tests.api.http_server_instant_tests_api import HTTPServerInstantTestsApi
|
13
|
+
from thousandeyes_sdk.instant_tests.api.instant_tests_api import InstantTestsApi
|
14
|
+
from thousandeyes_sdk.instant_tests.api.sip_server_instant_tests_api import SIPServerInstantTestsApi
|
15
|
+
from thousandeyes_sdk.instant_tests.api.voice_instant_tests_api import VoiceInstantTestsApi
|
16
|
+
from thousandeyes_sdk.instant_tests.api.web_transaction_instant_tests_api import WebTransactionInstantTestsApi
|
17
17
|
|
thousandeyes_sdk/instant_tests/api/{agent_to_agent_api.py → agent_to_agent_instant_tests_api.py}
RENAMED
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Instant Tests API
|
5
5
|
|
6
|
-
The Instant Tests API
|
6
|
+
The Instant Tests API operations 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
8
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
9
9
|
|
@@ -21,16 +21,16 @@ import thousandeyes_sdk.instant_tests.models
|
|
21
21
|
from pydantic import Field, StrictStr
|
22
22
|
from typing import List, Optional
|
23
23
|
from typing_extensions import Annotated
|
24
|
-
from thousandeyes_sdk.instant_tests.models.agent_to_agent_instant_test import AgentToAgentInstantTest
|
25
24
|
from thousandeyes_sdk.instant_tests.models.agent_to_agent_instant_test_request import AgentToAgentInstantTestRequest
|
26
|
-
from thousandeyes_sdk.instant_tests.models.
|
25
|
+
from thousandeyes_sdk.instant_tests.models.agent_to_agent_instant_test_response import AgentToAgentInstantTestResponse
|
26
|
+
from thousandeyes_sdk.instant_tests.models.expand_instant_test_options import ExpandInstantTestOptions
|
27
27
|
|
28
28
|
from thousandeyes_sdk.core.api_client import ApiClient, RequestSerialized
|
29
29
|
from thousandeyes_sdk.core.api_response import ApiResponse
|
30
30
|
from thousandeyes_sdk.core.rest import RESTResponseType
|
31
31
|
|
32
32
|
|
33
|
-
class
|
33
|
+
class AgentToAgentInstantTestsApi:
|
34
34
|
"""NOTE: This class is auto generated by OpenAPI Generator
|
35
35
|
Ref: https://openapi-generator.tech
|
36
36
|
|
@@ -49,7 +49,7 @@ class AgentToAgentApi:
|
|
49
49
|
self,
|
50
50
|
agent_to_agent_instant_test_request: AgentToAgentInstantTestRequest,
|
51
51
|
aid: Annotated[Optional[StrictStr], Field(description="A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.")] = None,
|
52
|
-
expand: Annotated[Optional[List[
|
52
|
+
expand: Annotated[Optional[List[ExpandInstantTestOptions]], Field(description="(Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.")] = None,
|
53
53
|
_request_timeout: Union[
|
54
54
|
None,
|
55
55
|
Annotated[StrictFloat, Field(gt=0)],
|
@@ -62,7 +62,7 @@ class AgentToAgentApi:
|
|
62
62
|
_content_type: Optional[StrictStr] = None,
|
63
63
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
64
64
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
65
|
-
) ->
|
65
|
+
) -> AgentToAgentInstantTestResponse:
|
66
66
|
"""Create agent-to-agent instant test
|
67
67
|
|
68
68
|
Creates and runs a new agent-to-agent instant test.
|
@@ -72,7 +72,7 @@ class AgentToAgentApi:
|
|
72
72
|
:param aid: A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.
|
73
73
|
:type aid: str
|
74
74
|
:param expand: (Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.
|
75
|
-
:type expand: List[
|
75
|
+
:type expand: List[ExpandInstantTestOptions]
|
76
76
|
:param _request_timeout: timeout setting for this request. If one
|
77
77
|
number provided, it will be total request
|
78
78
|
timeout. It can also be a pair (tuple) of
|
@@ -106,7 +106,7 @@ class AgentToAgentApi:
|
|
106
106
|
)
|
107
107
|
|
108
108
|
_response_types_map: Dict[str, Optional[str]] = {
|
109
|
-
'201': "
|
109
|
+
'201': "AgentToAgentInstantTestResponse",
|
110
110
|
'400': "ValidationError",
|
111
111
|
'401': "UnauthorizedError",
|
112
112
|
'403': "Error",
|
@@ -132,7 +132,7 @@ class AgentToAgentApi:
|
|
132
132
|
self,
|
133
133
|
agent_to_agent_instant_test_request: AgentToAgentInstantTestRequest,
|
134
134
|
aid: Annotated[Optional[StrictStr], Field(description="A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.")] = None,
|
135
|
-
expand: Annotated[Optional[List[
|
135
|
+
expand: Annotated[Optional[List[ExpandInstantTestOptions]], Field(description="(Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.")] = None,
|
136
136
|
_request_timeout: Union[
|
137
137
|
None,
|
138
138
|
Annotated[StrictFloat, Field(gt=0)],
|
@@ -145,7 +145,7 @@ class AgentToAgentApi:
|
|
145
145
|
_content_type: Optional[StrictStr] = None,
|
146
146
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
147
147
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
148
|
-
) -> ApiResponse[
|
148
|
+
) -> ApiResponse[AgentToAgentInstantTestResponse]:
|
149
149
|
"""Create agent-to-agent instant test
|
150
150
|
|
151
151
|
Creates and runs a new agent-to-agent instant test.
|
@@ -155,7 +155,7 @@ class AgentToAgentApi:
|
|
155
155
|
:param aid: A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.
|
156
156
|
:type aid: str
|
157
157
|
:param expand: (Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.
|
158
|
-
:type expand: List[
|
158
|
+
:type expand: List[ExpandInstantTestOptions]
|
159
159
|
:param _request_timeout: timeout setting for this request. If one
|
160
160
|
number provided, it will be total request
|
161
161
|
timeout. It can also be a pair (tuple) of
|
@@ -189,7 +189,7 @@ class AgentToAgentApi:
|
|
189
189
|
)
|
190
190
|
|
191
191
|
_response_types_map: Dict[str, Optional[str]] = {
|
192
|
-
'201': "
|
192
|
+
'201': "AgentToAgentInstantTestResponse",
|
193
193
|
'400': "ValidationError",
|
194
194
|
'401': "UnauthorizedError",
|
195
195
|
'403': "Error",
|
@@ -215,7 +215,7 @@ class AgentToAgentApi:
|
|
215
215
|
self,
|
216
216
|
agent_to_agent_instant_test_request: AgentToAgentInstantTestRequest,
|
217
217
|
aid: Annotated[Optional[StrictStr], Field(description="A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.")] = None,
|
218
|
-
expand: Annotated[Optional[List[
|
218
|
+
expand: Annotated[Optional[List[ExpandInstantTestOptions]], Field(description="(Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.")] = None,
|
219
219
|
_request_timeout: Union[
|
220
220
|
None,
|
221
221
|
Annotated[StrictFloat, Field(gt=0)],
|
@@ -238,7 +238,7 @@ class AgentToAgentApi:
|
|
238
238
|
:param aid: A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.
|
239
239
|
:type aid: str
|
240
240
|
:param expand: (Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.
|
241
|
-
:type expand: List[
|
241
|
+
:type expand: List[ExpandInstantTestOptions]
|
242
242
|
:param _request_timeout: timeout setting for this request. If one
|
243
243
|
number provided, it will be total request
|
244
244
|
timeout. It can also be a pair (tuple) of
|
@@ -272,7 +272,7 @@ class AgentToAgentApi:
|
|
272
272
|
)
|
273
273
|
|
274
274
|
_response_types_map: Dict[str, Optional[str]] = {
|
275
|
-
'201': "
|
275
|
+
'201': "AgentToAgentInstantTestResponse",
|
276
276
|
'400': "ValidationError",
|
277
277
|
'401': "UnauthorizedError",
|
278
278
|
'403': "Error",
|
thousandeyes_sdk/instant_tests/api/{agent_to_server_api.py → agent_to_server_instant_tests_api.py}
RENAMED
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Instant Tests API
|
5
5
|
|
6
|
-
The Instant Tests API
|
6
|
+
The Instant Tests API operations 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
8
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
9
9
|
|
@@ -21,16 +21,16 @@ import thousandeyes_sdk.instant_tests.models
|
|
21
21
|
from pydantic import Field, StrictStr
|
22
22
|
from typing import List, Optional
|
23
23
|
from typing_extensions import Annotated
|
24
|
-
from thousandeyes_sdk.instant_tests.models.agent_to_server_instant_test import AgentToServerInstantTest
|
25
24
|
from thousandeyes_sdk.instant_tests.models.agent_to_server_instant_test_request import AgentToServerInstantTestRequest
|
26
|
-
from thousandeyes_sdk.instant_tests.models.
|
25
|
+
from thousandeyes_sdk.instant_tests.models.agent_to_server_instant_test_response import AgentToServerInstantTestResponse
|
26
|
+
from thousandeyes_sdk.instant_tests.models.expand_instant_test_options import ExpandInstantTestOptions
|
27
27
|
|
28
28
|
from thousandeyes_sdk.core.api_client import ApiClient, RequestSerialized
|
29
29
|
from thousandeyes_sdk.core.api_response import ApiResponse
|
30
30
|
from thousandeyes_sdk.core.rest import RESTResponseType
|
31
31
|
|
32
32
|
|
33
|
-
class
|
33
|
+
class AgentToServerInstantTestsApi:
|
34
34
|
"""NOTE: This class is auto generated by OpenAPI Generator
|
35
35
|
Ref: https://openapi-generator.tech
|
36
36
|
|
@@ -49,7 +49,7 @@ class AgentToServerApi:
|
|
49
49
|
self,
|
50
50
|
agent_to_server_instant_test_request: AgentToServerInstantTestRequest,
|
51
51
|
aid: Annotated[Optional[StrictStr], Field(description="A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.")] = None,
|
52
|
-
expand: Annotated[Optional[List[
|
52
|
+
expand: Annotated[Optional[List[ExpandInstantTestOptions]], Field(description="(Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.")] = None,
|
53
53
|
_request_timeout: Union[
|
54
54
|
None,
|
55
55
|
Annotated[StrictFloat, Field(gt=0)],
|
@@ -62,7 +62,7 @@ class AgentToServerApi:
|
|
62
62
|
_content_type: Optional[StrictStr] = None,
|
63
63
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
64
64
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
65
|
-
) ->
|
65
|
+
) -> AgentToServerInstantTestResponse:
|
66
66
|
"""Create agent-to-server instant test
|
67
67
|
|
68
68
|
Creates and runs a new agent-to-server instant test.
|
@@ -72,7 +72,7 @@ class AgentToServerApi:
|
|
72
72
|
:param aid: A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.
|
73
73
|
:type aid: str
|
74
74
|
:param expand: (Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.
|
75
|
-
:type expand: List[
|
75
|
+
:type expand: List[ExpandInstantTestOptions]
|
76
76
|
:param _request_timeout: timeout setting for this request. If one
|
77
77
|
number provided, it will be total request
|
78
78
|
timeout. It can also be a pair (tuple) of
|
@@ -106,7 +106,7 @@ class AgentToServerApi:
|
|
106
106
|
)
|
107
107
|
|
108
108
|
_response_types_map: Dict[str, Optional[str]] = {
|
109
|
-
'201': "
|
109
|
+
'201': "AgentToServerInstantTestResponse",
|
110
110
|
'400': "ValidationError",
|
111
111
|
'401': "UnauthorizedError",
|
112
112
|
'403': "Error",
|
@@ -132,7 +132,7 @@ class AgentToServerApi:
|
|
132
132
|
self,
|
133
133
|
agent_to_server_instant_test_request: AgentToServerInstantTestRequest,
|
134
134
|
aid: Annotated[Optional[StrictStr], Field(description="A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.")] = None,
|
135
|
-
expand: Annotated[Optional[List[
|
135
|
+
expand: Annotated[Optional[List[ExpandInstantTestOptions]], Field(description="(Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.")] = None,
|
136
136
|
_request_timeout: Union[
|
137
137
|
None,
|
138
138
|
Annotated[StrictFloat, Field(gt=0)],
|
@@ -145,7 +145,7 @@ class AgentToServerApi:
|
|
145
145
|
_content_type: Optional[StrictStr] = None,
|
146
146
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
147
147
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
148
|
-
) -> ApiResponse[
|
148
|
+
) -> ApiResponse[AgentToServerInstantTestResponse]:
|
149
149
|
"""Create agent-to-server instant test
|
150
150
|
|
151
151
|
Creates and runs a new agent-to-server instant test.
|
@@ -155,7 +155,7 @@ class AgentToServerApi:
|
|
155
155
|
:param aid: A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.
|
156
156
|
:type aid: str
|
157
157
|
:param expand: (Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.
|
158
|
-
:type expand: List[
|
158
|
+
:type expand: List[ExpandInstantTestOptions]
|
159
159
|
:param _request_timeout: timeout setting for this request. If one
|
160
160
|
number provided, it will be total request
|
161
161
|
timeout. It can also be a pair (tuple) of
|
@@ -189,7 +189,7 @@ class AgentToServerApi:
|
|
189
189
|
)
|
190
190
|
|
191
191
|
_response_types_map: Dict[str, Optional[str]] = {
|
192
|
-
'201': "
|
192
|
+
'201': "AgentToServerInstantTestResponse",
|
193
193
|
'400': "ValidationError",
|
194
194
|
'401': "UnauthorizedError",
|
195
195
|
'403': "Error",
|
@@ -215,7 +215,7 @@ class AgentToServerApi:
|
|
215
215
|
self,
|
216
216
|
agent_to_server_instant_test_request: AgentToServerInstantTestRequest,
|
217
217
|
aid: Annotated[Optional[StrictStr], Field(description="A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.")] = None,
|
218
|
-
expand: Annotated[Optional[List[
|
218
|
+
expand: Annotated[Optional[List[ExpandInstantTestOptions]], Field(description="(Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.")] = None,
|
219
219
|
_request_timeout: Union[
|
220
220
|
None,
|
221
221
|
Annotated[StrictFloat, Field(gt=0)],
|
@@ -238,7 +238,7 @@ class AgentToServerApi:
|
|
238
238
|
:param aid: A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.
|
239
239
|
:type aid: str
|
240
240
|
:param expand: (Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.
|
241
|
-
:type expand: List[
|
241
|
+
:type expand: List[ExpandInstantTestOptions]
|
242
242
|
:param _request_timeout: timeout setting for this request. If one
|
243
243
|
number provided, it will be total request
|
244
244
|
timeout. It can also be a pair (tuple) of
|
@@ -272,7 +272,7 @@ class AgentToServerApi:
|
|
272
272
|
)
|
273
273
|
|
274
274
|
_response_types_map: Dict[str, Optional[str]] = {
|
275
|
-
'201': "
|
275
|
+
'201': "AgentToServerInstantTestResponse",
|
276
276
|
'400': "ValidationError",
|
277
277
|
'401': "UnauthorizedError",
|
278
278
|
'403': "Error",
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Instant Tests API
|
5
5
|
|
6
|
-
The Instant Tests API
|
6
|
+
The Instant Tests API operations 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
8
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
9
9
|
|
@@ -21,16 +21,16 @@ import thousandeyes_sdk.instant_tests.models
|
|
21
21
|
from pydantic import Field, StrictStr
|
22
22
|
from typing import List, Optional
|
23
23
|
from typing_extensions import Annotated
|
24
|
-
from thousandeyes_sdk.instant_tests.models.api_instant_test import ApiInstantTest
|
25
24
|
from thousandeyes_sdk.instant_tests.models.api_instant_test_request import ApiInstantTestRequest
|
26
|
-
from thousandeyes_sdk.instant_tests.models.
|
25
|
+
from thousandeyes_sdk.instant_tests.models.api_instant_test_response import ApiInstantTestResponse
|
26
|
+
from thousandeyes_sdk.instant_tests.models.expand_instant_test_options import ExpandInstantTestOptions
|
27
27
|
|
28
28
|
from thousandeyes_sdk.core.api_client import ApiClient, RequestSerialized
|
29
29
|
from thousandeyes_sdk.core.api_response import ApiResponse
|
30
30
|
from thousandeyes_sdk.core.rest import RESTResponseType
|
31
31
|
|
32
32
|
|
33
|
-
class
|
33
|
+
class APIInstantTestsApi:
|
34
34
|
"""NOTE: This class is auto generated by OpenAPI Generator
|
35
35
|
Ref: https://openapi-generator.tech
|
36
36
|
|
@@ -49,7 +49,7 @@ class APIApi:
|
|
49
49
|
self,
|
50
50
|
api_instant_test_request: ApiInstantTestRequest,
|
51
51
|
aid: Annotated[Optional[StrictStr], Field(description="A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.")] = None,
|
52
|
-
expand: Annotated[Optional[List[
|
52
|
+
expand: Annotated[Optional[List[ExpandInstantTestOptions]], Field(description="(Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.")] = None,
|
53
53
|
_request_timeout: Union[
|
54
54
|
None,
|
55
55
|
Annotated[StrictFloat, Field(gt=0)],
|
@@ -62,7 +62,7 @@ class APIApi:
|
|
62
62
|
_content_type: Optional[StrictStr] = None,
|
63
63
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
64
64
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
65
|
-
) ->
|
65
|
+
) -> ApiInstantTestResponse:
|
66
66
|
"""Create API instant test
|
67
67
|
|
68
68
|
Creates and runs a new API instant test.
|
@@ -72,7 +72,7 @@ class APIApi:
|
|
72
72
|
:param aid: A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.
|
73
73
|
:type aid: str
|
74
74
|
:param expand: (Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.
|
75
|
-
:type expand: List[
|
75
|
+
:type expand: List[ExpandInstantTestOptions]
|
76
76
|
:param _request_timeout: timeout setting for this request. If one
|
77
77
|
number provided, it will be total request
|
78
78
|
timeout. It can also be a pair (tuple) of
|
@@ -106,7 +106,7 @@ class APIApi:
|
|
106
106
|
)
|
107
107
|
|
108
108
|
_response_types_map: Dict[str, Optional[str]] = {
|
109
|
-
'201': "
|
109
|
+
'201': "ApiInstantTestResponse",
|
110
110
|
'400': "ValidationError",
|
111
111
|
'401': "UnauthorizedError",
|
112
112
|
'403': "Error",
|
@@ -132,7 +132,7 @@ class APIApi:
|
|
132
132
|
self,
|
133
133
|
api_instant_test_request: ApiInstantTestRequest,
|
134
134
|
aid: Annotated[Optional[StrictStr], Field(description="A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.")] = None,
|
135
|
-
expand: Annotated[Optional[List[
|
135
|
+
expand: Annotated[Optional[List[ExpandInstantTestOptions]], Field(description="(Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.")] = None,
|
136
136
|
_request_timeout: Union[
|
137
137
|
None,
|
138
138
|
Annotated[StrictFloat, Field(gt=0)],
|
@@ -145,7 +145,7 @@ class APIApi:
|
|
145
145
|
_content_type: Optional[StrictStr] = None,
|
146
146
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
147
147
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
148
|
-
) -> ApiResponse[
|
148
|
+
) -> ApiResponse[ApiInstantTestResponse]:
|
149
149
|
"""Create API instant test
|
150
150
|
|
151
151
|
Creates and runs a new API instant test.
|
@@ -155,7 +155,7 @@ class APIApi:
|
|
155
155
|
:param aid: A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.
|
156
156
|
:type aid: str
|
157
157
|
:param expand: (Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.
|
158
|
-
:type expand: List[
|
158
|
+
:type expand: List[ExpandInstantTestOptions]
|
159
159
|
:param _request_timeout: timeout setting for this request. If one
|
160
160
|
number provided, it will be total request
|
161
161
|
timeout. It can also be a pair (tuple) of
|
@@ -189,7 +189,7 @@ class APIApi:
|
|
189
189
|
)
|
190
190
|
|
191
191
|
_response_types_map: Dict[str, Optional[str]] = {
|
192
|
-
'201': "
|
192
|
+
'201': "ApiInstantTestResponse",
|
193
193
|
'400': "ValidationError",
|
194
194
|
'401': "UnauthorizedError",
|
195
195
|
'403': "Error",
|
@@ -215,7 +215,7 @@ class APIApi:
|
|
215
215
|
self,
|
216
216
|
api_instant_test_request: ApiInstantTestRequest,
|
217
217
|
aid: Annotated[Optional[StrictStr], Field(description="A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.")] = None,
|
218
|
-
expand: Annotated[Optional[List[
|
218
|
+
expand: Annotated[Optional[List[ExpandInstantTestOptions]], Field(description="(Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.")] = None,
|
219
219
|
_request_timeout: Union[
|
220
220
|
None,
|
221
221
|
Annotated[StrictFloat, Field(gt=0)],
|
@@ -238,7 +238,7 @@ class APIApi:
|
|
238
238
|
:param aid: A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response.
|
239
239
|
:type aid: str
|
240
240
|
:param expand: (Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`.
|
241
|
-
:type expand: List[
|
241
|
+
:type expand: List[ExpandInstantTestOptions]
|
242
242
|
:param _request_timeout: timeout setting for this request. If one
|
243
243
|
number provided, it will be total request
|
244
244
|
timeout. It can also be a pair (tuple) of
|
@@ -272,7 +272,7 @@ class APIApi:
|
|
272
272
|
)
|
273
273
|
|
274
274
|
_response_types_map: Dict[str, Optional[str]] = {
|
275
|
-
'201': "
|
275
|
+
'201': "ApiInstantTestResponse",
|
276
276
|
'400': "ValidationError",
|
277
277
|
'401': "UnauthorizedError",
|
278
278
|
'403': "Error",
|