# File lib/fog/network/openstack/requests/delete_subnet.rb, line 15
        def delete_subnet(subnet_id)
          response = Excon::Response.new
          if list_subnets.body['subnets'].map { |r| r['id'] }.include? subnet_id
            data[:subnets].delete(subnet_id)
            response.status = 204
            response
          else
            raise Fog::Network::OpenStack::NotFound
          end
        end