Thanks! That's what I was looking for!
But imagine my operation will be delete() instead of update() and my model has Soft Delete Behaviour and at the same time I need to skip beforeUpdate()
Model::setup([
'events' => false,
]);
$entity_instance->delete();
It canceled events and record will be removed from db instead of marked as archived
Is there any native way out?