# File lib/fog/aws/models/compute/route_tables.rb, line 54
        def all(filters_arg = filters)
          unless filters_arg.is_a?(Hash)
            Fog::Logger.warning("all with #{filters_arg.class} param is deprecated, use all('route-table-id' => []) instead [light_black](#{caller.first})[/]")
            filters_arg = {'route-table-id' => [*filters_arg]}
          end
          filters = filters_arg
          data = service.describe_route_tables(filters).body
          load(data['routeTableSet'])
        end