Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.58 KB

File metadata and controls

39 lines (30 loc) · 1.58 KB

DNSConfigurationUpdate

Properties

Name Type Description Notes
accept_cname bool [optional]
lookup str [optional]
lookup_server_name bool [optional]
port int [optional]
query_time DNSFilterQueryTime [optional]
query_type str [optional]
recursive_lookups bool [optional]
server str [optional]
server_retries int [optional]
target_values SyntheticResourceUpdateListDNSFilterTargetValueListDNSFilterTargetValue [optional]
transport str [optional]

Example

from instana_client.models.dns_configuration_update import DNSConfigurationUpdate

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

# convert the object into a dict
dns_configuration_update_dict = dns_configuration_update_instance.to_dict()
# create an instance of DNSConfigurationUpdate from a dict
dns_configuration_update_from_dict = DNSConfigurationUpdate.from_dict(dns_configuration_update_dict)

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