如何使用api的子类型创建App Service

时间:2019-03-28 06:05:37

标签: azure-web-sites azure-web-app-service azure-powershell

在powershell中,并使用new-azwebapp在我们的应用程序服务计划中创建网站。但这似乎只创造了一种app

我正在尝试使用api类型创建它,就像从Azure Portal UI中进行选择时一样,但是我看不到配置中要执行此操作的设置。

创建后,我设置了AppSettings,然后尝试更新Type,但这似乎无关紧要。

希望我缺少一些简单的东西。

$siteName = "namegoeshere"
$sitePlan = "myplanname"
$siteLocation  = "Australia East"
$siteResourceGroup = "resourcegroupname"

$createdSite = new-azWebApp -Name $siteName -ResourceGroupName $siteResourceGroup -AppServicePlan $sitePlan -Location $siteLocation

$newAppSettings = @{ "name"="value"}
Set-AzWebApp -Name $siteName -ResourceGroupName $siteResourceGroup -AppSettings $newAppSettings -AppServicePlan Grower  #-PhpVersion 0

$p = @{ 'type' = "api" }
$r = Set-AzResource -Name $siteName -ResourceGroupName $siteResourceGroup -ResourceType Microsoft.Web/sites  -PropertyObject $p -ApiVersion 2016-03-01 -Kind "app"
echo $r.Properties

1 个答案:

答案 0 :(得分:1)

未将type api设置为type,在New-AzureRmResource参数中有一个参数进行设置,即为[-Kind <String>]。您可以检查它here

这里是一个例子。

# CREATE "just-an-api" API App

$ResourceLocation = "West US"
$ResourceName = "just-an-api"
$ResourceGroupName = "demo"
$PropertiesObject = @{
    # serverFarmId points to the App Service Plan resource id
    serverFarmId = "/subscriptions/SUBSCRIPTION-GUID/resourceGroups/demo/providers/Microsoft.Web/serverfarms/plan1"
}

    New-AzureRmResource -Location $ResourceLocation `
        -PropertyObject $PropertiesObject `
        -ResourceGroupName $ResourceGroupName `
        -ResourceType Microsoft.Web/sites `
        -ResourceName "just-an-api/$ResourceName" `
        -Kind 'api' `
        -ApiVersion 2016-08-01 -Force