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/compute/requests/aws/associate_address.rb

66 lines
2.2 KiB
Ruby
Raw Normal View History

2010-03-16 18:46:21 -04:00
module Fog
module AWS
2010-09-08 17:40:02 -04:00
class Compute
2010-03-16 18:46:21 -04:00
class Real
2009-08-24 23:59:19 -04:00
require 'fog/compute/parsers/aws/basic'
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
# * response<~Excon::Response>:
2009-08-24 23:59:19 -04:00
# * body<~Hash>:
# * 'requestId'<~String> - Id of request
# * 'return'<~Boolean> - success?
#
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-AssociateAddress.html]
2009-08-24 23:59:19 -04:00
def associate_address(instance_id, public_ip)
request(
'Action' => 'AssociateAddress',
'InstanceId' => instance_id,
'PublicIp' => public_ip,
:idempotent => true,
2010-09-08 17:40:02 -04:00
:parser => Fog::Parsers::AWS::Compute::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
2011-05-19 18:35:33 -04:00
instance = self.data[:instances][instance_id]
address = self.data[:addresses][public_ip]
if instance && address
address['instanceId'] = instance_id
instance['originalIpAddress'] = instance['ipAddress']
# detach other address (if any)
if self.data[:addresses][instance['originalIpAddress']]
self.data[:addresses][instance['originalIpAddress']]['instanceId'] = nil
end
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
}
response
elsif !instance
2010-09-09 20:50:38 -04:00
raise Fog::AWS::Compute::NotFound.new("The instance ID '#{instance_id}' does not exist")
elsif !address
2010-09-09 20:50:38 -04:00
raise Fog::AWS::Compute::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