1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/zerigo/requests/compute/get_zone.rb
Athir Nuaimi e081fac0b5 added support for 4 more zerigo dns methods: count_zones, get_zone, get_zone_stats, create_zone
items added but not yet tested.  Will continue to add the rest of the methods and then do a big testing cycle
2010-12-12 09:51:52 -05:00

41 lines
1.1 KiB
Ruby

module Fog
module Zerigo
class Compute
class Real
require 'fog/zerigo/parsers/compute/get_zone'
# Get details of a DNS zone. This response is similar to list_zones, with the
# addition of hosts-count and possibly hosts.
#
# ==== Parameters
# * zone<~String> - Either the zone ID or the zone name (ie sample-domain.com)
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'origin'<~String> - domain name to host (ie example.com)
# * 'id'<~Integer> - Id of the zone
# * 'ttl'<~Integer> - TimeToLive (ttl) for the domain, in seconds (> 60)
# * 'active'<~String> - whether zone is active in Slicehost DNS server - 'Y' or 'N'
def get_zone(zone)
request(
:expects => 200,
:method => 'GET',
:parser => Fog::Parsers::Zerigo::Compute::GetZone.new,
:path => "/api/1.1/zones/#{zone}.xml"
)
end
end
class Mock
def get_zone(zone)
Fog::Mock.not_implemented
end
end
end
end
end