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

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

Instance Attribute Summary

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

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, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

#initialize(attributes = {}) ⇒ Record

Returns a new instance of Record.



19
20
21
22
23
# File 'lib/fog/dns/models/slicehost/record.rb', line 19

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

Instance Method Details

#active=(new_active) ⇒ Object



25
26
27
28
29
30
31
32
# File 'lib/fog/dns/models/slicehost/record.rb', line 25

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

#destroyObject



34
35
36
37
38
# File 'lib/fog/dns/models/slicehost/record.rb', line 34

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

#saveObject

Raises:



44
45
46
47
48
49
50
51
52
53
54
# File 'lib/fog/dns/models/slicehost/record.rb', line 44

def save
  raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity
  requires :ip, :name, :type, :zone
  options = {}
  options[:active]  = active ? 'Y' : 'N'
  options[:aux]     = description if description
  options[:ttl]     = ttl if ttl
  data = connection.create_record(type, zone.id, name, ip, options)
  merge_attributes(data.body)
  true
end

#zoneObject



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

def zone
  @zone
end