Sha256: 9d29f57eb79fbeccf2835d62f5687597ed807e0df7d24efa39dd0b4458c54fad

Contents?: true

Size: 831 Bytes

Versions: 30

Compression:

Stored size: 831 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

30 entries across 30 versions & 4 rubygems

Version Path
fog-1.38.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.37.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.36.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.35.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-2.0.0.pre.0 lib/fog/dnsimple/requests/dns/list_domains.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.34.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.33.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.32.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.31.0 lib/fog/dnsimple/requests/dns/list_domains.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.30.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.29.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.28.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.27.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.26.0 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.25.0 lib/fog/dnsimple/requests/dns/list_domains.rb
nsidc-fog-1.24.1 lib/fog/dnsimple/requests/dns/list_domains.rb
fog-1.24.0 lib/fog/dnsimple/requests/dns/list_domains.rb
ns-fog-1.22.11 lib/fog/dnsimple/requests/dns/list_domains.rb