thousandeyes-sdk-python/thousandeyes-sdk-instant-tests/docs/DnsSecProperties.md
2024-11-26 16:24:31 +00:00

1.3 KiB

DnsSecProperties

Properties

Name Type Description Notes
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]
randomized_start_time bool Indicates whether agents should randomize the start time in each test round. [optional] [default to False]
type str [optional] [readonly]

Example

from thousandeyes_sdk.instant_tests.models.dns_sec_properties import DnsSecProperties

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

# convert the object into a dict
dns_sec_properties_dict = dns_sec_properties_instance.to_dict()
# create an instance of DnsSecProperties from a dict
dns_sec_properties_from_dict = DnsSecProperties.from_dict(dns_sec_properties_dict)

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