Class: Fog::DNS::Bluebox::Record

Inherits:
Model
  • Object
show all
Extended by:
Fog::Deprecation
Defined in:
lib/fog/bluebox/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

Returns a new instance of Record.



20
21
22
# File 'lib/fog/bluebox/models/dns/record.rb', line 20

def initialize(attributes={})
  super
end

Instance Method Details

#destroyObject



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

def destroy
  requires :identity
  service.delete_record(@zone.identity, identity)
  true
end

#saveObject



34
35
36
37
38
39
40
41
42
43
# File 'lib/fog/bluebox/models/dns/record.rb', line 34

def save
  requires :zone, :type, :name, :value
  data = unless identity
    service.create_record(zone.identity, type, name, value)
  else
    service.update_record(zone.identity, identity, {:type => type, :name => name, :content => value})
  end
  merge_attributes(data.body)
  true
end

#zoneObject



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

def zone
  @zone
end