13

我正在编写一些用于自动部署 Azure 网站的代码(包括在 Azure 中创建网站)。我正在使用 Nuget 中提供的 Azure 管理库和 Azure 资源管理库。其中大部分已经到位,但是我无法通过我见过的任何 API 找到启用“始终开启”属性的方法。可以通过网站的“配置”选项卡下的 Azure 管理门户设置此属性。

我检查过:

  1. MSDN 上的属性参考:http: //msdn.microsoft.com/en-us/library/azure/dn236426.aspx
  2. powershell API(get-azureresource、get-azurewebsite、...)查看是否有对 Always On 的引用(没有)
  3. 管理门户正在通过 Fiddler 发送的 REST 调用。这里有一个 POST 中对 Always On 的引用,该 POST 转到https://manage.windowsazure.com/Websites/UpdateConfig(据我所知,这不是管理或资源管理 API 的一部分)。发送的 JSON 正文中的确切路径是 /siteConfig/AlwaysOn。

所以,问题是,是否可以通过“官方”API 启用/禁用 Always On?

谢谢!

4

3 回答 3

12

我相信我找到了解决方案!

使用资源管理 API,我可以通过 siteConfig 对象设置 AlwaysOn 属性。在 powershell 中:

Set-AzureResource -ApiVersion 2014-04-01 -PropertyObject @{"siteConfig" = @{"AlwaysOn" = $false}} -Name mywebsite -ResourceGroupName myrg -ResourceType Microsoft.Web/sites

在 .NET 的资源管理 API 中,它与此类似。

生成的 REST 调用,对 https://management.azure.com/subscriptions/xxx/resourcegroups/yyy/providers/Microsoft.Web/sites/zzz?api-version=2014-04-01 { "location": "West Europe", "properties": { "siteConfig": { "AlwaysOn": true } }, "tags": {} }

于 2014-11-05T12:45:44.750 回答
2

使用更新的 ARM(Azure 资源管理器)Powershell,v1.0+

获取 AzureRmResource:https ://msdn.microsoft.com/en-us/library/mt652503.aspx

设置 AzureRmResource:https ://msdn.microsoft.com/en-us/library/mt652514.aspx

# Variables - substitute your own values here
$ResourceGroupName = 'My Azure RM Resource Group Name'
$WebAppName = 'My Azure RM WebApp Name'
$ClientAffinityEnabled = $false

# Property object for nested, not exposed directly properties
$WebAppPropertiesObject = @{"siteConfig" = @{"AlwaysOn" = $true}}

# Variables
$WebAppResourceType = 'microsoft.web/sites'

# Get the resource from Azure (consider adding sanity checks, e.g. is $webAppResource -eq $null)
$webAppResource = Get-AzureRmResource -ResourceType $WebAppResourceType -ResourceGroupName $ResourceGroupName -ResourceName $WebAppName

# Set a directly exposed property, in this case whether client affinity is enabled
$webAppResource.Properties.ClientAffinityEnabled = $ClientAffinityEnabled

# Pass the resource object into the cmdlet that saves the changes to Azure
$webAppResource | Set-AzureRmResource -PropertyObject $WebAppPropertiesObject -Force
于 2016-04-23T14:20:52.073 回答
0

对于那些使用.Net API的人来说,它是

var cfg = await websiteClient.Sites.GetSiteConfigAsync(site.ResourceGroup, site.Name, cancellationToken).ConfigureAwait(false);
if (!cfg.AlwaysOn.GetValueOrDefault())
{
    cfg.AlwaysOn = true;
    await websiteClient.Sites.UpdateSiteConfigAsync(site.ResourceGroup, site.Name, cfg, cancellationToken).ConfigureAwait(false);
}
于 2016-07-18T14:57:29.863 回答