$this->tableGateway->update

I’m struggling with how to update a single column in a row set with tablegateway.
I can update the whole row with passing the object, but how to update a single value in the row?
I want to set “status” to 2 where “ID” = 150.
Below is not working:

        $this->tableGateway->update("status=3", [
            'ID' => '151'
        ]);

Check the allowed parameter:

Thanks!

$this->tableGateway->update([‘status’ => 8], [‘ID’ => 151]);