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

51 lines
963 B
Ruby
Raw Normal View History

2011-02-24 20:14:50 -05:00
require 'fog/core/model'
require 'fog/dnsimple/models/dns/records'
2011-02-24 20:14:50 -05:00
module Fog
module DNS
class DNSimple
2011-02-24 20:14:50 -05:00
class Zone < Fog::Model
2011-02-25 00:13:16 -05:00
identity :id
2011-02-24 20:14:50 -05:00
attribute :domain, :aliases => 'name'
2011-02-24 20:14:50 -05:00
attribute :created_at
attribute :updated_at
def destroy
connection.delete_domain(identity)
true
end
def records
@records ||= begin
Fog::DNS::DNSimple::Records.new(
:zone => self,
:connection => connection
)
end
2011-02-24 20:14:50 -05:00
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"]
2011-02-25 00:13:16 -05:00
merge_attributes(data)
2011-02-24 20:14:50 -05:00
true
end
end
end
end
end