Class: Fog::DNS::Rackspace::Record

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

#initialize, #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

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



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

def destroy
  requires :zone, :identity
  wait_for_job service.remove_record(@zone.identity, identity).body['jobId']
  true
end

#saveObject



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

def save
  if persisted?
    update
  else
    create
  end
end

#zoneObject



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

def zone
  @zone
end