你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzRecoveryServicesBackupContainer
获取备份容器。
语法
Get-AzRecoveryServicesBackupContainer
[-ContainerType] <ContainerType>
[[-BackupManagementType] <String>]
[[-FriendlyName] <String>]
[[-ResourceGroupName] <String>]
[-VaultId <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Get-AzRecoveryServicesBackupContainer cmdlet 获取备份容器。 备份容器封装建模为备份项的数据源。 对于容器类型“Azure VM”,输出将列出名称与作为友好名称参数值传递的容器完全匹配的所有容器。 对于其他容器类型,输出会提供名称类似于为 Friendly name 参数传递的值的容器列表。 使用 -VaultId 参数设置保管库上下文。
示例
示例 1:获取特定容器
$vault = Get-AzRecoveryServicesVault -ResourceGroupName "resourceGroup" -Name "vaultName"
Get-AzRecoveryServicesBackupContainer -ContainerType "AzureVM" -FriendlyName "V2VM" -VaultId $vault.ID
此命令获取名为 AzureVM 的 V2VM 的容器。
示例 2:获取特定类型的所有容器
$vault = Get-AzRecoveryServicesVault -ResourceGroupName "resourceGroup" -Name "vaultName"
Get-AzRecoveryServicesBackupContainer -ContainerType Windows -BackupManagementType MAB -VaultId $vault.ID
此命令获取受Azure 备份代理保护的所有 Windows 容器。 只有 Windows 容器才需要 BackupManagementType 参数。
参数
-BackupManagementType
要保护的资源的类。 此参数的可接受值为:
- AzureVM
- MAB
- AzureWorkload
- AzureStorage
此参数用于区分使用 MARS 代理或其他备份引擎备份的 Windows 计算机。
类型: | String |
接受的值: | AzureVM, AzureStorage, AzureWorkload, MAB |
Position: | 2 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ContainerType
指定备份容器类型。 此参数的可接受值为:
- AzureVM
- Windows
- AzureStorage
- AzureVMAppContainer
类型: | ContainerType |
接受的值: | AzureVM, Windows, AzureStorage, AzureVMAppContainer |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-FriendlyName
指定要获取的容器的友好名称。
类型: | String |
Position: | 3 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ResourceGroupName
指定资源组的名称。 此参数仅适用于 Azure 虚拟机。
类型: | String |
Position: | 4 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-VaultId
恢复服务保管库的 ARM ID。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |