How to disable Update in Resource

I dont have any update operation for my api so I would like to disable it from resource somehow

Context: plugin framework is the SDK I’m familiar with

Your resource code needs to fulfill the provider.Provider interface, so it must have an Update() method.

The null resource might be of interest to you.

If you can’t update anything, there’s no sense in Read() returning anything different from the current state. Same story for Update().