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 35 36 37
|
module Fog
module DNS
class PowerDNS
class Real
# Get details of a cryptokey
#
# ==== Parameters
# * server<~String> - server id
# * zone<~String> - zone id
# * cryptokey<~String> - cryptokey id
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'type': <~String>,
# * 'id': <~Integer>,
# * 'active': <~Boolean>,
# * 'keytype': <~String>,
# * 'dnskey': <~String>,
# * 'content': <~String>,
# * 'ds': <~Array>
# * status<~Integer> - 200 when successful
#
def get_cryptokey(server, zone, cryptokey)
request(
:expects => 200,
:method => 'GET',
:path => "/servers/#{server}/zones/#{zone}/cryptokeys/#{cryptokey}"
).body
end
end
end
end
end
|