mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
1.2 KiB
1.2 KiB
TestUpdate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| interval | TestInterval | [optional] | |
| test_name | str | Name of the test. | [optional] |
| protocol | EndpointTestProtocol | [optional] | |
| is_enabled | bool | Indicates if test is enabled. | [optional] [default to True] |
| tcp_probe_mode | TestProbeMode | [optional] |
Example
from thousandeyes_sdk.endpoint_tests.models.test_update import TestUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of TestUpdate from a JSON string
test_update_instance = TestUpdate.from_json(json)
# print the JSON string representation of the object
print(TestUpdate.to_json())
# convert the object into a dict
test_update_dict = test_update_instance.to_dict()
# create an instance of TestUpdate from a dict
test_update_from_dict = TestUpdate.from_dict(test_update_dict)