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, #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.



21
22
23
24
# File 'lib/fog/aws/models/dns/record.rb', line 21

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

Instance Method Details

#destroyObject



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

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

#modify(new_attributes) ⇒ Object



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

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 = connection.change_resource_record_sets(zone.id, options).body
  merge_attributes(data)
  true
end

#saveObject



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

def save
  options = attributes_to_options('CREATE')
  data = connection.change_resource_record_sets(zone.id, [options]).body
  merge_attributes(data)
  true
end

#zoneObject



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

def zone
  @zone
end