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

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

Instance Attribute Summary

Attributes inherited from Model

#project

Instance Method Summary collapse

Methods inherited from Model

#create, #update

Constructor Details

#initialize(attributes = {}) ⇒ Address

Returns a new instance of Address.



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

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

Instance Method Details

#destroyObject



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

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

#saveObject

Raises:

  • (Fog::Errors::Error)


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

def save
  raise Fog::Errors::Error, '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



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

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