mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
1.1 KiB
1.1 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] | |
| type | str | [optional] [readonly] |
Example
from 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)