module Fog module DNS class Rage4 class Real # Get the details for a specific domain in your account. # ==== Parameters # * id<~Integer> - numeric ID # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'id'<~Integer> # * 'name'<~String> # * 'owner_email'<~String> # * 'type'<~Integer> # * 'subnet_mask'<~Integer> def get_domain(id) request( :expects => 200, :method => 'GET', :path => "/rapi/getdomain/#{id}" ) end end end end end