1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/dnsimple/requests/dns/get_domain.rb
Simone Carletti 49a46b4513 Cleanup documentation and resource representations
Remove deprecated attributes and make the documentation more consistent.
2014-01-16 23:21:31 +01:00

43 lines
No EOL
1 KiB
Ruby

module Fog
module DNS
class DNSimple
class Real
# Get the details for a specific domain in your account. You
# may pass either the domain numeric ID or the domain name
# itself.
#
# ==== Parameters
# * domain<~String> - domain name or numeric ID
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'domain'<~Hash> The representation of the domain.
def get_domain(domain)
request(
:expects => 200,
:method => "GET",
:path => "/domains/#{domain}"
)
end
end
class Mock
def get_domain(id)
domain = self.data[:domains].detect do |domain|
domain["domain"]["id"] == id || domain["domain"]["name"] == id
end
response = Excon::Response.new
response.status = 200
response.body = domain
response
end
end
end
end
end