Class: Fog::Compute::OpenStack::Address

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/openstack/models/compute/address.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

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 Fog::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 = {}) ⇒ Address

Returns a new instance of Address.



16
17
18
19
20
# File 'lib/fog/openstack/models/compute/address.rb', line 16

def initialize(attributes = {})
  # assign server first to prevent race condition with persisted?
  self.server = attributes.delete(:server)
  super
end

Instance Method Details

#destroyObject



22
23
24
25
26
# File 'lib/fog/openstack/models/compute/address.rb', line 22

def destroy
  requires :id
  service.release_address(id)
  true
end

#saveObject

Raises:



36
37
38
39
40
41
42
43
44
45
# File 'lib/fog/openstack/models/compute/address.rb', line 36

def save
  raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
  data = service.allocate_address(pool).body['floating_ip']
  new_attributes = data.reject {|key,value| !['id', 'instance_id', 'ip', 'fixed_ip'].include?(key)}
  merge_attributes(new_attributes)
  if @server
    self.server = @server
  end
  true
end

#server=(new_server) ⇒ Object



28
29
30
31
32
33
34
# File 'lib/fog/openstack/models/compute/address.rb', line 28

def server=(new_server)
  if new_server
    associate(new_server)
  else
    disassociate
  end
end