Sha256: 43800419b992f983ff233815a61bbe82223a0a326f473779f8316c10f84d914f

Contents?: true

Size: 826 Bytes

Versions: 67

Compression:

Stored size: 826 Bytes

Contents

module Fog
  module DNS
    class DNSimple
      class Real

        # Get the list of records for the specific domain.
        #
        # ==== Parameters
        # * domain<~String>
        # ==== Returns
        # * response<~Excon::Response>:
        #   * records<Array~>
        #     * name<~String>
        #     * ttl<~Integer>
        #     * created_at<~String>
        #     * special_type<~String>
        #     * updated_at<~String>
        #     * domain_id<~Integer>
        #     * id<~Integer>
        #     * content<~String>
        #     * record_type<~String>
        #     * prio<~Integer>
        def list_records(domain)
          request( :expects  => 200,
                   :method   => "GET",
                   :path     => "/domains/#{domain}/records" )
        end

      end
    end
  end
end

Version data entries

67 entries across 67 versions & 19 rubygems

Version Path
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/dns/requests/dnsimple/list_records.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/dns/requests/dnsimple/list_records.rb
fog-0.11.0 lib/fog/dns/requests/dnsimple/list_records.rb
fog-0.10.0 lib/fog/dns/requests/dnsimple/list_records.rb
fog4encbs-0.9.0.1 lib/fog/dns/requests/dnsimple/list_records.rb
fog4encbs-0.9.0 lib/fog/dns/requests/dnsimple/list_records.rb
fog-0.9.0 lib/fog/dns/requests/dnsimple/list_records.rb