Class: Fog::DNS::Zerigo::Record

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



25
26
27
28
# File 'lib/rackspace-fog/zerigo/models/dns/record.rb', line 25

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

Instance Method Details

#destroyObject



30
31
32
33
34
# File 'lib/rackspace-fog/zerigo/models/dns/record.rb', line 30

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

#saveObject



40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/rackspace-fog/zerigo/models/dns/record.rb', line 40

def save
  requires :zone, :type, :value
  options = {}
  options[:hostname]  = name if name
  options[:notes]     = description if description
  options[:priority]  = priority if priority
  options[:ttl]       = ttl if ttl

  if identity
    options[:host_type] = type
    options[:data]      = value
    connection.update_host(identity, options)
  else
    data = connection.create_host(@zone.id, type, value, options)
    merge_attributes(data.body)
  end

  true
end

#zoneObject



36
37
38
# File 'lib/rackspace-fog/zerigo/models/dns/record.rb', line 36

def zone
  @zone
end