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

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

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Model

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

Methods included from Attributes::ClassMethods

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

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



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

def destroy
  service.delete_domain(identity)
  true
end

#nameserversObject



30
31
32
33
34
35
36
37
# File 'lib/fog/dnsimple/models/dns/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/dnsimple/models/dns/zone.rb', line 21

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

#saveObject



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

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