| Method | URI | Description |
|---|---|---|
| GET | /v2/{tenant_id}/os-floating-ip-dns/{domain}/entries/{name} | Finds a unique DNS entry for a specified domain and name. |
Normal response codes: 200
This table shows the URI parameters for the find unique dns entry request:
| Name | Type | Description |
|---|---|---|
| String | The unique identifier of the tenant or account. |
| String | Registered DNS domain published by the DNS drivers. |
| String | DNS entry name assigned under a domain. |
This operation does not require a request body.
Example 3.185. Find unique DNS entry: JSON response
{
"dns_entry": {
"domain": "domain1.example.org",
"id": null,
"ip": "192.168.1.1",
"name": "instance1",
"type": null
}
}Example 3.186. Find unique DNS entry: XML response
<?xml version='1.0' encoding='UTF-8'?> <dns_entry ip="192.168.1.1" domain="domain1.example.org" type="None" id="None" name="instance1"/>
This operation does not return a response body.

