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

51 lines
1.1 KiB
Ruby
Raw Normal View History

2011-02-24 20:14:50 -05:00
require 'fog/core/model'
require 'fog/dns/models/dnsimple/records'
module Fog
module DNSimple
class DNS
class Zone < Fog::Model
2011-02-25 00:13:16 -05:00
identity :id
2011-02-24 20:14:50 -05:00
2011-02-25 14:25:59 -05:00
attribute :domain, :aliases => [:name, '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::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"]
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