I created a new Azure Function using the Azure portal. I have the ZIP of my application code. I used below command to deploy the ZIP file to my Azure function. But when I go to Azure Functions -> Functions, it doesn't show anything.
This is the command I used to upload the ZIP file
az functionapp deployment source config-zip -g my-resource-group -n my-funcation-app --src "My-ZIP-File.zip"
After I execute the above command, it shows as succeeded.
"message": "Created via a push deployment",
"progress": "",
"provisioningState": "Succeeded"
Any idea why it doesn't show?


