2010-12-11 20:01:33 -05:00
|
|
|
module Fog
|
2011-06-21 16:03:33 -04:00
|
|
|
module DNS
|
|
|
|
class Zerigo
|
2010-12-11 20:01:33 -05:00
|
|
|
class Real
|
|
|
|
|
2011-08-24 15:40:47 -04:00
|
|
|
require 'fog/zerigo/parsers/dns/list_zones'
|
2010-12-11 20:01:33 -05:00
|
|
|
|
|
|
|
# Get list of all DNS zones hosted on Slicehost (for this account)
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
2010-12-12 21:18:21 -05:00
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'zones'<~Array>
|
|
|
|
# * 'default-ttl'<~Integer>
|
|
|
|
# * 'id'<~Integer>
|
|
|
|
# * 'nx-ttl'<~Integer>
|
|
|
|
# * 'hosts-count'<~Integer>
|
|
|
|
# * 'created-at'<~String>
|
|
|
|
# * 'custom-nameservers'<~String>
|
|
|
|
# * 'custom-ns'<~String>
|
|
|
|
# * 'domain'<~String>
|
|
|
|
# * 'hostmaster'<~String>
|
|
|
|
# * 'notes'<~String>
|
|
|
|
# * 'ns1'<~String>
|
|
|
|
# * 'ns-type'<~String>
|
|
|
|
# * 'slave-nameservers'<~String>
|
|
|
|
# * 'tag-list'<~String>
|
|
|
|
# * 'updated-at'<~String>
|
|
|
|
# * 'hosts'<~String>
|
|
|
|
# * 'axfr-ips'<~String>
|
|
|
|
# * 'restrict-axfr'<~String>
|
2010-12-13 08:51:04 -05:00
|
|
|
# * 'status'<~Integer> - 200 indicates success
|
2010-12-11 20:01:33 -05:00
|
|
|
def list_zones
|
|
|
|
request(
|
|
|
|
:expects => 200,
|
|
|
|
:method => 'GET',
|
2011-06-21 17:49:02 -04:00
|
|
|
:parser => Fog::Parsers::DNS::Zerigo::ListZones.new,
|
2010-12-11 20:01:33 -05:00
|
|
|
:path => '/api/1.1/zones.xml'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2011-10-08 20:19:32 -04:00
|
|
|
|
|
|
|
class Mock # :nodoc:all
|
|
|
|
|
|
|
|
def list_zones
|
|
|
|
response = Excon::Response.new
|
|
|
|
|
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
'zones' => self.data[:zones]
|
|
|
|
}
|
|
|
|
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2010-12-11 20:01:33 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|