2010-03-16 15:46:21 -07:00
|
|
|
module Fog
|
2011-06-16 16:28:54 -07:00
|
|
|
module Compute
|
|
|
|
class AWS
|
2010-03-16 15:46:21 -07:00
|
|
|
class Real
|
2009-08-14 10:35:16 -07:00
|
|
|
|
2011-08-24 20:37:00 -05:00
|
|
|
require 'fog/aws/parsers/compute/basic'
|
2011-02-23 11:05:14 +08:00
|
|
|
|
2009-08-14 10:35:16 -07:00
|
|
|
# Release an elastic IP address.
|
|
|
|
#
|
|
|
|
# ==== Returns
|
2009-11-02 18:48:49 -08:00
|
|
|
# * response<~Excon::Response>:
|
2009-08-14 10:35:16 -07:00
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'requestId'<~String> - Id of request
|
|
|
|
# * 'return'<~Boolean> - success?
|
2011-05-19 09:31:56 -07:00
|
|
|
#
|
|
|
|
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-ReleaseAddress.html]
|
2012-07-18 12:11:31 -03:00
|
|
|
#
|
2012-04-25 19:58:51 -07: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-15 22:15:33 -07:00
|
|
|
request(
|
|
|
|
'Action' => 'ReleaseAddress',
|
2012-04-25 19:58:51 -07:00
|
|
|
field => ip_or_allocation,
|
2010-05-24 14:22:35 -07:00
|
|
|
:idempotent => true,
|
2011-06-16 16:28:54 -07:00
|
|
|
:parser => Fog::Parsers::Compute::AWS::Basic.new
|
2010-03-15 22:15:33 -07:00
|
|
|
)
|
2009-08-14 10:35:16 -07:00
|
|
|
end
|
|
|
|
|
2009-07-13 19:14:59 -07:00
|
|
|
end
|
|
|
|
|
2010-03-16 15:46:21 -07:00
|
|
|
class Mock
|
2009-08-14 10:35:16 -07:00
|
|
|
|
2012-07-18 12:11:31 -03:00
|
|
|
def release_address(public_ip_or_allocation_id)
|
2009-11-20 11:08:08 -08:00
|
|
|
response = Excon::Response.new
|
2012-07-18 12:11:31 -03: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 10:35:16 -07:00
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
2009-08-16 22:19:35 -07:00
|
|
|
'return' => true
|
2009-08-14 10:35:16 -07:00
|
|
|
}
|
2010-05-25 22:26:20 -07:00
|
|
|
response
|
2009-08-14 10:35:16 -07:00
|
|
|
else
|
2012-07-18 12:11:31 -03:00
|
|
|
raise Fog::Compute::AWS::Error.new("AuthFailure => The address '#{public_ip_or_allocation_id}' does not belong to you.")
|
2009-08-14 10:35:16 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-13 19:14:59 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|