# File lib/fog/softlayer/requests/network/get_datacenter_routers.rb, line 14
        def get_datacenter_routers(id)
          response = Excon::Response.new
          response.status = 200
          dc = @datacenters.select { |dc| dc['id'] == id }.first
          if dc.nil?
            response.status = 404
            response.body = "{\"error\":\"Unable to find object with id of '#{id}'.\",\"code\":\"SoftLayer_Exception_ObjectNotFound\"}"
          else
            response.body = [
              { "hostname" => "bcr01a.#{dc['name']}", "id" => Fog::Mock.random_numbers(6).to_i },
              { "hostname" => "bcr02a.#{dc['name']}", "id" => Fog::Mock.random_numbers(6).to_i },
              { "hostname" => "fcr01a.#{dc['name']}", "id" => Fog::Mock.random_numbers(6).to_i },
              { "hostname" => "fcr02a.#{dc['name']}", "id" => Fog::Mock.random_numbers(6).to_i },
            ]
          end
          response
        end