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_subnet.rb
2015-01-02 09:42:20 -08:00

49 lines
1.6 KiB
Ruby

module Fog
module Compute
class AWS
class Real
require 'fog/aws/parsers/compute/basic'
# Deletes a subnet from a VPC. You must terminate all running instances in the subnet before deleting it, otherwise Amazon
# VPC returns an error
#
# ==== Parameters
# * subnet_id<~String> - The ID of the Subnet 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/2011-07-15/APIReference/ApiReference-query-DeleteSubnet.html]
def delete_subnet(subnet_id)
request(
'Action' => 'DeleteSubnet',
'SubnetId' => subnet_id,
:parser => Fog::Parsers::Compute::AWS::Basic.new
)
end
end
class Mock
def delete_subnet(subnet_id)
Excon::Response.new.tap do |response|
if subnet_id
self.data[:subnets].reject! { |v| v['subnetId'] == subnet_id }
response.status = 200
response.body = {
'requestId' => Fog::AWS::Mock.request_id,
'return' => true
}
else
message = 'MissingParameter => '
message << 'The request must contain the parameter subnet_id'
raise Fog::Compute::AWS::Error.new(message)
end
end
end
end
end
end
end