1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/dns/models/aws/zone.rb
2011-01-14 10:41:12 -08:00

53 lines
1.3 KiB
Ruby

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