thousandeyes-sdk-python/thousandeyes-sdk-tests/docs/DnsTraceProperties.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1.3 KiB

DnsTraceProperties

Properties

Name Type Description Notes
dns_transport_protocol TestDnsTransportProtocol [optional]
domain str The target record for the test, with the record type suffixed. If no record type is specified, the test defaults to an ANY record.
dns_query_class DnsQueryClass [optional]
type str [optional] [readonly]

Example

from thousandeyes_sdk.tests.models.dns_trace_properties import DnsTraceProperties

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

# convert the object into a dict
dns_trace_properties_dict = dns_trace_properties_instance.to_dict()
# create an instance of DnsTraceProperties from a dict
dns_trace_properties_from_dict = DnsTraceProperties.from_dict(dns_trace_properties_dict)

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