Sha256: b199832de7af53ff52e19ac6bb1a7616fadb6b0e8f721dfe9960ec33fa423cc6
Contents?: true
Size: 1.54 KB
Versions: 11
Compression:
Stored size: 1.54 KB
Contents
module Fog module DNS class Zerigo class Real require 'fog/zerigo/parsers/dns/list_hosts' # Get list of all DNS zones hosted on Slicehost (for this account) # # ==== Parameters # * zone_id<~Integer> - the zone ID of the zone from which to get the host records for # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'hosts'<~Array> # * 'created-at'<~String> # * 'data'<~String> # * 'fqdn'<~String> # * 'host-type'<~String> # * 'hostname'<~String> # * 'id'<~Integer> # * 'notes'<~String> # * 'priority'<~Integer> # * 'ttl'<~Integer> # * 'updated-at'<~String> # * 'zone-id'<~String> # * 'status'<~Integer> - 200 indicates success def list_hosts(zone_id) request( :expects => 200, :method => 'GET', :parser => Fog::Parsers::DNS::Zerigo::ListHosts.new, :path => "/api/1.1/zones/#{zone_id}/hosts.xml" ) end end class Mock # :nodoc:all def list_hosts(zone_id) zone = find_by_zone_id(zone_id) response = Excon::Response.new if zone response.status = 200 response.body = { 'hosts' => zone['hosts'] } else response.status = 404 end response end end end end end
Version data entries
11 entries across 11 versions & 3 rubygems