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

59 lines
1.9 KiB
Ruby
Raw Normal View History

2010-03-16 18:46:21 -04:00
module Fog
module Compute
class AWS
2010-03-16 18:46:21 -04:00
class Real
2009-08-24 23:59:19 -04:00
require 'fog/aws/parsers/compute/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
2012-02-20 16:16:52 -05:00
# * association_id<~String> - Id associating eip to an network interface
2009-08-24 23:59:19 -04:00
#
# ==== 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-DisassociateAddress.html]
2012-02-20 16:16:52 -05:00
def disassociate_address(public_ip=nil, association_id=nil)
request(
2012-02-20 16:16:52 -05:00
'Action' => 'DisassociateAddress',
'PublicIp' => public_ip,
'AssociationId' => association_id,
:idempotent => true,
:parser => Fog::Parsers::Compute::AWS::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 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
2011-05-19 18:35:33 -04:00
if address = self.data[:addresses][public_ip]
instance_id = address['instanceId']
2011-05-19 18:35:33 -04:00
instance = self.data[:instances][instance_id]
instance['ipAddress'] = instance['originalIpAddress']
instance['dnsName'] = Fog::AWS::Mock.dns_name_for(instance['ipAddress'])
address['instanceId'] = nil
2009-08-24 23:59:19 -04:00
response.status = 200
response.body = {
'requestId' => Fog::AWS::Mock.request_id,
'return' => true
}
response
2009-08-24 23:59:19 -04:00
else
raise Fog::Compute::AWS::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