1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/models/ec2/address.rb

26 lines
422 B
Ruby
Raw Normal View History

2009-08-13 01:33:35 -04:00
module Fog
module AWS
class EC2
class Address < Fog::Model
attribute :instance_id, 'instanceId'
attribute :public_ip, 'publicIp'
2009-08-13 01:33:35 -04:00
def delete
connection.release_address(@public_ip)
true
2009-08-13 01:33:35 -04:00
end
def save
data = connection.allocate_address
@public_ip = data.body['publicIp']
true
2009-08-13 01:33:35 -04:00
end
end
end
end
end