thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/LocalNetworkTopologyDnsServerTest.md
Miguel Pragosa fa5af77369
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#149)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-04-30 11:18:18 +01:00

1.3 KiB

LocalNetworkTopologyDnsServerTest

DNS server test details. This object is only available when the topology type is dns.

Properties

Name Type Description Notes
resolution_time int How long it took to resolve the DNS query in milliseconds. [optional] [readonly]

Example

from thousandeyes_sdk.endpoint_test_results.models.local_network_topology_dns_server_test import LocalNetworkTopologyDnsServerTest

# TODO update the JSON string below
json = "{}"
# create an instance of LocalNetworkTopologyDnsServerTest from a JSON string
local_network_topology_dns_server_test_instance = LocalNetworkTopologyDnsServerTest.from_json(json)
# print the JSON string representation of the object
print(LocalNetworkTopologyDnsServerTest.to_json())

# convert the object into a dict
local_network_topology_dns_server_test_dict = local_network_topology_dns_server_test_instance.to_dict()
# create an instance of LocalNetworkTopologyDnsServerTest from a dict
local_network_topology_dns_server_test_from_dict = LocalNetworkTopologyDnsServerTest.from_dict(local_network_topology_dns_server_test_dict)

[Back to Model list] [Back to API list] [Back to README]