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

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

Instance Attribute Summary

Attributes inherited from Model

#collection, #connection

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 Attributes::InstanceMethods

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

Constructor Details

#initialize(attributes = {}) ⇒ Address

Returns a new instance of Address.



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

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

Instance Method Details

#destroyObject



22
23
24
25
26
27
# File 'lib/rackspace-fog/aws/models/compute/address.rb', line 22

def destroy
  requires :public_ip

  connection.release_address(public_ip)
  true
end

#saveObject

Raises:



41
42
43
44
45
46
47
48
49
50
# File 'lib/rackspace-fog/aws/models/compute/address.rb', line 41

def save
  raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity
  data = connection.allocate_address(domain).body
  new_attributes = data.reject {|key,value| key == 'requestId'}
  merge_attributes(new_attributes)
  if @server
    self.server = @server
  end
  true
end

#serverObject



37
38
39
# File 'lib/rackspace-fog/aws/models/compute/address.rb', line 37

def server
  connection.servers.get(server_id)
end

#server=(new_server) ⇒ Object



29
30
31
32
33
34
35
# File 'lib/rackspace-fog/aws/models/compute/address.rb', line 29

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