An Azure service that provides an event-driven serverless compute platform.
This usually happens when Azure can’t “see” your functions even though the deployment worked. With the Python V2 model, your functions aren’t picked up unless they’re defined correctly in a function_app.py file using the decorator style (like @app.function_name).
Double-check that:
- You’re actually using the V2 programming model (with
azure-functionsupdated) - Your functions are inside
function_app.py - Each function is properly decorated and registered with the app object
If any of that is off, Azure won’t list your functions in the portaleven though the deployment says it succeeded.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.