fog--fog/lib/fog/aws/requests/ec2/associate_address.rb

60 lines
1.5 KiB
Ruby
Raw Normal View History

2009-08-25 03:59:19 +00:00
unless Fog.mocking?
module Fog
module AWS
class EC2
# Associate an elastic IP address with an instance
#
# ==== Parameters
# * instance_id<~String> - Id of instance to associate address with
# * public_ip<~String> - Public ip to assign to instance
#
# ==== Returns
# * response<~Fog::AWS::Response>:
# * body<~Hash>:
# * 'requestId'<~String> - Id of request
# * 'return'<~Boolean> - success?
def associate_address(instance_id, public_ip)
request({
'Action' => 'AssociateAddress',
'InstanceId' => instance_id,
'PublicIp' => public_ip
}, Fog::Parsers::AWS::EC2::Basic.new)
end
2009-07-23 05:25:24 +00:00
end
2009-08-25 03:59:19 +00:00
end
end
2009-07-23 05:25:24 +00:00
2009-08-25 03:59:19 +00:00
else
module Fog
module AWS
class EC2
def associate_address(instance_id, public_ip)
response = Fog::Response.new
response.status = 200
instance = Fog::AWS::EC2.data[:instances][instance_id]
address = Fog::AWS::EC2.data[:addresses][public_ip]
if instance && address
address['instanceId'] = instance_id
2009-08-25 03:59:19 +00:00
response.status = 200
response.body = {
'requestId' => Fog::AWS::Mock.request_id,
'return' => true
}
else
response.status = 400
raise(Fog::Errors.status_error(200, 400, response))
end
response
end
end
2009-07-23 05:25:24 +00:00
end
end
2009-08-25 03:59:19 +00:00
end