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

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/dns/models/aws/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 Fog::Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Fog::Attributes::InstanceMethods

#_dump, #attributes, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

#initialize(attributes = {}) ⇒ Record

Returns a new instance of Record.



18
19
20
21
# File 'lib/fog/dns/models/aws/record.rb', line 18

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

Instance Method Details

#destroyObject



23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/fog/dns/models/aws/record.rb', line 23

def destroy
  requires :ip, :name, :ttl, :type, :zone
  options = {
    :action           => 'DELETE',
    :name             => name,
    :resource_records => [*ip],
    :ttl              => ttl,
    :type             => type
  }
  connection.change_resource_record_sets(zone.id, [options])
  true
end

#saveObject



40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/fog/dns/models/aws/record.rb', line 40

def save
  requires :ip, :name, :ttl, :type, :zone
  options = {
    :action           => 'CREATE',
    :name             => name,
    :resource_records => [*ip],
    :ttl              => ttl,
    :type             => type
  }
  data = connection.change_resource_record_sets(zone.id, [options]).body
  merge_attributes(data)
  true
end

#zoneObject



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

def zone
  @zone
end