1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/models/dns/zone.rb

49 lines
1.3 KiB
Ruby
Raw Normal View History

# require 'fog/aws/models/dns/records'
module Fog
module DNS
2015-01-02 12:34:40 -05:00
class AWS
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
service.delete_hosted_zone(identity)
true
end
def records
@records ||= begin
Fog::DNS::AWS::Records.new(
:zone => self,
:service => service
)
end
end
def save
requires :domain
options = {}
options[:caller_ref] = caller_reference if caller_reference
options[:comment] = description if description
data = service.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