shade/shade/tests/unit/fixtures/dns.json
Monty Taylor 766d6227a3
Use get_discovery from keystoneauth
If we use the get_discovery call, we'll re-use the keystoneauth cache.
This removes the last stupid extra discovery call.

While doing this, noticed the dns version discovery was wrong, but we
weren't noticing because adapter magic. Fix it.

Change-Id: I01d07554d094fffd498f21a9291710c8eb0041f6
2017-06-06 17:05:16 -05:00

25 lines
521 B
JSON

{
"versions": {
"values": [{
"id": "v1",
"links": [
{
"href": "https://dns.example.com/v1",
"rel": "self"
}
],
"status": "DEPRECATED"
}, {
"id": "v2",
"links": [
{
"href": "https://dns.example.com/v2",
"rel": "self"
}
],
"status": "CURRENT"
}]
}
}