如何使用 azure powershell 命令在给定存储帐户名称和资源组的情况下获取存储帐户 ID?

How to get storage account id given storage account name and resource group using azure powershell command?

我是 azure-CLI 的初学者。

我只是想找出存储帐户 ID。

我有一个名为 'group2' 的资源组和一个名为 'storageacc1' 的存储帐户。

我尝试了以下 PowerShell 命令来获取存储帐户详细信息:

Get-AzStorageAccount -ResourceGroupName“group2”-AccountName“storageacc11”

在 return 中,我得到了 StorageAccountName、ResourceGroupName、PrimaryLocation、SkuName、Kind、AccessTier、CreationTime、ProvisioningState、EnableHttpsTrafficOnly、LargeFileShares。

如何获取存储帐户 ID?

直接用代码吹:

$s = Get-AzStorageAccount -ResourceGroupName "xx" -AccountName "xx"

$s.Id