如何在Azure Powershell中检索Azure恢复服务备份存储库的大小?

时间:2018-01-19 15:07:28

标签: powershell azure

我目前正在开发一个Azure Powershell脚本,用于检索恢复服务保管库的名称,受保护的VM以及保管库的当前大小。

但是,我无法从Powershell中检索存储备份的保管库的当前大小(可在Azure门户网站上找到)(有关我想要提取的数据的更多参考,请参阅附图)。

Get-AzureRmRecoveryServicesBackupProperty仅提供BackupStorageRedundancy属性,但不提供大小。保险库数据(Get-AzureRmRecoveryServicesVault),存储上下文(Get-AzureRmRecoveryServicesVaultContext),备份容器(Get-AzureRmRecoveryBackupContainer)和备份项(Get-AzureRmRecoveryBackupItem)似乎都没有我需要的大小属性。

这个选项是否已在Azure Powershell中实现了?如果是,哪个cmdlet可以访问此数据?如果没有,何时实施?enter image description here

1 个答案:

答案 0 :(得分:0)

看起来您发布的Technet社交帖子上的Microsoft MVP表明它可以通过Azure REST API获取。

https://social.msdn.microsoft.com/Forums/azure/en-US/9f946fc2-634d-4e17-949e-78c82c80c241/how-to-retrieve-the-size-of-the-recovery-services-backup-storage-vault-in-azure-powershell?forum=windowsazuredata

您是否查看了该文档以了解可用的选项?

如果它在那里可用,你可以使用Invoke-RestMethod对包含你所追求的信息的端点进行GET