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/dnsimple/zone.rb

50 lines
1.1 KiB
Ruby

require 'fog/core/model'
require 'fog/dns/models/dnsimple/records'
module Fog
module DNSimple
class DNS
class Zone < Fog::Model
identity :id
attribute :domain, :aliases => 'name'
attribute :created_at
attribute :updated_at
def destroy
connection.delete_domain(identity)
true
end
def records
@records ||= begin
Fog::DNSimple::DNS::Records.new(
:zone => self,
:connection => connection
)
end
end
def nameservers
[
"ns1.dnsimple.com",
"ns2.dnsimple.com",
"ns3.dnsimple.com",
"ns4.dnsimple.com",
]
end
def save
requires :domain
data = connection.create_domain(domain).body["domain"]
merge_attributes(data)
true
end
end
end
end
end