Class: Fog::DNS::DNSMadeEasy::Record
- Extended by:
- Fog::Deprecation
- Defined in:
- lib/fog/dnsmadeeasy/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.
- #save ⇒ Object
- #zone ⇒ Object
Methods included from Fog::Deprecation
Methods inherited from Model
#inspect, #reload, #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.
27 28 29 30 |
# File 'lib/fog/dnsmadeeasy/models/dns/record.rb', line 27 def initialize(attributes={}) self.ttl ||= 1800 super end |
Instance Method Details
#destroy ⇒ Object
32 33 34 35 |
# File 'lib/fog/dnsmadeeasy/models/dns/record.rb', line 32 def destroy connection.delete_record(zone.domain, identity) true end |
#save ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/fog/dnsmadeeasy/models/dns/record.rb', line 41 def save requires :name, :type, :value, :ttl = {} [:ttl] = ttl if ttl [:gtdLocation] = gtd_location if gtd_location if type.upcase == 'A' [:password] = password if password end if type.upcase == 'HTTPRED' [:description] = description if description [:keywords] = keywords if keywords [:title] = title if title [:redirectType] = redirect_type if redirect_type [:hardLink] = hard_link if hard_link end if id.nil? data = connection.create_record(zone.domain, name, type, value, ).body merge_attributes(data) else .merge!(:name => name, :type => type, :data => value) connection.update_record(zone.domain, id, ).body end true end |
#zone ⇒ Object
37 38 39 |
# File 'lib/fog/dnsmadeeasy/models/dns/record.rb', line 37 def zone @zone end |