Class: Fog::DNS::DNSMadeEasy::Record

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

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

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 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 = {}) ⇒ Record

Returns a new instance of Record.



27
28
29
# File 'lib/fog/dnsmadeeasy/models/dns/record.rb', line 27

def initialize(attributes={})
  super
end

Instance Method Details

#destroyObject



31
32
33
34
# File 'lib/fog/dnsmadeeasy/models/dns/record.rb', line 31

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

#saveObject



40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/fog/dnsmadeeasy/models/dns/record.rb', line 40

def save
  self.ttl ||= 1800
  requires :name, :type, :value, :ttl
  options = {}
  options[:ttl]  = ttl if ttl
  options[:gtdLocation]  = gtd_location if gtd_location

  if type.upcase == 'A'
    options[:password]  = password if password
  end

  if type.upcase == 'HTTPRED'
    options[:description]  = description if description
    options[:keywords]  = keywords if keywords
    options[:title]  = title if title
    options[:redirectType]  = redirect_type if redirect_type
    options[:hardLink]  = hard_link if hard_link
  end

  if id.nil?
    data = service.create_record(zone.domain, name, type, value, options).body
    merge_attributes(data)
  else
    options.merge!(:name => name, :type => type, :data => value)
    service.update_record(zone.domain, id, options).body
  end

  true
end

#zoneObject



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

def zone
  @zone
end