# File lib/fog/aws/requests/compute/reset_network_interface_attribute.rb, line 34
        def reset_network_interface_attribute(network_interface_id, attribute)
          response = Excon::Response.new
          if self.data[:network_interfaces][network_interface_id]

            response.status = 200
            response.body = {
              'requestId' => Fog::AWS::Mock.request_id,
              'return'    => true
            }
            if attribute == 'sourceDestCheck'
              self.data[:network_interfaces][network_interface_id]['sourceDestCheck'] = true
            else
              raise Fog::Compute::AWS::Error.new("Illegal attribute '#{attribute}' specified")
            end
            response
          else
            raise Fog::Compute::AWS::NotFound.new("The network interface '#{network_interface_id}' does not exist")
          end
        end