mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com> Co-authored-by: Bruno Marques <107932720+brumarqu-te@users.noreply.github.com>
2.9 KiB
2.9 KiB
DynamicTest
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| aid | str | A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. | [optional] |
| links | DynamicTestLinks | [optional] | |
| agent_selector_config | EndpointAgentSelectorConfig | [optional] | |
| application | str | Which supported application to monitor, can be one of `webex`, `zoom`, `microsoft-teams`. | [optional] |
| created_date | datetime | UTC created date (ISO date-time format). | [optional] [readonly] |
| interval | TestInterval | [optional] | |
| is_enabled | bool | Indicates if test is enabled. | [optional] [default to True] |
| has_path_trace_in_session | bool | Enables "in session" path trace. When enabled, this option initiates a TCP session with the target server and sends path trace packets within the established TCP session. | [optional] |
| has_ping | bool | Optional flag indicating if the test should run ping. | [optional] [default to True] |
| has_traceroute | bool | Optional flag indicating if the test should run traceroute. | [optional] [default to True] |
| modified_date | datetime | UTC last modification date (ISO date-time format). | [optional] [readonly] |
| network_measurements | bool | Enable or disable network measurements. Set to true to enable or false to disable network measurements. | [optional] [default to True] |
| protocol | EndpointTestProtocol | [optional] | |
| ip_version | EndpointIpVersionTemplate | [optional] | |
| tcp_probe_mode | TestProbeModeResponse | [optional] | |
| test_id | str | Each test is assigned a unique ID; this is used to access test information and results from other endpoints. | [optional] [readonly] |
| test_name | str | Name of the test. | [optional] |
| labels | **List[TestLabel]** | [optional] [readonly] |
Example
from thousandeyes_sdk.endpoint_tests.models.dynamic_test import DynamicTest
# TODO update the JSON string below
json = "{}"
# create an instance of DynamicTest from a JSON string
dynamic_test_instance = DynamicTest.from_json(json)
# print the JSON string representation of the object
print(DynamicTest.to_json())
# convert the object into a dict
dynamic_test_dict = dynamic_test_instance.to_dict()
# create an instance of DynamicTest from a dict
dynamic_test_from_dict = DynamicTest.from_dict(dynamic_test_dict)