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 38 39 40 41 42 43 44 45 46 47 48 49 50
|
module Fog
module DNS
class PowerDNS
class Real
# DNS Notify all slaves of the zone
# Authoritative only, zone must be set up as master
# or slave (fails otherwise)
#
# ==== Parameters
# * server<~String> - server id
# * zone<~String> - zone name
#
# ==== Returns
# TODO: Untested
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'id': <~String>,
# * "name": <~String>,
# * 'type': <~String>,
# * 'url': <~String>,
# * 'kind': <~String>,
# * 'serial': <~Integer>,
# * 'notified_serial': <~Int>,
# * 'masters': <~Array,
# * 'dnssec': <~Boolean>,
# * 'nsec3param': <~String>,
# * 'nsec3narrow': <~Boolean>,
# * 'presigned': <~Boolean>,
# * 'soa_edit': '<~String>',
# * 'soa_edit_api': '<~String>',
# * 'account': '<~String>',
# * 'nameservers': <~Array>,
# * 'servers': <~Array>,
# * 'recursion_desired': <~Boolean>,
# * 'records': <~Array>,
# * 'comments': <~Array>,
# * status<~Integer> 200 when successful
def notify_zone(server, zone)
request(
:expects => 200,
:method => 'PUT',
:path => "/servers/#{server}/zones/#{zone}/notify"
)
end
end
end
end
end
|