3

What is the difference between microsoft.classicstorage/storageAccounts and Microsoft.Storage/storageAccounts?

Running the following commands

> Switch-AzureMode -Name AzureResourceManager

> Get-AzureLocation

Results in:

Microsoft.Storage/storageAccounts

  • East US
  • East US 2
  • West US
  • West Europe
  • East Asia
  • Southeast Asia
  • Japan East
  • Japan West
  • North Central US
  • South Central US
  • Central US
  • North Europe

microsoft.classicstorage/storageAccounts

  • East Asia
  • Southeast Asia
  • East US
  • East US 2
  • West US
  • North Central US
  • South Central US
  • Central US
  • North Europe
  • West Europe
  • Japan East
  • Japan West
  • Brazil South
  • Australia East
  • Australia Southeast

You can see that Microsoft.Storage/storageAccounts are not avaliable in any of the Australian data centers.

Should I use microsoft.classicstorage/storageAccounts in my azure resource manager template so I can target an australian region, or will this storage type ultimately be deprecated so I'm better of going with Microsoft.Storage/storageAccounts in another location?

4

1 回答 1

1

目前,新的 Azure 资源管理器 (ARM) 堆栈 (Microsoft.Storage/storageAccounts) 不支持澳大利亚东部和东南部(或巴西南部)。因此,您目前无法通过 ARM 堆栈在这些区域中创建存储帐户。

该门户基于较旧的 Azure 服务管理 (ASM) 堆栈 (microsoft.classicstorage/storageAccounts),并且通过此堆栈支持这些位置。这就是为什么可以通过门户创建它们的原因。如果您使用的是服务管理 PowerShell cmdlet,PowerShell 也是如此。

我们建议用户尽可能迁移到 ARM 堆栈,因为这最终会取代 ASM 堆栈。

于 2015-07-18T01:48:52.550 回答