1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/requests/compute/disassociate_address.rb
Josh Lane d48d376e9c initial import
* take the liberty of correcting Aws naming
2014-12-31 09:17:51 -08:00

55 lines
1.9 KiB
Ruby

module Fog
module Compute
class Aws
class Real
require 'fog/aws/parsers/compute/basic'
# Disassociate an elastic IP address from its instance (if any)
#
# ==== Parameters
# * public_ip<~String> - Public ip to assign to instance
# * association_id<~String> - Id associating eip to an network interface
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'requestId'<~String> - Id of request
# * 'return'<~Boolean> - success?
#
# {Amazon API Reference}[http://docs.amazonwebservices.com/AwsEC2/latest/APIReference/ApiReference-query-DisassociateAddress.html]
def disassociate_address(public_ip=nil, association_id=nil)
request(
'Action' => 'DisassociateAddress',
'PublicIp' => public_ip,
'AssociationId' => association_id,
:idempotent => true,
:parser => Fog::Parsers::Compute::AWS::Basic.new
)
end
end
class Mock
def disassociate_address(public_ip)
response = Excon::Response.new
response.status = 200
if address = self.data[:addresses][public_ip]
instance_id = address['instanceId']
if instance = self.data[:instances][instance_id]
instance['ipAddress'] = instance['originalIpAddress']
instance['dnsName'] = Fog::AWS::Mock.dns_name_for(instance['ipAddress'])
end
address['instanceId'] = nil
response.status = 200
response.body = {
'requestId' => Fog::AWS::Mock.request_id,
'return' => true
}
response
else
raise Fog::Compute::AWS::Error.new("AuthFailure => The address '#{public_ip}' does not belong to you.")
end
end
end
end
end
end