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
@@ -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
|
|
@@ -32,10 +32,13 @@ class ApiProperties(BaseModel):
|
|
32
32
|
"""
|
33
33
|
ApiProperties
|
34
34
|
""" # noqa: E501
|
35
|
+
collect_proxy_network_data: Optional[StrictBool] = Field(default=False, description="Indicates whether network data to the proxy should be collected.", alias="collectProxyNetworkData")
|
35
36
|
follow_redirects: Optional[StrictBool] = Field(default=True, description="To disable following HTTP/301 or HTTP/302 redirect directives, set this parameter to `false`.", alias="followRedirects")
|
36
37
|
mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
|
37
38
|
network_measurements: Optional[StrictBool] = Field(default=True, description="Enable or disable network measurements. Set to true to enable or false to disable network measurements.", alias="networkMeasurements")
|
38
39
|
num_path_traces: Optional[Annotated[int, Field(le=10, strict=True, ge=1)]] = Field(default=3, description="Number of path traces executed by the agent.", alias="numPathTraces")
|
40
|
+
override_agent_proxy: Optional[StrictBool] = Field(default=False, description="Flag indicating if a proxy other than the default should be used. To override the default proxy for agents, set to `true` and specify a value for `overrideProxyId`.", alias="overrideAgentProxy")
|
41
|
+
override_proxy_id: Optional[StrictStr] = Field(default=None, description="ID of the proxy to be used if the default proxy is overridden.", alias="overrideProxyId")
|
39
42
|
path_trace_mode: Optional[TestPathTraceMode] = Field(default=None, alias="pathTraceMode")
|
40
43
|
predefined_variables: Optional[List[ApiPredefinedVariable]] = Field(default=None, alias="predefinedVariables")
|
41
44
|
probe_mode: Optional[TestProbeMode] = Field(default=None, alias="probeMode")
|
@@ -46,7 +49,7 @@ class ApiProperties(BaseModel):
|
|
46
49
|
time_limit: Optional[Annotated[int, Field(le=180, strict=True, ge=5)]] = Field(default=30, description="Time limit for transaction in seconds. Exceeding this limit will result in a Timeout error.", alias="timeLimit")
|
47
50
|
url: StrictStr = Field(description="Target for the test.")
|
48
51
|
type: Optional[StrictStr] = None
|
49
|
-
__properties: ClassVar[List[str]] = ["followRedirects", "mtuMeasurements", "networkMeasurements", "numPathTraces", "pathTraceMode", "predefinedVariables", "probeMode", "protocol", "requests", "sslVersionId", "targetTime", "timeLimit", "url", "type"]
|
52
|
+
__properties: ClassVar[List[str]] = ["collectProxyNetworkData", "followRedirects", "mtuMeasurements", "networkMeasurements", "numPathTraces", "overrideAgentProxy", "overrideProxyId", "pathTraceMode", "predefinedVariables", "probeMode", "protocol", "requests", "sslVersionId", "targetTime", "timeLimit", "url", "type"]
|
50
53
|
|
51
54
|
model_config = ConfigDict(
|
52
55
|
populate_by_name=True,
|
@@ -116,10 +119,13 @@ class ApiProperties(BaseModel):
|
|
116
119
|
return cls.model_validate(obj)
|
117
120
|
|
118
121
|
_obj = cls.model_validate({
|
122
|
+
"collectProxyNetworkData": obj.get("collectProxyNetworkData") if obj.get("collectProxyNetworkData") is not None else False,
|
119
123
|
"followRedirects": obj.get("followRedirects") if obj.get("followRedirects") is not None else True,
|
120
124
|
"mtuMeasurements": obj.get("mtuMeasurements"),
|
121
125
|
"networkMeasurements": obj.get("networkMeasurements") if obj.get("networkMeasurements") is not None else True,
|
122
126
|
"numPathTraces": obj.get("numPathTraces") if obj.get("numPathTraces") is not None else 3,
|
127
|
+
"overrideAgentProxy": obj.get("overrideAgentProxy") if obj.get("overrideAgentProxy") is not None else False,
|
128
|
+
"overrideProxyId": obj.get("overrideProxyId"),
|
123
129
|
"pathTraceMode": obj.get("pathTraceMode"),
|
124
130
|
"predefinedVariables": [ApiPredefinedVariable.from_dict(_item) for _item in obj["predefinedVariables"]] if obj.get("predefinedVariables") is not None else None,
|
125
131
|
"probeMode": obj.get("probeMode"),
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -27,10 +27,15 @@ class ApiRequestAssertionName(str, Enum):
|
|
27
27
|
"""
|
28
28
|
STATUS_MINUS_CODE = 'status-code'
|
29
29
|
RESPONSE_MINUS_BODY = 'response-body'
|
30
|
+
UNKNOWN = 'unknown'
|
30
31
|
|
31
32
|
@classmethod
|
32
33
|
def from_json(cls, json_str: str) -> Self:
|
33
34
|
"""Create an instance of ApiRequestAssertionName from a JSON string"""
|
34
35
|
return cls(json.loads(json_str))
|
35
36
|
|
37
|
+
@classmethod
|
38
|
+
def _missing_(cls, value):
|
39
|
+
"""Handle unknown values"""
|
40
|
+
return cls.UNKNOWN
|
36
41
|
|
@@ -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
|
|
@@ -29,10 +29,15 @@ class ApiRequestAssertionOperator(str, Enum):
|
|
29
29
|
IS_MINUS_NOT = 'is-not'
|
30
30
|
INCLUDES = 'includes'
|
31
31
|
NOT_MINUS_INCLUDES = 'not-includes'
|
32
|
+
UNKNOWN = 'unknown'
|
32
33
|
|
33
34
|
@classmethod
|
34
35
|
def from_json(cls, json_str: str) -> Self:
|
35
36
|
"""Create an instance of ApiRequestAssertionOperator from a JSON string"""
|
36
37
|
return cls(json.loads(json_str))
|
37
38
|
|
39
|
+
@classmethod
|
40
|
+
def _missing_(cls, value):
|
41
|
+
"""Handle unknown values"""
|
42
|
+
return cls.UNKNOWN
|
38
43
|
|
@@ -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
|
|
@@ -28,10 +28,15 @@ class ApiRequestAuthType(str, Enum):
|
|
28
28
|
NONE = 'none'
|
29
29
|
BASIC = 'basic'
|
30
30
|
BEARER_MINUS_TOKEN = 'bearer-token'
|
31
|
+
UNKNOWN = 'unknown'
|
31
32
|
|
32
33
|
@classmethod
|
33
34
|
def from_json(cls, json_str: str) -> Self:
|
34
35
|
"""Create an instance of ApiRequestAuthType from a JSON string"""
|
35
36
|
return cls(json.loads(json_str))
|
36
37
|
|
38
|
+
@classmethod
|
39
|
+
def _missing_(cls, value):
|
40
|
+
"""Handle unknown values"""
|
41
|
+
return cls.UNKNOWN
|
37
42
|
|
@@ -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
|
|
@@ -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
|
|
@@ -30,10 +30,15 @@ class ApiRequestMethod(str, Enum):
|
|
30
30
|
PUT = 'put'
|
31
31
|
DELETE = 'delete'
|
32
32
|
PATCH = 'patch'
|
33
|
+
UNKNOWN = 'unknown'
|
33
34
|
|
34
35
|
@classmethod
|
35
36
|
def from_json(cls, json_str: str) -> Self:
|
36
37
|
"""Create an instance of ApiRequestMethod from a JSON string"""
|
37
38
|
return cls(json.loads(json_str))
|
38
39
|
|
40
|
+
@classmethod
|
41
|
+
def _missing_(cls, value):
|
42
|
+
"""Handle unknown values"""
|
43
|
+
return cls.UNKNOWN
|
39
44
|
|
@@ -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
|
|
@@ -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
|
|
@@ -28,10 +28,15 @@ class CloudEnterpriseAgentType(str, Enum):
|
|
28
28
|
CLOUD = 'cloud'
|
29
29
|
ENTERPRISE_MINUS_CLUSTER = 'enterprise-cluster'
|
30
30
|
ENTERPRISE = 'enterprise'
|
31
|
+
UNKNOWN = 'unknown'
|
31
32
|
|
32
33
|
@classmethod
|
33
34
|
def from_json(cls, json_str: str) -> Self:
|
34
35
|
"""Create an instance of CloudEnterpriseAgentType from a JSON string"""
|
35
36
|
return cls(json.loads(json_str))
|
36
37
|
|
38
|
+
@classmethod
|
39
|
+
def _missing_(cls, value):
|
40
|
+
"""Handle unknown values"""
|
41
|
+
return cls.UNKNOWN
|
37
42
|
|
@@ -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
|
|
@@ -27,10 +27,15 @@ class DnsQueryClass(str, Enum):
|
|
27
27
|
"""
|
28
28
|
IN = 'in'
|
29
29
|
CH = 'ch'
|
30
|
+
UNKNOWN = 'unknown'
|
30
31
|
|
31
32
|
@classmethod
|
32
33
|
def from_json(cls, json_str: str) -> Self:
|
33
34
|
"""Create an instance of DnsQueryClass from a JSON string"""
|
34
35
|
return cls(json.loads(json_str))
|
35
36
|
|
37
|
+
@classmethod
|
38
|
+
def _missing_(cls, value):
|
39
|
+
"""Handle unknown values"""
|
40
|
+
return cls.UNKNOWN
|
36
41
|
|
@@ -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
|
|
@@ -19,7 +19,6 @@ import json
|
|
19
19
|
from datetime import datetime
|
20
20
|
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
22
|
-
from thousandeyes_sdk.instant_tests.models.agent import Agent
|
23
22
|
from thousandeyes_sdk.instant_tests.models.dns_query_class import DnsQueryClass
|
24
23
|
from thousandeyes_sdk.instant_tests.models.shared_with_account import SharedWithAccount
|
25
24
|
from thousandeyes_sdk.instant_tests.models.test_label import TestLabel
|
@@ -46,8 +45,7 @@ class DnsSecInstantTest(BaseModel):
|
|
46
45
|
shared_with_accounts: Optional[List[SharedWithAccount]] = Field(default=None, alias="sharedWithAccounts")
|
47
46
|
domain: StrictStr = Field(description="The target record for the test, with the record type suffixed. If no record type is specified, the test defaults to an ANY record.")
|
48
47
|
dns_query_class: Optional[DnsQueryClass] = Field(default=None, alias="dnsQueryClass")
|
49
|
-
|
50
|
-
__properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "domain", "dnsQueryClass", "agents"]
|
48
|
+
__properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "domain", "dnsQueryClass"]
|
51
49
|
|
52
50
|
model_config = ConfigDict(
|
53
51
|
populate_by_name=True,
|
@@ -90,7 +88,6 @@ class DnsSecInstantTest(BaseModel):
|
|
90
88
|
* OpenAPI `readOnly` fields are excluded.
|
91
89
|
* OpenAPI `readOnly` fields are excluded.
|
92
90
|
* OpenAPI `readOnly` fields are excluded.
|
93
|
-
* OpenAPI `readOnly` fields are excluded.
|
94
91
|
"""
|
95
92
|
excluded_fields: Set[str] = set([
|
96
93
|
"created_by",
|
@@ -103,7 +100,6 @@ class DnsSecInstantTest(BaseModel):
|
|
103
100
|
"type",
|
104
101
|
"labels",
|
105
102
|
"shared_with_accounts",
|
106
|
-
"agents",
|
107
103
|
])
|
108
104
|
|
109
105
|
_dict = self.model_dump(
|
@@ -128,13 +124,6 @@ class DnsSecInstantTest(BaseModel):
|
|
128
124
|
if _item:
|
129
125
|
_items.append(_item.to_dict())
|
130
126
|
_dict['sharedWithAccounts'] = _items
|
131
|
-
# override the default output from pydantic by calling `to_dict()` of each item in agents (list)
|
132
|
-
_items = []
|
133
|
-
if self.agents:
|
134
|
-
for _item in self.agents:
|
135
|
-
if _item:
|
136
|
-
_items.append(_item.to_dict())
|
137
|
-
_dict['agents'] = _items
|
138
127
|
return _dict
|
139
128
|
|
140
129
|
@classmethod
|
@@ -161,8 +150,7 @@ class DnsSecInstantTest(BaseModel):
|
|
161
150
|
"labels": [TestLabel.from_dict(_item) for _item in obj["labels"]] if obj.get("labels") is not None else None,
|
162
151
|
"sharedWithAccounts": [SharedWithAccount.from_dict(_item) for _item in obj["sharedWithAccounts"]] if obj.get("sharedWithAccounts") is not None else None,
|
163
152
|
"domain": obj.get("domain"),
|
164
|
-
"dnsQueryClass": obj.get("dnsQueryClass")
|
165
|
-
"agents": [Agent.from_dict(_item) for _item in obj["agents"]] if obj.get("agents") is not None else None
|
153
|
+
"dnsQueryClass": obj.get("dnsQueryClass")
|
166
154
|
})
|
167
155
|
return _obj
|
168
156
|
|
@@ -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
|
|
@@ -0,0 +1,167 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
Instant Tests API
|
5
|
+
|
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
|
+
|
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 datetime import datetime
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
22
|
+
from thousandeyes_sdk.instant_tests.models.agent_response import AgentResponse
|
23
|
+
from thousandeyes_sdk.instant_tests.models.dns_query_class import DnsQueryClass
|
24
|
+
from thousandeyes_sdk.instant_tests.models.shared_with_account import SharedWithAccount
|
25
|
+
from thousandeyes_sdk.instant_tests.models.test_label import TestLabel
|
26
|
+
from thousandeyes_sdk.instant_tests.models.test_links import TestLinks
|
27
|
+
from typing import Optional, Set
|
28
|
+
from typing_extensions import Self
|
29
|
+
|
30
|
+
class DnsSecInstantTestResponse(BaseModel):
|
31
|
+
"""
|
32
|
+
DnsSecInstantTestResponse
|
33
|
+
""" # noqa: E501
|
34
|
+
created_by: Optional[StrictStr] = Field(default=None, description="User that created the test.", alias="createdBy")
|
35
|
+
created_date: Optional[datetime] = Field(default=None, description="UTC created date (ISO date-time format).", alias="createdDate")
|
36
|
+
description: Optional[StrictStr] = Field(default=None, description="A description of the test.")
|
37
|
+
live_share: Optional[StrictBool] = Field(default=None, description="Indicates if the test is shared with the account group.", alias="liveShare")
|
38
|
+
modified_by: Optional[StrictStr] = Field(default=None, description="User that modified the test.", alias="modifiedBy")
|
39
|
+
modified_date: Optional[datetime] = Field(default=None, description="UTC last modification date (ISO date-time format).", alias="modifiedDate")
|
40
|
+
saved_event: Optional[StrictBool] = Field(default=None, description="Indicates if the test is a saved event.", alias="savedEvent")
|
41
|
+
test_id: Optional[StrictStr] = Field(default=None, description="Each test is assigned an unique ID; this is used to access test information and results from other endpoints.", alias="testId")
|
42
|
+
test_name: Optional[StrictStr] = Field(default=None, description="The name of the test. Test name must be unique.", alias="testName")
|
43
|
+
type: Optional[StrictStr] = None
|
44
|
+
links: Optional[TestLinks] = Field(default=None, alias="_links")
|
45
|
+
labels: Optional[List[TestLabel]] = None
|
46
|
+
shared_with_accounts: Optional[List[SharedWithAccount]] = Field(default=None, alias="sharedWithAccounts")
|
47
|
+
domain: StrictStr = Field(description="The target record for the test, with the record type suffixed. If no record type is specified, the test defaults to an ANY record.")
|
48
|
+
dns_query_class: Optional[DnsQueryClass] = Field(default=None, alias="dnsQueryClass")
|
49
|
+
agents: Optional[List[AgentResponse]] = Field(default=None, description="Contains list of agents.")
|
50
|
+
__properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "domain", "dnsQueryClass", "agents"]
|
51
|
+
|
52
|
+
model_config = ConfigDict(
|
53
|
+
populate_by_name=True,
|
54
|
+
validate_assignment=True,
|
55
|
+
protected_namespaces=(),
|
56
|
+
extra="allow",
|
57
|
+
)
|
58
|
+
|
59
|
+
|
60
|
+
def to_str(self) -> str:
|
61
|
+
"""Returns the string representation of the model using alias"""
|
62
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
63
|
+
|
64
|
+
def to_json(self) -> str:
|
65
|
+
"""Returns the JSON representation of the model using alias"""
|
66
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
67
|
+
return self.model_dump_json(by_alias=True, exclude_unset=True, exclude_none=True)
|
68
|
+
|
69
|
+
@classmethod
|
70
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
71
|
+
"""Create an instance of DnsSecInstantTestResponse from a JSON string"""
|
72
|
+
return cls.from_dict(json.loads(json_str))
|
73
|
+
|
74
|
+
def to_dict(self) -> Dict[str, Any]:
|
75
|
+
"""Return the dictionary representation of the model using alias.
|
76
|
+
|
77
|
+
This has the following differences from calling pydantic's
|
78
|
+
`self.model_dump(by_alias=True)`:
|
79
|
+
|
80
|
+
* `None` is only added to the output dict for nullable fields that
|
81
|
+
were set at model initialization. Other fields with value `None`
|
82
|
+
are ignored.
|
83
|
+
* OpenAPI `readOnly` fields are excluded.
|
84
|
+
* OpenAPI `readOnly` fields are excluded.
|
85
|
+
* OpenAPI `readOnly` fields are excluded.
|
86
|
+
* OpenAPI `readOnly` fields are excluded.
|
87
|
+
* OpenAPI `readOnly` fields are excluded.
|
88
|
+
* OpenAPI `readOnly` fields are excluded.
|
89
|
+
* OpenAPI `readOnly` fields are excluded.
|
90
|
+
* OpenAPI `readOnly` fields are excluded.
|
91
|
+
* OpenAPI `readOnly` fields are excluded.
|
92
|
+
* OpenAPI `readOnly` fields are excluded.
|
93
|
+
"""
|
94
|
+
excluded_fields: Set[str] = set([
|
95
|
+
"created_by",
|
96
|
+
"created_date",
|
97
|
+
"live_share",
|
98
|
+
"modified_by",
|
99
|
+
"modified_date",
|
100
|
+
"saved_event",
|
101
|
+
"test_id",
|
102
|
+
"type",
|
103
|
+
"labels",
|
104
|
+
"shared_with_accounts",
|
105
|
+
])
|
106
|
+
|
107
|
+
_dict = self.model_dump(
|
108
|
+
by_alias=True,
|
109
|
+
exclude=excluded_fields,
|
110
|
+
exclude_none=True,
|
111
|
+
)
|
112
|
+
# override the default output from pydantic by calling `to_dict()` of links
|
113
|
+
if self.links:
|
114
|
+
_dict['_links'] = self.links.to_dict()
|
115
|
+
# override the default output from pydantic by calling `to_dict()` of each item in labels (list)
|
116
|
+
_items = []
|
117
|
+
if self.labels:
|
118
|
+
for _item in self.labels:
|
119
|
+
if _item:
|
120
|
+
_items.append(_item.to_dict())
|
121
|
+
_dict['labels'] = _items
|
122
|
+
# override the default output from pydantic by calling `to_dict()` of each item in shared_with_accounts (list)
|
123
|
+
_items = []
|
124
|
+
if self.shared_with_accounts:
|
125
|
+
for _item in self.shared_with_accounts:
|
126
|
+
if _item:
|
127
|
+
_items.append(_item.to_dict())
|
128
|
+
_dict['sharedWithAccounts'] = _items
|
129
|
+
# override the default output from pydantic by calling `to_dict()` of each item in agents (list)
|
130
|
+
_items = []
|
131
|
+
if self.agents:
|
132
|
+
for _item in self.agents:
|
133
|
+
if _item:
|
134
|
+
_items.append(_item.to_dict())
|
135
|
+
_dict['agents'] = _items
|
136
|
+
return _dict
|
137
|
+
|
138
|
+
@classmethod
|
139
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
140
|
+
"""Create an instance of DnsSecInstantTestResponse from a dict"""
|
141
|
+
if obj is None:
|
142
|
+
return None
|
143
|
+
|
144
|
+
if not isinstance(obj, dict):
|
145
|
+
return cls.model_validate(obj)
|
146
|
+
|
147
|
+
_obj = cls.model_validate({
|
148
|
+
"createdBy": obj.get("createdBy"),
|
149
|
+
"createdDate": obj.get("createdDate"),
|
150
|
+
"description": obj.get("description"),
|
151
|
+
"liveShare": obj.get("liveShare"),
|
152
|
+
"modifiedBy": obj.get("modifiedBy"),
|
153
|
+
"modifiedDate": obj.get("modifiedDate"),
|
154
|
+
"savedEvent": obj.get("savedEvent"),
|
155
|
+
"testId": obj.get("testId"),
|
156
|
+
"testName": obj.get("testName"),
|
157
|
+
"type": obj.get("type"),
|
158
|
+
"_links": TestLinks.from_dict(obj["_links"]) if obj.get("_links") is not None else None,
|
159
|
+
"labels": [TestLabel.from_dict(_item) for _item in obj["labels"]] if obj.get("labels") is not None else None,
|
160
|
+
"sharedWithAccounts": [SharedWithAccount.from_dict(_item) for _item in obj["sharedWithAccounts"]] if obj.get("sharedWithAccounts") is not None else None,
|
161
|
+
"domain": obj.get("domain"),
|
162
|
+
"dnsQueryClass": obj.get("dnsQueryClass"),
|
163
|
+
"agents": [AgentResponse.from_dict(_item) for _item in obj["agents"]] if obj.get("agents") is not None else None
|
164
|
+
})
|
165
|
+
return _obj
|
166
|
+
|
167
|
+
|
@@ -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
|
|
@@ -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
|
|
@@ -20,7 +20,6 @@ from datetime import datetime
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
22
22
|
from typing_extensions import Annotated
|
23
|
-
from thousandeyes_sdk.instant_tests.models.agent import Agent
|
24
23
|
from thousandeyes_sdk.instant_tests.models.dns_query_class import DnsQueryClass
|
25
24
|
from thousandeyes_sdk.instant_tests.models.shared_with_account import SharedWithAccount
|
26
25
|
from thousandeyes_sdk.instant_tests.models.test_dns_server import TestDnsServer
|
@@ -65,8 +64,7 @@ class DnsServerInstantTest(BaseModel):
|
|
65
64
|
ipv6_policy: Optional[TestIpv6Policy] = Field(default=None, alias="ipv6Policy")
|
66
65
|
fixed_packet_rate: Optional[Annotated[int, Field(le=100, strict=True, ge=0)]] = Field(default=None, description="Sets packets rate sent to measure the network in packets per second.", alias="fixedPacketRate")
|
67
66
|
dns_query_class: Optional[DnsQueryClass] = Field(default=None, alias="dnsQueryClass")
|
68
|
-
|
69
|
-
__properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "bandwidthMeasurements", "dnsServers", "dnsTransportProtocol", "domain", "mtuMeasurements", "networkMeasurements", "numPathTraces", "pathTraceMode", "probeMode", "protocol", "recursiveQueries", "ipv6Policy", "fixedPacketRate", "dnsQueryClass", "agents"]
|
67
|
+
__properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "bandwidthMeasurements", "dnsServers", "dnsTransportProtocol", "domain", "mtuMeasurements", "networkMeasurements", "numPathTraces", "pathTraceMode", "probeMode", "protocol", "recursiveQueries", "ipv6Policy", "fixedPacketRate", "dnsQueryClass"]
|
70
68
|
|
71
69
|
model_config = ConfigDict(
|
72
70
|
populate_by_name=True,
|
@@ -109,7 +107,6 @@ class DnsServerInstantTest(BaseModel):
|
|
109
107
|
* OpenAPI `readOnly` fields are excluded.
|
110
108
|
* OpenAPI `readOnly` fields are excluded.
|
111
109
|
* OpenAPI `readOnly` fields are excluded.
|
112
|
-
* OpenAPI `readOnly` fields are excluded.
|
113
110
|
"""
|
114
111
|
excluded_fields: Set[str] = set([
|
115
112
|
"created_by",
|
@@ -122,7 +119,6 @@ class DnsServerInstantTest(BaseModel):
|
|
122
119
|
"type",
|
123
120
|
"labels",
|
124
121
|
"shared_with_accounts",
|
125
|
-
"agents",
|
126
122
|
])
|
127
123
|
|
128
124
|
_dict = self.model_dump(
|
@@ -154,13 +150,6 @@ class DnsServerInstantTest(BaseModel):
|
|
154
150
|
if _item:
|
155
151
|
_items.append(_item.to_dict())
|
156
152
|
_dict['dnsServers'] = _items
|
157
|
-
# override the default output from pydantic by calling `to_dict()` of each item in agents (list)
|
158
|
-
_items = []
|
159
|
-
if self.agents:
|
160
|
-
for _item in self.agents:
|
161
|
-
if _item:
|
162
|
-
_items.append(_item.to_dict())
|
163
|
-
_dict['agents'] = _items
|
164
153
|
return _dict
|
165
154
|
|
166
155
|
@classmethod
|
@@ -199,8 +188,7 @@ class DnsServerInstantTest(BaseModel):
|
|
199
188
|
"recursiveQueries": obj.get("recursiveQueries"),
|
200
189
|
"ipv6Policy": obj.get("ipv6Policy"),
|
201
190
|
"fixedPacketRate": obj.get("fixedPacketRate"),
|
202
|
-
"dnsQueryClass": obj.get("dnsQueryClass")
|
203
|
-
"agents": [Agent.from_dict(_item) for _item in obj["agents"]] if obj.get("agents") is not None else None
|
191
|
+
"dnsQueryClass": obj.get("dnsQueryClass")
|
204
192
|
})
|
205
193
|
return _obj
|
206
194
|
|
@@ -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
|
|