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
-
#ready? ⇒ Boolean
Returns true if record is insync.
- #reload ⇒ Object
- #save ⇒ Object
- #zone ⇒ Object
Methods included from Fog::Deprecation
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 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.
22 23 24 25 |
# File 'lib/fog/aws/models/dns/record.rb', line 22 def initialize(attributes={}) self.ttl ||= 3600 super end |
Instance Method Details
#destroy ⇒ Object
27 28 29 30 31 |
# File 'lib/fog/aws/models/dns/record.rb', line 27 def destroy = ('DELETE') connection.change_resource_record_sets(zone.id, []) true end |
#modify(new_attributes) ⇒ Object
44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/fog/aws/models/dns/record.rb', line 44 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 |
#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.
61 62 63 64 |
# File 'lib/fog/aws/models/dns/record.rb', line 61 def ready? requires :change_id, :status status == 'INSYNC' end |
#reload ⇒ Object
66 67 68 69 70 71 72 73 74 75 |
# File 'lib/fog/aws/models/dns/record.rb', line 66 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 = connection.get_change(change_id).body merge_attributes(data) self else super end end |
#save ⇒ Object
37 38 39 40 41 42 |
# File 'lib/fog/aws/models/dns/record.rb', line 37 def save = ('CREATE') data = connection.change_resource_record_sets(zone.id, []).body merge_attributes(data) true end |
#zone ⇒ Object
33 34 35 |
# File 'lib/fog/aws/models/dns/record.rb', line 33 def zone @zone end |