mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
54 lines
1.3 KiB
Ruby
54 lines
1.3 KiB
Ruby
|
require 'fog/core/model'
|
||
|
# require 'fog/aws/models/dns/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::Linode::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
|