Sha256: cb00c47929da076bf60fe913ec334f1b54fdf29842eea6fa44856308afce9d90

Contents?: true

Size: 1.9 KB

Versions: 111

Compression:

Stored size: 1.9 KB

Contents

module Fog
  module DNS
    class DNSMadeEasy
      class Real

        # Returns a list of record objects containing all records for the specified domain
        #
        # ==== Parameters
        # * domain<~String>
        # * options<~Hash>
        #   * gtdLocation<~String> Global Traffic Director location. Values: DEFAULT, US_EAST, US_WEST, EUROPE
        #   * type<~String> Record type. Values: A, AAAA, CNAME, HTTPRED, MX, NS, PTR, SRV, TXT
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * id<~Integer> Unique record identifier
        #     * name<~String> Record name.
        #     * type<~String> Record type. Values: A, AAAA, CNAME, HTTPRED, MX, NS, PTR, SRV, TXT
        #     * data<~String>
        #     * ttl<~Integer> Time to live. The amount of time a record will be cached before being refreshed.
        #     * gtdLocation<~String> Global Traffic Director location. Values: DEFAULT, US_EAST, US_WEST, EUROPE
        #     * password<~String> For A records. Password used to authenticate for dynamic DNS.
        #     * description<~String> For HTTPRED records. A description of the HTTPRED record.
        #     * keywords<~String> For HTTPRED records. Keywords associated with the HTTPRED record.
        #     * title<~String> For HTTPRED records. The title of the HTTPRED record.
        #     * redirectType<~String> For HTTPRED records. Type of redirection performed. Values: Hidden Frame Masked, Standard - 302, Standard - 301
        #     * hardLink<~Boolean> For HTTPRED records.
        #   * status<~Integer> - 200 - OK, 404 - specified domain name is not found
        def list_records(domain, options = {})
          request(
            :expects  => 200,
            :method   => "GET",
            :path     => "/V1.2/domains/#{domain}/records",
            :query    => options
          )
        end

      end
    end
  end
end

Version data entries

111 entries across 111 versions & 19 rubygems

Version Path
fog-maestrodev-1.18.0.20131209090811 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
gapinc-fog-1.12.1.2.1 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-1.18.0 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-1.17.0 lib/fog/dnsmadeeasy/requests/dns/list_records.rb
fog-1.16.0 lib/fog/dnsmadeeasy/requests/dns/list_records.rb