Sha256: 67069c8738be064c55cdd4721652dd8e82d85d6f92994cc6d54c8f79cb62db9f
Contents?: true
Size: 483 Bytes
Versions: 39
Compression:
Stored size: 483 Bytes
Contents
module Fog module DNS class Rackspace class Real def list_records(domain_id, options={}) validate_path_fragment :domain_id, domain_id path = "domains/#{domain_id}/records" if !options.empty? path = path + '?' + array_to_query_string(options) end request( :expects => 200, :method => 'GET', :path => path ) end end end end end
Version data entries
39 entries across 37 versions & 6 rubygems