Sha256: aa175cca07e66764c3ef7a66ce47728aeac107cb41ccbccb7df34d0a726b9733

Contents?: true

Size: 1.29 KB

Versions: 16

Compression:

Stored size: 1.29 KB

Contents

require 'fog/core/model'
# require 'fog/dns/models/aws/records'

module Fog
  module AWS
    class DNS

      class Zone < Fog::Model

        identity :id,                 :aliases => 'Id'

        attribute :caller_reference,  :aliases => 'CallerReference'
        attribute :change_info,       :aliases => 'ChangeInfo'
        attribute :description,       :aliases => 'Comment'
        attribute :domain,            :aliases => 'Name'
        attribute :nameservers,       :aliases => 'NameServers'

        def destroy
          requires :identity
          connection.delete_hosted_zone(identity)
          true
        end

        def records
          @records ||= begin
            Fog::AWS::DNS::Records.new(
              :zone       => self,
              :connection => connection
            )
          end
        end

        def save
          requires :domain
          options = {}
          options[:caller_ref]  = caller_reference if caller_reference
          options[:comment]     = description if description
          data = connection.create_hosted_zone(domain, options).body
          merge_attributes(data)
          true
        end

        private

        define_method(:HostedZone=) do |new_hosted_zone|
          merge_attributes(new_hosted_zone)
        end

      end

    end
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
fog-0.8.2 lib/fog/dns/models/aws/zone.rb
fog-0.8.1 lib/fog/dns/models/aws/zone.rb
fog-0.8.0 lib/fog/dns/models/aws/zone.rb
fog-0.7.2 lib/fog/dns/models/aws/zone.rb
fog-0.7.1 lib/fog/dns/models/aws/zone.rb
fog-0.7.0 lib/fog/dns/models/aws/zone.rb
fog-0.6.0 lib/fog/dns/models/aws/zone.rb
fog-0.5.3 lib/fog/dns/models/aws/zone.rb
fog-0.5.2 lib/fog/dns/models/aws/zone.rb
fog-0.5.1 lib/fog/dns/models/aws/zone.rb
fog-0.5.0 lib/fog/dns/models/aws/zone.rb
phpfog-fog-0.4.1.3 lib/fog/dns/models/aws/zone.rb
phpfog-fog-0.4.1.2 lib/fog/dns/models/aws/zone.rb
phpfog-fog-0.4.1.1 lib/fog/dns/models/aws/zone.rb
phpfog-fog-0.4.1 lib/fog/dns/models/aws/zone.rb
fog-0.4.1 lib/fog/dns/models/aws/zone.rb