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

Posted

技术标签:

【中文标题】如何使用 azure powershell 命令获取给定存储帐户名称和资源组的存储帐户 ID?【英文标题】:How to get storage account id given storage account name and resource group using azure powershell command? 【发布时间】:2021-05-26 13:51:06 【问题描述】:

我是 azure-CLI 的初学者。

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

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

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

Get-AzStorageAccount -ResourceGroupName "group2" -AccountName "storageacc11"

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

如何获取存储帐户 ID?

【问题讨论】:

【参考方案1】:

只需使用代码:

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

$s.Id

【讨论】:

以上是关于如何使用 azure powershell 命令获取给定存储帐户名称和资源组的存储帐户 ID?的主要内容,如果未能解决你的问题,请参考以下文章

使用 Azure PowerShell 创建高级存储帐户

将 Azure Powershell 命令转换为 Azure CLI

如何使用 Powershell Commandlets 在应用服务环境中创建 Azure WebApp

Microsoft Azure系列之四 Micorosft Azure Powershell 管理

Windows Azure PowerShell之管理虚拟机

Azure devops powershell 任务问题