Class: Fog::DNSimple::DNS::Zone

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/dns/models/dnsimple/zone.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

Methods inherited from Model

#initialize, #inspect, #reload, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



16
17
18
19
# File 'lib/fog/dns/models/dnsimple/zone.rb', line 16

def destroy
  connection.delete_domain(identity)
  true
end

#nameserversObject



30
31
32
33
34
35
36
37
# File 'lib/fog/dns/models/dnsimple/zone.rb', line 30

def nameservers
  [
   "ns1.dnsimple.com",
   "ns2.dnsimple.com",
   "ns3.dnsimple.com",
   "ns4.dnsimple.com",
  ]
end

#recordsObject



21
22
23
24
25
26
27
28
# File 'lib/fog/dns/models/dnsimple/zone.rb', line 21

def records
  @records ||= begin
                 Fog::DNSimple::DNS::Records.new(
                                            :zone       => self,
                                            :connection => connection
                                            )
               end
end

#saveObject



39
40
41
42
43
44
# File 'lib/fog/dns/models/dnsimple/zone.rb', line 39

def save
  requires :domain
  data = connection.create_domain(domain).body["domain"]
  merge_attributes(data)
  true
end