Class: Fog::DNS::AWS::Record

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



25
26
27
# File 'lib/fog/aws/models/dns/record.rb', line 25

def initialize(attributes={})
  super
end

Instance Method Details

#destroyObject



29
30
31
32
33
# File 'lib/fog/aws/models/dns/record.rb', line 29

def destroy
  options = attributes_to_options('DELETE')
  service.change_resource_record_sets(zone.id, [options])
  true
end

#modify(new_attributes) ⇒ Object



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

def modify(new_attributes)
  options = []

  # Delete the current attributes
  options << attributes_to_options('DELETE')

  # Create the new attributes
  merge_attributes(new_attributes)
  options << attributes_to_options('CREATE')

  data = service.change_resource_record_sets(zone.id, options).body
  merge_attributes(data)
  true
end

#ready?Boolean

Returns true if record is insync. May only be called for newly created or modified records that have a change_id and status set.

Returns:

  • (Boolean)


64
65
66
67
# File 'lib/fog/aws/models/dns/record.rb', line 64

def ready?
  requires :change_id, :status
  status == 'INSYNC'
end

#reloadObject



69
70
71
72
73
74
75
76
77
78
# File 'lib/fog/aws/models/dns/record.rb', line 69

def reload
  # If we have a change_id (newly created or modified), then reload performs a get_change to update status.
  if change_id
    data = service.get_change(change_id).body
    merge_attributes(data)
    self
  else
    super
  end
end

#saveObject



39
40
41
42
43
44
45
# File 'lib/fog/aws/models/dns/record.rb', line 39

def save
  self.ttl ||= 3600
  options = attributes_to_options('CREATE')
  data = service.change_resource_record_sets(zone.id, [options]).body
  merge_attributes(data)
  true
end

#zoneObject



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

def zone
  @zone
end