Class: Fog::DNS::DNSimple::Record

Inherits:
Model
  • Object
show all
Extended by:
Fog::Deprecation
Defined in:
lib/rackspace-fog/dnsimple/models/dns/record.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

Methods included from Fog::Deprecation

deprecate, self_deprecate

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 Attributes::InstanceMethods

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

Constructor Details

#initialize(attributes = {}) ⇒ Record

Returns a new instance of Record.



23
24
25
26
# File 'lib/rackspace-fog/dnsimple/models/dns/record.rb', line 23

def initialize(attributes={})
  self.ttl ||= 3600
  super
end

Instance Method Details

#destroyObject



28
29
30
31
# File 'lib/rackspace-fog/dnsimple/models/dns/record.rb', line 28

def destroy
  connection.delete_record(zone.domain, identity)
  true
end

#saveObject



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/rackspace-fog/dnsimple/models/dns/record.rb', line 37

def save
  requires :name, :type, :value
  options = {}
  options[:prio] = priority if priority
  options[:ttl]  = ttl if ttl

  # decide whether its a new record or update of an existing
  if id.nil?
    data = connection.create_record(zone.domain, name, type, value, options)
  else
    options[:name] = name if name
    options[:content] = value if value
    options[:type] = type if type
    data = connection.update_record(zone.domain, id, options)
  end
  
  merge_attributes(data.body["record"])
  true
end

#zoneObject



33
34
35
# File 'lib/rackspace-fog/dnsimple/models/dns/record.rb', line 33

def zone
  @zone
end