Class: Fog::Linode::DNS::Record

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/dns/models/linode/record.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

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

“PROTOCOL”:“”, “WEIGHT”:0, “PORT”:0,



22
23
24
25
# File 'lib/fog/dns/models/linode/record.rb', line 22

def initialize(attributes={})
  self.ttl    ||= 3600
  super
end

Instance Method Details

#destroyObject



27
28
29
30
31
# File 'lib/fog/dns/models/linode/record.rb', line 27

def destroy
  requires :identity, :zone
  connection.domain_resource_delete(zone.id, identity)
  true
end

#saveObject



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/fog/dns/models/linode/record.rb', line 37

def save
  requires :type, :zone
  options = {}
  # * 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
  options[:name]      = name if name
  options[:priority]  = priority if priority
  options[:target]    = ip if ip
  options[:ttl_sec]   = ttl if ttl
  response = unless identity
    connection.domain_resource_create(zone.identity, type, options)
  else
    options[:type] = type if type
    connection.domain_resource_update(zone.identity, identity, options)
  end
  merge_attributes(response.body['DATA'])
  true
end

#zoneObject



33
34
35
# File 'lib/fog/dns/models/linode/record.rb', line 33

def zone
  @zone
end