| Name | Type | Description | Notes |
|---|---|---|---|
| accept_cname | bool | [optional] | |
| lookup | str | ||
| lookup_server_name | bool | [optional] | |
| port | int | [optional] | |
| query_time | DNSFilterQueryTime | [optional] | |
| query_type | str | [optional] | |
| recursive_lookups | bool | [optional] | |
| server | str | ||
| server_retries | int | [optional] | |
| target_values | List[DNSFilterTargetValue] | [optional] | |
| transport | str | [optional] |
from instana_client.models.dns_configuration import DNSConfiguration
# TODO update the JSON string below
json = "{}"
# create an instance of DNSConfiguration from a JSON string
dns_configuration_instance = DNSConfiguration.from_json(json)
# print the JSON string representation of the object
print(DNSConfiguration.to_json())
# convert the object into a dict
dns_configuration_dict = dns_configuration_instance.to_dict()
# create an instance of DNSConfiguration from a dict
dns_configuration_from_dict = DNSConfiguration.from_dict(dns_configuration_dict)