Reputation: 9013
I have a Azure Function App, with many functions inside:
I need to remove some functions from this Azure Function App. How to do it? "Delete function" option is disabled
Upvotes: 3
Views: 3529
Reputation: 14324
You couldn't delete your function because your Function app edit mode is Read Only
, your manage page would be like this:
So your need go to Function app settings page, switch the edit mode to Read/Write
, then you will be able to delete the function.
Upvotes: 3
Reputation: 9013
I solved a solution, probably, it would be interesting for other:
go to Azure portal (https://portal.azure.com), select your Function App
select Platform features
tab
Kudu
from feature list:Debug Console
-> CMD
, then go to site/wwwroot
and delete unnecessary functions:Stop/Start Function App.
Enjoy!
Upvotes: 1