Class: Fog::AWS::EC2::Address

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

Instance Attribute Summary

Attributes inherited from Model

#connection

Instance Method Summary collapse

Methods inherited from Model

#_dump, _load, aliases, attribute, attributes, #attributes, #collection, identity, #identity, #initialize, #inspect, #merge_attributes, #new_record?, #reload, #requires, #wait_for

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



11
12
13
14
15
16
# File 'lib/fog/aws/models/ec2/address.rb', line 11

def destroy
  requires :public_ip

  connection.release_address(@public_ip)
  true
end

#saveObject



26
27
28
29
30
31
32
33
# File 'lib/fog/aws/models/ec2/address.rb', line 26

def save
  data = connection.allocate_address
  @public_ip = data.body['publicIp']
  if @server
    self.server = @server
  end
  true
end

#server=(new_server) ⇒ Object



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

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