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/aws/models/dns/zone.rb

54 lines
1.3 KiB
Ruby
Raw Normal View History

2010-12-29 13:11:46 -08:00
require 'fog/core/model'
# require 'fog/aws/models/dns/records'
2010-12-29 13:11:46 -08:00
module Fog
module DNS
class AWS
2010-12-29 13:11:46 -08:00
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
2011-01-03 14:45:50 -08:00
@records ||= begin
Fog::DNS::AWS::Records.new(
2011-01-03 14:45:50 -08:00
:zone => self,
:connection => connection
)
end
2010-12-29 13:11:46 -08:00
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