mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
32 lines
1.1 KiB
Markdown
32 lines
1.1 KiB
Markdown
# 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**](DnsQueryClass.md) | | [optional]
|
|
**type** | **str** | | [optional] [readonly]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|