Class: Fog::AWS::Compute::Address

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

Instance Attribute Summary

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

Methods inherited from Model

#inspect, #reload, #to_json, #wait_for

Methods included from Fog::Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Fog::Attributes::InstanceMethods

#_dump, #attributes, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

#initialize(attributes = {}) ⇒ Address

Returns a new instance of Address.



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

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

Instance Method Details

#destroyObject



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

def destroy
  requires :public_ip

  connection.release_address(public_ip)
  true
end

#saveObject

Raises:



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

def save
  raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity
  data = connection.allocate_address.body
  new_attributes = data.reject {|key,value| key == 'requestId'}
  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/compute/models/aws/address.rb', line 26

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