2010-03-16 18:46:21 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
module EC2
|
|
|
|
class Real
|
2009-08-24 23:59:19 -04:00
|
|
|
|
|
|
|
# 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)
|
2010-03-16 01:15:33 -04:00
|
|
|
request(
|
|
|
|
'Action' => 'AssociateAddress',
|
|
|
|
'InstanceId' => instance_id,
|
|
|
|
'PublicIp' => public_ip,
|
2010-05-24 17:22:35 -04:00
|
|
|
:idempotent => true,
|
2010-03-16 01:15:33 -04:00
|
|
|
:parser => Fog::Parsers::AWS::EC2::Basic.new
|
|
|
|
)
|
2009-08-24 23:59:19 -04:00
|
|
|
end
|
|
|
|
|
2009-07-23 01:25:24 -04:00
|
|
|
end
|
|
|
|
|
2010-03-16 18:46:21 -04:00
|
|
|
class Mock
|
2009-08-24 23:59:19 -04:00
|
|
|
|
|
|
|
def associate_address(instance_id, public_ip)
|
2009-11-20 14:08:08 -05:00
|
|
|
response = Excon::Response.new
|
2009-08-24 23:59:19 -04:00
|
|
|
response.status = 200
|
2010-03-16 18:46:21 -04:00
|
|
|
instance = @data[:instances][instance_id]
|
|
|
|
address = @data[:addresses][public_ip]
|
2009-08-25 21:43:30 -04:00
|
|
|
if instance && address
|
|
|
|
address['instanceId'] = instance_id
|
2010-05-13 16:59:33 -04:00
|
|
|
instance['originalIpAddress'] = instance['ipAddress']
|
|
|
|
instance['ipAddress'] = public_ip
|
|
|
|
instance['dnsName'] = Fog::AWS::Mock.dns_name_for(public_ip)
|
2009-08-24 23:59:19 -04:00
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
|
|
|
'return' => true
|
|
|
|
}
|
2010-05-26 01:26:20 -04:00
|
|
|
response
|
|
|
|
elsif !instance
|
2010-05-26 21:03:22 -04:00
|
|
|
raise Fog::AWS::EC2::NotFound.new("The instance ID '#{instance_id}' does not exist")
|
2010-05-26 01:26:20 -04:00
|
|
|
elsif !address
|
|
|
|
raise Fog::AWS::EC2::Error.new("AuthFailure => The address '#{public_ip}' does not belong to you.")
|
2009-08-24 23:59:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-23 01:25:24 -04:00
|
|
|
end
|
|
|
|
end
|
2009-08-24 23:59:19 -04:00
|
|
|
end
|