Sha256: f66e0c1ac2f15d95cd3c9f45ac53a76ced2be4d7eaf78ec956a694b6693ed072

Contents?: true

Size: 1.77 KB

Versions: 37

Compression:

Stored size: 1.77 KB

Contents

module Fog
  module HP
    class DNS
      class Real
        # List DNS records for a given domain
        #
        # ==== Parameters
        # * 'domain_id'<~String> - UUId of domain for record
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'records'<~Array>:
        #       * 'id'<~String> - UUID of the record
        #       * 'name'<~String> - Name of the record
        #       * 'description'<~String> - Description for the record
        #       * 'type'<~String> - Type of the record
        #       * 'domain_id'<~String> - UUID of the domain
        #       * 'ttl'<~Integer> - TTL of the record
        #       * 'data'<~String> - Data required by the record
        #       * 'priority'<~Integer> - Priority for the record
        #       * 'created_at'<~String> - created date time stamp
        #       * 'updated_at'<~String> - updated date time stamp
        def list_records_in_a_domain(domain_id)
          request(
              :expects => 200,
              :method  => 'GET',
              :path    => "domains/#{domain_id}/records"
          )
        end

      end
      class Mock
        def list_records_in_a_domain(domain_id)
          response = Excon::Response.new
          if domain = list_domains.body['domains'].detect { |_| _['id'] == domain_id }
            response.status = 200
            response.body = { 'records' => records_for_domain(domain_id) }
          else
            raise Fog::HP::DNS::NotFound
          end
          response
        end

        def records_for_domain(domain_id)
          rdata = data[:records].select { |_,v| v['domain_id'] == domain_id}
          records = []
          rdata.each { |_,v| records << v }
          records
        end
      end

    end
  end
end

Version data entries

37 entries across 37 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-1.21.0 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-1.20.0 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-1.19.0 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/hp/requests/dns/list_records_in_a_domain.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/hp/requests/dns/list_records_in_a_domain.rb