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

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

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Record

Returns a new instance of Record.



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

def initialize(attributes={})
  super
end

Instance Method Details

#destroyObject



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

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

#modify(new_attributes) ⇒ Object



51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/fog/aws/models/dns/record.rb', line 51

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)


68
69
70
71
# File 'lib/fog/aws/models/dns/record.rb', line 68

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

#reloadObject



73
74
75
76
77
78
79
80
81
82
# File 'lib/fog/aws/models/dns/record.rb', line 73

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



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

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

#zoneObject



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

def zone
  @zone
end