Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.39 KB

File metadata and controls

39 lines (30 loc) · 1.39 KB

DNSConfiguration

Properties

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]

Example

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)

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