Sha256: ec59e66df506f8c1ac75bf3f23b3e5a6e7a38b1f34d9eb35e94169b6aeb697ef
Contents?: true
Size: 759 Bytes
Versions: 39
Compression:
Stored size: 759 Bytes
Contents
module Fog module DNS class Rackspace class Real def list_domain_details(domain_id, options={}) validate_path_fragment :domain_id, domain_id path = "domains/#{domain_id}" query_data = {} if options.key? :show_records query_data['showRecords'] = options[:show_records] end if options.key? :show_subdomains query_data['showSubdomains'] = options[:show_subdomains] end if !query_data.empty? path = path + '?' + array_to_query_string(query_data) end request( :expects => 200, :method => 'GET', :path => path ) end end end end end
Version data entries
39 entries across 37 versions & 6 rubygems