mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
30 lines
964 B
Markdown
30 lines
964 B
Markdown
# DnsServersRequest
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**dns_servers** | **List[str]** | A list of DNS server FQDN. | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from 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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|