3.22.5. Find unique DNS entry

 
MethodURIDescription
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

 3.22.5.1. Request

This table shows the URI parameters for the find unique dns entry request:

NameTypeDescription

{tenant_id}

​String

The unique identifier of the tenant or account.

{domain}

​String

Registered DNS domain published by the DNS drivers.

{name}

​String

DNS entry name assigned under a domain.

This operation does not require a request body.

 3.22.5.2. Response

 

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.

Questions? Discuss on ask.openstack.org
Found an error? Report a bug against this page


loading table of contents...