Sha256: bd9e65bdf680999d2fcd01336d3423be36f673f145eb576f11e32cc564e3a1be

Contents?: true

Size: 855 Bytes

Versions: 5

Compression:

Stored size: 855 Bytes

Contents

module Fog
  module DNS
    class DNSimple
      class Real

        # Get the list of records for the specific domain.
        #
        # ==== Parameters
        # * domain<~String> - domain name or numeric ID
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * <~Array>:
        #       * 'record'<~Hash> The representation of the record.
        def list_records(domain)
          request(
            :expects  => 200,
            :method   => "GET",
            :path     => "/domains/#{domain}/records"
          )
        end

      end

      class Mock

        def list_records(domain)
          response = Excon::Response.new
          response.status = 200
          response.body = self.data[:records][domain] || []
          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_records.rb
fog-1.21.0 lib/fog/dnsimple/requests/dns/list_records.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/dnsimple/requests/dns/list_records.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/dnsimple/requests/dns/list_records.rb
fog-1.20.0 lib/fog/dnsimple/requests/dns/list_records.rb