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

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

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods included from Fog::Deprecation

deprecate, self_deprecate

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

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



25
26
27
# File 'lib/fog/linode/models/dns/record.rb', line 25

def initialize(attributes={})
  super
end

Instance Method Details

#destroyObject



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

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

#saveObject



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

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]    = value if value
  options[:ttl_sec]   = ttl if ttl
  response = unless identity
    service.domain_resource_create(zone.identity, type, options)
  else
    options[:type] = type if type
    service.domain_resource_update(zone.identity, identity, options)
  end
  merge_attributes(response.body['DATA'])
  true
end

#zoneObject



35
36
37
# File 'lib/fog/linode/models/dns/record.rb', line 35

def zone
  @zone
end