I have running multiple Google Cloud functions. One is not operating well, so I want to stop them until I\'ve fixed the situation.
I have seen that I can remove the func
You cannot disable a function. Just comment the function body. It would be a good practice to log the call in the console and then return null so you can keep track whenever the function is invoked.