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

51 lines
1 KiB
Ruby
Raw Normal View History

2009-08-14 13:35:16 -04:00
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
2009-08-14 13:35:16 -04:00
end
end
2009-08-14 13:35:16 -04:00
else
module Fog
module AWS
class EC2
def allocate_address
response = Fog::Response.new
response.status = 200
2009-08-16 15:32:36 -04:00
public_ip = Fog::AWS::Mock.ip_address
2009-08-14 13:35:16 -04:00
data ={
2009-08-14 14:28:57 -04:00
'instanceId' => '',
2009-08-16 15:32:36 -04:00
'publicIp' => public_ip
2009-08-14 13:35:16 -04:00
}
Fog::AWS::EC2.data[:addresses][public_ip] = data
2009-08-14 13:35:16 -04:00
response.body = {
2009-08-16 15:32:36 -04:00
'publicIp' => public_ip,
2009-08-14 13:35:16 -04:00
'requestId' => Fog::AWS::Mock.request_id
}
response
end
end
end
end
2009-08-14 13:35:16 -04:00
end