Sha256: bd9e65bdf680999d2fcd01336d3423be36f673f145eb576f11e32cc564e3a1be
Contents?: true
Size: 855 Bytes
Versions: 5
Compression:
Stored size: 855 Bytes
Contents
module Fog module DNS class DNSimple class Real # Get the list of records for the specific domain. # # ==== Parameters # * domain<~String> - domain name or numeric ID # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * <~Array>: # * 'record'<~Hash> The representation of the record. def list_records(domain) request( :expects => 200, :method => "GET", :path => "/domains/#{domain}/records" ) end end class Mock def list_records(domain) response = Excon::Response.new response.status = 200 response.body = self.data[:records][domain] || [] response end end end end end
Version data entries
5 entries across 5 versions & 2 rubygems