Sha256: 554f1d5842d0866b224a1ab39bd0b601bbdc285010e55cbbcd4289f6ed33103e

Contents?: true

Size: 837 Bytes

Versions: 61

Compression:

Stored size: 837 Bytes

Contents

require 'fog/core/collection'
require 'fog/dreamhost/models/dns/record'

module Fog
  module DNS
    class Dreamhost

      class Records < Fog::Collection

        model Fog::DNS::Dreamhost::Record

        def all(filter = {})
          clear
          if filter[:zone]
            data = service.list_records.body['data'].find_all { |r| r['zone'] == filter[:zone] }
          else
            data = service.list_records.body['data']
          end
          load(data)
        end

        def get(record_name)
          data = service.list_records.body['data'].find { |r| r['record'] == record_name }
          new(data)
        rescue Excon::Errors::NotFound
          nil
        end

      end

      def new(attributes = {})
        requires :zone
        super({ :zone => zone }.merge!(attributes))
      end

    end
  end
end

Version data entries

61 entries across 61 versions & 6 rubygems

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