Sha256: 131b4729b69a02f91c4080fea3abe10ca5e46439fa9bee16c42b86672c00f49f

Contents?: true

Size: 1.15 KB

Versions: 38

Compression:

Stored size: 1.15 KB

Contents

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

module Fog
  module DNS
    class Zerigo
      class Records < Fog::Collection
        attribute :zone

        model Fog::DNS::Zerigo::Record

        # List all domains
        # @param [Hash] options Options to pass to the underlying API call
        # @option options [String] :fqdn search for the given fqdn
        def all(options = {})
          requires :zone
          if options[:fqdn]
            hosts = service.find_hosts(options[:fqdn], zone.id).body['hosts']
            load(hosts)
          else
            parent = zone.collection.get(zone.identity)
            if parent
              merge_attributes(parent.records.attributes)
              load(parent.records.map {|record| record.attributes})
            else
              nil
            end
          end
        end

        def get(record_id)
          data = service.get_host(record_id).body
          new(data)
        rescue Fog::Service::NotFound
          nil
        end

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

Version data entries

38 entries across 36 versions & 5 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-1.42.1/lib/fog/zerigo/models/dns/records.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-1.42.1/lib/fog/zerigo/models/dns/records.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-1.42.1/lib/fog/zerigo/models/dns/records.rb
fog-1.42.1 lib/fog/zerigo/models/dns/records.rb
fog-1.42.0 lib/fog/zerigo/models/dns/records.rb
fog-1.41.0 lib/fog/zerigo/models/dns/records.rb
fog-1.40.0 lib/fog/zerigo/models/dns/records.rb
fog-1.39.0 lib/fog/zerigo/models/dns/records.rb
fog-1.38.0 lib/fog/zerigo/models/dns/records.rb
fog-1.37.0 lib/fog/zerigo/models/dns/records.rb
fog-1.36.0 lib/fog/zerigo/models/dns/records.rb
fog-1.35.0 lib/fog/zerigo/models/dns/records.rb
fog-2.0.0.pre.0 lib/fog/zerigo/models/dns/records.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/zerigo/models/dns/records.rb
fog-1.34.0 lib/fog/zerigo/models/dns/records.rb
fog-1.33.0 lib/fog/zerigo/models/dns/records.rb
fog-1.32.0 lib/fog/zerigo/models/dns/records.rb
fog-1.31.0 lib/fog/zerigo/models/dns/records.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/zerigo/models/dns/records.rb
fog-1.30.0 lib/fog/zerigo/models/dns/records.rb