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/delete_internet_gateway.rb
Josh Lane d48d376e9c initial import
* take the liberty of correcting Aws naming
2014-12-31 09:17:51 -08:00

48 lines
1.6 KiB
Ruby

module Fog
module Compute
class Aws
class Real
require 'fog/aws/parsers/compute/basic'
#Deletes an Internet gateway from your Aws account. The gateway must not be attached to a VPC
#
# ==== Parameters
# * internet_gateway_id<~String> - The ID of the InternetGateway 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/latest/APIReference/ApiReference-query-DeleteInternetGateway.html]
def delete_internet_gateway(internet_gateway_id)
request(
'Action' => 'DeleteInternetGateway',
'InternetGatewayId' => internet_gateway_id,
:parser => Fog::Parsers::Compute::AWS::Basic.new
)
end
end
class Mock
def delete_internet_gateway(internet_gateway_id)
Excon::Response.new.tap do |response|
if internet_gateway_id
response.status = 200
self.data[:internet_gateways].delete(internet_gateway_id)
response.body = {
'requestId' => Fog::AWS::Mock.request_id,
'return' => true
}
else
message = 'MissingParameter => '
message << 'The request must contain the parameter internet_gateway_id'
raise Fog::Compute::AWS::Error.new(message)
end
end
end
end
end
end
end