Sha256: 23b4bed4f76f6aaea5bbb9fd022b970c9e29c198c1fe6d8a24ef455a04ccdaa2

Contents?: true

Size: 836 Bytes

Versions: 5

Compression:

Stored size: 836 Bytes

Contents

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

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.21.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.20.0 lib/fog/dnsimple/requests/dns/list_domains.rb