Sha256: 4120c98489543c9ca1e5cb9eeec847f165ba6f991bf73259bb56b49e7eca0cd9

Contents?: true

Size: 1.69 KB

Versions: 43

Compression:

Stored size: 1.69 KB

Contents

module Fog
  module DNS
    class DNSMadeEasy
      class Real
        # Returns a record object representing the record with the specified id.
        #
        # ==== Parameters
        # * domain<~String>
        # * record_id<~Integer>
        # ==== 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> Record data
        #     * ttl<~Integer> Time to live. The amount of time a record will be cached before being refreshed. Default: 1800
        #     * 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 or record id is not found
        def get_record(domain, record_id)
          request(
            :expects  => 200,
            :method   => "GET",
            :path     => "/V1.2/domains/#{domain}/records/#{record_id}"
          )
        end
      end
    end
  end
end

Version data entries

43 entries across 41 versions & 6 rubygems

Version Path
fog-2.3.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-ifeel-2.2.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-2.2.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-2.1.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-1.42.1/lib/fog/dnsmadeeasy/requests/dns/get_record.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-1.42.1/lib/fog/dnsmadeeasy/requests/dns/get_record.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-1.42.1/lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-1.42.1 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-2.0.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-1.42.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-1.41.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-1.40.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-1.39.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-1.38.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-1.37.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-1.36.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-1.35.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-2.0.0.pre.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/dnsmadeeasy/requests/dns/get_record.rb
fog-1.34.0 lib/fog/dnsmadeeasy/requests/dns/get_record.rb