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