Class: Fog::DNS::AWS::Record
- Extended by:
- Fog::Deprecation
- Defined in:
- lib/fog/aws/models/dns/record.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
- #destroy ⇒ Object
-
#initialize(attributes = {}) ⇒ Record
constructor
A new instance of Record.
- #modify(new_attributes) ⇒ Object
- #save ⇒ Object
- #zone ⇒ Object
Methods included from Fog::Deprecation
Methods inherited from Model
#inspect, #reload, #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.
20 21 22 23 |
# File 'lib/fog/aws/models/dns/record.rb', line 20 def initialize(attributes={}) self.ttl ||= 3600 super end |
Instance Method Details
#destroy ⇒ Object
25 26 27 28 29 |
# File 'lib/fog/aws/models/dns/record.rb', line 25 def destroy = ('DELETE') connection.change_resource_record_sets(zone.id, []) true end |
#modify(new_attributes) ⇒ Object
42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/fog/aws/models/dns/record.rb', line 42 def modify(new_attributes) = [] # Delete the current attributes << ('DELETE') # Create the new attributes merge_attributes(new_attributes) << ('CREATE') data = connection.change_resource_record_sets(zone.id, ).body merge_attributes(data) true end |
#save ⇒ Object
35 36 37 38 39 40 |
# File 'lib/fog/aws/models/dns/record.rb', line 35 def save = ('CREATE') data = connection.change_resource_record_sets(zone.id, []).body merge_attributes(data) true end |
#zone ⇒ Object
31 32 33 |
# File 'lib/fog/aws/models/dns/record.rb', line 31 def zone @zone end |