2010-03-16 18:46:21 -04:00
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class AWS
|
2010-03-16 18:46:21 -04:00
|
|
|
class Real
|
2009-08-14 13:35:16 -04:00
|
|
|
|
2011-08-24 21:37:00 -04:00
|
|
|
require 'fog/aws/parsers/compute/basic'
|
2011-02-22 22:05:14 -05:00
|
|
|
|
2009-08-14 13:35:16 -04:00
|
|
|
# Release an elastic IP address.
|
|
|
|
#
|
|
|
|
# ==== Returns
|
2009-11-02 21:48:49 -05:00
|
|
|
# * response<~Excon::Response>:
|
2009-08-14 13:35:16 -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-ReleaseAddress.html]
|
2012-07-18 11:11:31 -04:00
|
|
|
#
|
2012-04-25 22:58:51 -04:00
|
|
|
# non-VPC: requires public_ip only
|
|
|
|
# VPC: requires allocation_id only
|
|
|
|
def release_address(ip_or_allocation)
|
|
|
|
field = if ip_or_allocation.to_s =~ /^(\d|\.)+$/
|
|
|
|
"PublicIp"
|
|
|
|
else
|
|
|
|
"AllocationId"
|
|
|
|
end
|
2010-03-16 01:15:33 -04:00
|
|
|
request(
|
|
|
|
'Action' => 'ReleaseAddress',
|
2012-04-25 22:58:51 -04:00
|
|
|
field => ip_or_allocation,
|
2010-05-24 17:22:35 -04:00
|
|
|
:idempotent => true,
|
2011-06-16 19:28:54 -04:00
|
|
|
:parser => Fog::Parsers::Compute::AWS::Basic.new
|
2010-03-16 01:15:33 -04:00
|
|
|
)
|
2009-08-14 13:35:16 -04:00
|
|
|
end
|
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
|
2010-03-16 18:46:21 -04:00
|
|
|
class Mock
|
2009-08-14 13:35:16 -04:00
|
|
|
|
2012-07-18 11:11:31 -04:00
|
|
|
def release_address(public_ip_or_allocation_id)
|
2009-11-20 14:08:08 -05:00
|
|
|
response = Excon::Response.new
|
2012-07-18 11:11:31 -04:00
|
|
|
|
|
|
|
address = self.data[:addresses][public_ip_or_allocation_id] || self.data[:addresses].values.detect {|a| a['allocationId'] == public_ip_or_allocation_id }
|
|
|
|
|
|
|
|
if address
|
|
|
|
if address['allocationId'] && public_ip_or_allocation_id == address['publicIp']
|
|
|
|
raise Fog::Compute::AWS::Error, "InvalidParameterValue => You must specify an allocation id when releasing a VPC elastic IP address"
|
|
|
|
end
|
|
|
|
|
|
|
|
self.data[:addresses].delete(address['publicIp'])
|
2009-08-14 13:35:16 -04:00
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
2009-08-17 01:19:35 -04:00
|
|
|
'return' => true
|
2009-08-14 13:35:16 -04:00
|
|
|
}
|
2010-05-26 01:26:20 -04:00
|
|
|
response
|
2009-08-14 13:35:16 -04:00
|
|
|
else
|
2012-07-18 11:11:31 -04:00
|
|
|
raise Fog::Compute::AWS::Error.new("AuthFailure => The address '#{public_ip_or_allocation_id}' does not belong to you.")
|
2009-08-14 13:35:16 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|