mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
51 lines
1.7 KiB
Ruby
51 lines
1.7 KiB
Ruby
module Fog
|
|
module Compute
|
|
class AWS
|
|
class Real
|
|
require 'fog/aws/parsers/compute/basic'
|
|
# Deletes a network interface.
|
|
#
|
|
# ==== Parameters
|
|
# * network_interface_id<~String> - The ID of the network interface you want to delete.
|
|
#
|
|
# === Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# * 'requestId'<~String> - Id of request
|
|
# * 'return'<~Boolean> - Returns true if the request succeeds.
|
|
#
|
|
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/2012-03-01/APIReference/ApiReference-query-DeleteNetworkInterface.html]
|
|
def delete_network_interface(network_interface_id)
|
|
request(
|
|
'Action' => 'DeleteNetworkInterface',
|
|
'NetworkInterfaceId' => network_interface_id,
|
|
:parser => Fog::Parsers::Compute::AWS::Basic.new
|
|
)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def delete_network_interface(network_interface_id)
|
|
response = Excon::Response.new
|
|
if self.data[:network_interfaces][network_interface_id]
|
|
|
|
if self.data[:network_interfaces][network_interface_id]['attachment']['attachmentId']
|
|
raise Fog::Compute::AWS::Error.new("Interface is in use")
|
|
end
|
|
|
|
self.data[:network_interfaces].delete(network_interface_id)
|
|
|
|
response.status = 200
|
|
response.body = {
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
|
'return' => true
|
|
}
|
|
response
|
|
else
|
|
raise Fog::Compute::AWS::NotFound.new("The network interface '#{network_interface_id}' does not exist")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|