Class: Fog::DNS::DNSimple::Record
- Extended by:
- Fog::Deprecation
- Defined in:
- lib/fog/dnsimple/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 Core::DeprecatedConnectionAccessors
#connection, #connection=, #prepare_service_value
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
#initialize(attributes = {}) ⇒ Record
Returns a new instance of Record.
23 24 25 |
# File 'lib/fog/dnsimple/models/dns/record.rb', line 23 def initialize(attributes={}) super end |
Instance Method Details
#destroy ⇒ Object
27 28 29 30 |
# File 'lib/fog/dnsimple/models/dns/record.rb', line 27 def destroy service.delete_record(zone.domain, identity) true end |
#save ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/fog/dnsimple/models/dns/record.rb', line 36 def save requires :name, :type, :value = {} [:prio] = priority if priority [:ttl] = ttl if ttl # decide whether its a new record or update of an existing if id.nil? data = service.create_record(zone.domain, name, type, value, ) else [:name] = name if name [:content] = value if value [:type] = type if type data = service.update_record(zone.domain, id, ) end merge_attributes(data.body["record"]) true end |
#zone ⇒ Object
32 33 34 |
# File 'lib/fog/dnsimple/models/dns/record.rb', line 32 def zone @zone end |