2009-08-24 23:59:19 -04:00
|
|
|
unless Fog.mocking?
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class EC2
|
|
|
|
|
|
|
|
# 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?
|
|
|
|
def disassociate_address(public_ip)
|
|
|
|
request({
|
|
|
|
'Action' => 'DisassociateAddress',
|
|
|
|
'PublicIp' => public_ip
|
|
|
|
}, Fog::Parsers::AWS::EC2::Basic.new)
|
|
|
|
end
|
|
|
|
|
2009-07-23 01:25:24 -04:00
|
|
|
end
|
2009-08-24 23:59:19 -04:00
|
|
|
end
|
|
|
|
end
|
2009-07-23 01:25:24 -04:00
|
|
|
|
2009-08-24 23:59:19 -04:00
|
|
|
else
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class EC2
|
|
|
|
|
|
|
|
def disassociate_address(public_ip)
|
|
|
|
response = Fog::Response.new
|
|
|
|
response.status = 200
|
|
|
|
if address = Fog::AWS::EC2.data[:addresses][public_ip]
|
|
|
|
address['instanceId'] = ''
|
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
|
|
|
'return' => true
|
|
|
|
}
|
|
|
|
else
|
|
|
|
response.status = 400
|
|
|
|
raise(Fog::Errors.status_error(200, 400, response))
|
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-23 01:25:24 -04:00
|
|
|
end
|
|
|
|
end
|
2009-08-24 23:59:19 -04:00
|
|
|
|
|
|
|
end
|