Class: Fog::Zerigo::DNS::Record
- Defined in:
- lib/fog/dns/models/zerigo/record.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
- #destroy ⇒ Object
-
#initialize(attributes = {}) ⇒ Record
constructor
A new instance of Record.
- #save ⇒ Object
- #zone ⇒ Object
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, #identity, #identity=, #merge_attributes, #new_record?, #requires
Constructor Details
#initialize(attributes = {}) ⇒ Record
Returns a new instance of Record.
22 23 24 25 |
# File 'lib/fog/dns/models/zerigo/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/dns/models/zerigo/record.rb', line 27 def destroy requires :identity connection.delete_host(identity) true end |
#save ⇒ Object
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/fog/dns/models/zerigo/record.rb', line 37 def save requires :zone, :type, :ip = {} [:hostname] = name if name [:notes] = description if description [:priority] = priority if priority [:ttl] = ttl if ttl data = unless identity connection.create_host(@zone.id, type, ip, ) else [:host_type] = type [:data] = data connection.update_host(identity, ) end merge_attributes(data.body) true end |
#zone ⇒ Object
33 34 35 |
# File 'lib/fog/dns/models/zerigo/record.rb', line 33 def zone @zone end |