2009-08-24 23:59:19 -04: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
|
2009-11-02 21:48:49 -05:00
|
|
|
# * response<~Excon::Response>:
|
2009-08-24 23:59:19 -04:00
|
|
|
# * 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 01:25:24 -04:00
|
|
|
end
|
2009-08-24 23:59:19 -04:00
|
|
|
end
|
|
|
|
end
|
2009-07-23 01:25:24 -04:00
|
|
|
|
2009-08-24 23:59:19 -04: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]
|
2009-08-25 21:43:30 -04:00
|
|
|
address = Fog::AWS::EC2.data[:addresses][public_ip]
|
|
|
|
if instance && address
|
|
|
|
address['instanceId'] = instance_id
|
2009-08-24 23:59:19 -04:00
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
|
|
|
'return' => true
|
|
|
|
}
|
|
|
|
else
|
|
|
|
response.status = 400
|
2009-11-08 15:16:52 -05:00
|
|
|
raise(Excon::Errors.status_error(200, 400, response))
|
2009-08-24 23:59:19 -04:00
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-23 01:25:24 -04:00
|
|
|
end
|
|
|
|
end
|
2009-08-24 23:59:19 -04:00
|
|
|
|
|
|
|
end
|