在消耗计划托管中,每个函数应用通常在其自己的计划中运行。 在 Azure 门户或代码中,还可看到称为Dynamic或Y1的消耗计划。 使用以下链接了解如何在消耗计划中以编程方式或通过 Azure 门户创建无服务器函数应用: 从Visual Studio Code或Visual Studio发布 Functions 项目时,还可以在消耗计划中创建函数应用。
在取用方案裝載中,每個函式應用程式通常會在自己的方案中執行。 在 Azure 入口網站或程式碼中,您也可以看到稱為 Dynamic 或Y1 的取用方案。使用下列連結,瞭解如何以程式設計方式或在 Azure 入口網站中,在取用方案中建立無伺服器函數應用程式:Azure CLI Azure 入口網站 Azure Resource Manager 範本...
('hostingPlanName')]", "location": "[parameters('location')]", "sku": { "name": "Y1", "tier": "Dynamic" }, "properties": {} }, { "type": "Microsoft.Web/sites", "apiVersion": "2021-03-01", "name": "[variables('functionAppName')]", "location": "[parameter...
The exceptions appears when trying to deploy to a Function App in Y1 plan only. Switching to an App Service Plan on S1 solves it. 👀 1 Contributor MicroFish91 commented Apr 6, 2023 Are you still running into this issue/does it still reproduce? nturinski added the info-needed label ...
az functionapp create --name MSDNOvaryVisFnApp --resource-group resMSDNOvaryVis --storage-account msdnovaryvisstorageac --consumption-plan-location westeurope 因此您必須輸入您自己的名稱來取代 MSDNOvaryVisFnApp 可公開存取,函式應用程式服務的名稱。您也應該注意,建立...
If a Consumption Plan (Y1) was selected for the Azure Functions, make sure that the functions are synced with the other resources (seethisfor further details). To do so, click on your StartTranscription function in the portal and wait until your function shows up: ...
name application_type = "other" } resource "azurerm_service_plan" "app_service_plan" { name = "app-service-plan" resource_group_name = azurerm_resource_group.resource_group.name location = "Germany West Central" os_type = "Linux" sku_name = "Y1" } resource "azurerm_linux_function_...
这里有一些问题,假设现在New-AzureRmAppServicePlan不支持,但是你可以使用New-AzureRmResource来创建一个...
"storageAccountFileShareEnabledProtocols":"SMB","planName":"[concat(parameters('resourcePrefix'), '-', 'plan')]","planKind":"linux","planSkuTier":"Dynamic","planSkuName":"Y1","planWorkerSize":"0","planWorkerSizeId":"0","planNumberOfWorkers":"1","planReserved":true,"functionN...
resource "azurerm_service_plan" "example" { name = "jahplannew" resource_group_name = data.azurerm_resource_group.example.name location = data.azurerm_resource_group.example.location os_type = "Linux" sku_name = "Y1" } resource "azurerm_linux_function_app" "example" { name = "example...