mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
34 lines
831 B
Ruby
34 lines
831 B
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
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# * <~Array>:
|
|
# * 'domain'<~Hash> The representation of the domain.
|
|
def list_domains
|
|
request(
|
|
:expects => 200,
|
|
:method => 'GET',
|
|
:path => '/domains'
|
|
)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def list_domains
|
|
response = Excon::Response.new
|
|
response.status = 200
|
|
response.body = self.data[:domains]
|
|
response
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|