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-14 11:28:57 -07:00

49 lines
1,019 B
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
data ={
'instanceId' => '',
'publicIp' => Fog::AWS::Mock.ip_address
}
@data['addressesSet'] << data
response.body = {
'publicIp' => data['publicIp'],
'requestId' => Fog::AWS::Mock.request_id
}
response
end
end
end
end
end