Dreamhost API has no concept of 'Zone', but we can emulate it.
There's no destroy API call
# File lib/fog/dreamhost/models/dns/zone.rb, line 22 def destroy raise NotImplementedError.new end
Return the Dreamhost nameserver list
# File lib/fog/dreamhost/models/dns/zone.rb, line 40 def nameservers [ "ns1.dreamhost.com", "ns2.dreamhost.com", "ns3.dreamhost.com", ] end
Return a list of records for this zone
Since Dreamhost does not support zones, this is emulated. Iterates over all the records and discards the ones where Record.zone != domain (the current zone domain)
# File lib/fog/dreamhost/models/dns/zone.rb, line 33 def records service.records.all :zone => domain end
Generated with the Darkfish Rdoc Generator 2.