# File lib/fog/softlayer/requests/network/get_datacenter_routers.rb, line 35
        def get_datacenter_routers(id)
          Excon.defaults[:read_timeout] *= 2 # this SLAPI method is incredibly slow to respond
          result = request(:location_datacenter, "#{id}/get_hardware_routers", :query => 'objectMask=id;hostname')
          Excon.defaults[:read_timeout] /= 2
          result
        end