Complete the code to specify the Azure Function plan type for consumption pricing.
az functionapp create --resource-group myResourceGroup --name myFunctionApp --storage-account mystorage [1]Consumption plan is specified with --consumption-plan-location eastus to enable consumption-based pricing.
Complete the code to create an Azure Function App using the Premium plan.
az functionapp create --resource-group myResourceGroup --name myPremiumFunction --storage-account mystorage --plan [1]The Premium plan is specified by using --plan myPremiumPlan to enable premium features and pricing.
Fix the error in the Azure CLI command to deploy a function app with consumption pricing.
az functionapp create --resource-group myResourceGroup --name myFuncApp --storage-account mystorage [1]The consumption plan must be specified as --consumption-plan-location eastus to deploy with consumption pricing.
Fill both blanks to configure an Azure Function App with Premium plan and enable VNET integration.
az functionapp create --resource-group myResourceGroup --name myFuncApp --storage-account mystorage --plan [1] --vnet-route-all-enabled [2]
Use myPremiumPlan for the plan to enable premium features and true to enable VNET integration routing.
Fill all three blanks to create a function app with consumption plan, specify runtime as Python, and enable application insights.
az functionapp create --resource-group myResourceGroup --name myFuncApp --storage-account mystorage --consumption-plan-location [1] --runtime [2] --application-insights [3]
Use eastus for the consumption plan location, python for the runtime, and myAppInsights to enable application insights monitoring.