1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
module Fog
module DNS
class PowerDNS
class Real
# Get details of all powerdns servers
#
# ==== Parameters
#
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * server<~Array>:
# * 'type': <~String>,
# * 'id': <~String>,
# * 'url': <~String>,
# * 'daemon_type': <~String>,
# * 'version': <~String>,
# * 'config_url': <~String>,
# * 'zones_url': <~String>,
# * status<~String> - 200 when successful
def list_servers
request(
:expects => 200,
:method => 'GET',
:path => "/servers"
).body
end
end
end
end
end
|