thousandeyes-sdk-python/thousandeyes-sdk-instant-tests/docs/DnsServersRequest.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

989 B

DnsServersRequest

Properties

Name Type Description Notes
dns_servers List[str] A list of DNS server FQDN. [optional]

Example

from thousandeyes_sdk.instant_tests.models.dns_servers_request import DnsServersRequest

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

# convert the object into a dict
dns_servers_request_dict = dns_servers_request_instance.to_dict()
# create an instance of DnsServersRequest from a dict
dns_servers_request_from_dict = DnsServersRequest.from_dict(dns_servers_request_dict)

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