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, #to_json, #wait_for

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



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

def destroy
  requires :public_ip

  connection.release_address(@public_ip)
  true
end

#saveObject



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

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

#server=(new_server) ⇒ Object



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

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