Class: Fog::DNS::Slicehost::Record

Inherits:
Model
  • Object
show all
Extended by:
Fog::Deprecation
Defined in:
lib/fog/slicehost/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, #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.



22
23
24
25
26
# File 'lib/fog/slicehost/models/dns/record.rb', line 22

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

Instance Method Details

#active=(new_active) ⇒ Object



28
29
30
31
32
33
34
35
# File 'lib/fog/slicehost/models/dns/record.rb', line 28

def active=(new_active)
  attributes[:active] = case new_active
  when false, 'N'
    false
  when true, 'Y'
    true
  end
end

#destroyObject



37
38
39
40
41
# File 'lib/fog/slicehost/models/dns/record.rb', line 37

def destroy
  requires :identity
  connection.delete_record(identity)
  true
end

#saveObject



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/fog/slicehost/models/dns/record.rb', line 47

def save
  
  requires :name, :type, :value, :zone
  options = {}
  options[:active]  = active ? 'Y' : 'N'
  options[:aux]     = description if description
  options[:ttl]     = ttl if ttl
  if identity
    data = connection.update_record(identity, type, zone.id, name, value, options)
  else
    data = connection.create_record(type, zone.id, name, value, options)
  end
  merge_attributes(data.body)
  true
end

#zoneObject



43
44
45
# File 'lib/fog/slicehost/models/dns/record.rb', line 43

def zone
  @zone
end