Class: Fog::DNS::Linode::Record
- Extended by:
- Fog::Deprecation
- Defined in:
- lib/fog/linode/models/dns/record.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
- #destroy ⇒ Object
-
#initialize(attributes = {}) ⇒ Record
constructor
“PROTOCOL”:“”, “WEIGHT”:0, “PORT”:0,.
- #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
“PROTOCOL”:“”, “WEIGHT”:0, “PORT”:0,
25 26 27 28 |
# File 'lib/fog/linode/models/dns/record.rb', line 25 def initialize(attributes={}) self.ttl ||= 3600 super end |
Instance Method Details
#destroy ⇒ Object
30 31 32 33 34 |
# File 'lib/fog/linode/models/dns/record.rb', line 30 def destroy requires :identity, :zone connection.domain_resource_delete(zone.id, identity) true end |
#save ⇒ Object
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/fog/linode/models/dns/record.rb', line 40 def save requires :type, :zone = {} # * options<~Hash> # * weight<~Integer>: default: 5 # * port<~Integer>: default: 80 # * protocol<~String>: The protocol to append to an SRV record. Ignored on other record # types. default: udp [:name] = name if name [:priority] = priority if priority [:target] = value if value [:ttl_sec] = ttl if ttl response = unless identity connection.domain_resource_create(zone.identity, type, ) else [:type] = type if type connection.domain_resource_update(zone.identity, identity, ) end merge_attributes(response.body['DATA']) true end |
#zone ⇒ Object
36 37 38 |
# File 'lib/fog/linode/models/dns/record.rb', line 36 def zone @zone end |