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/requests/ec2/allocate_address.rb
2009-08-20 19:25:52 -07:00

50 lines
1 KiB
Ruby

unless Fog.mocking?
module Fog
module AWS
class EC2
# Acquire an elastic IP address.
#
# ==== Returns
# * response<~Fog::AWS::Response>:
# * body<~Hash>:
# * 'publicIp'<~String> - The acquired address
# * 'requestId'<~String> - Id of the request
def allocate_address
request({
'Action' => 'AllocateAddress'
}, Fog::Parsers::AWS::EC2::AllocateAddress.new)
end
end
end
end
else
module Fog
module AWS
class EC2
def allocate_address
response = Fog::Response.new
response.status = 200
public_ip = Fog::AWS::Mock.ip_address
data ={
'instanceId' => '',
'publicIp' => public_ip
}
Fog::AWS::EC2.data[:addresses][public_ip] = data
response.body = {
'publicIp' => public_ip,
'requestId' => Fog::AWS::Mock.request_id
}
response
end
end
end
end
end