Class: Fog::DNS::Linode::Zone

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

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Model

#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

#initialize(attributes = {}) ⇒ Zone

“STATUS”:1, “RETRY_SEC”:0, “MASTER_IPS”:“”, “EXPIRE_SEC”:0, “REFRESH_SEC”:0, “TTL_SEC”:0



25
26
27
28
# File 'lib/fog/linode/models/dns/zone.rb', line 25

def initialize(attributes={})
  self.type ||= 'master'
  super
end

Instance Method Details

#destroyObject



30
31
32
33
34
# File 'lib/fog/linode/models/dns/zone.rb', line 30

def destroy
  requires :identity
  service.domain_delete(identity)
  true
end

#nameserversObject



45
46
47
48
49
50
51
52
53
# File 'lib/fog/linode/models/dns/zone.rb', line 45

def nameservers
  [
    'ns1.linode.com',
    'ns2.linode.com',
    'ns3.linode.com',
    'ns4.linode.com',
    'ns5.linode.com'
  ]
end

#recordsObject



36
37
38
39
40
41
42
43
# File 'lib/fog/linode/models/dns/zone.rb', line 36

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

#saveObject



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/fog/linode/models/dns/zone.rb', line 55

def save
  requires :domain, :type
  requires :email if type == 'master'
  options = {}
  # * options<~Hash>
  #   * refresh_sec<~Integer> numeric, default: '0'
  #   * retry_sec<~Integer> numeric, default: '0'
  #   * expire_sec<~Integer> numeric, default: '0'
  #   * status<~Integer> 0, 1, or 2 (disabled, active, edit mode), default: 1
  #   * master_ips<~String> When type=slave, the zone's master DNS servers list, semicolon separated
  options[:description] = description if description
  options[:soa_email]   = email if email
  options[:ttl_sec]     = ttl if ttl
  response = unless identity
    service.domain_create(domain, type, options)
  else
    options[:domain]  = domain if domain
    options[:type]    = type if type
    service.domain_update(identity, options)
  end
  merge_attributes(response.body['DATA'])
  true
end