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
|
|
|
|
2011-02-22 22:05:14 -05:00
|
|
|
require 'fog/compute/parsers/aws/basic'
|
|
|
|
|
2009-08-24 23:59:19 -04:00
|
|
|
# Disassociate an elastic IP address from its instance (if any)
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * 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?
|
2011-05-19 12:31:56 -04:00
|
|
|
#
|
|
|
|
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DisassociateAddress.html]
|
2009-08-24 23:59:19 -04:00
|
|
|
def disassociate_address(public_ip)
|
2010-03-16 01:15:33 -04:00
|
|
|
request(
|
|
|
|
'Action' => 'DisassociateAddress',
|
|
|
|
'PublicIp' => public_ip,
|
2010-05-24 17:22:35 -04:00
|
|
|
:idempotent => true,
|
2010-09-08 17:40:02 -04:00
|
|
|
:parser => Fog::Parsers::AWS::Compute::Basic.new
|
2010-03-16 01:15:33 -04:00
|
|
|
)
|
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 disassociate_address(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
|
|
|
if address = @data[:addresses][public_ip]
|
2010-05-13 16:59:33 -04:00
|
|
|
instance_id = address['instanceId']
|
|
|
|
instance = @data[:instances][instance_id]
|
|
|
|
instance['ipAddress'] = instance['originalIpAddress']
|
|
|
|
instance['dnsName'] = Fog::AWS::Mock.dns_name_for(instance['ipAddress'])
|
2010-05-05 17:22:22 -04:00
|
|
|
address['instanceId'] = nil
|
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
|
2009-08-24 23:59:19 -04:00
|
|
|
else
|
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
|