Skip to content

Commit 260f054

Browse files
authored
[RecoveryServices.backup] changing number of VMs from 100 to 1000 (Azure#12816)
* changing number of VMs from 100 to 1000 * adding description inside changelog.md
1 parent b4bea1f commit 260f054

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ Please contact Microsoft for further assistance.</value>
572572
<value>RetentionDuration in Days should be from 7 - 9999</value>
573573
</data>
574574
<data name="ProtectedItemsCountExceededException" xml:space="preserve">
575-
<value>Cannot configure backup for more than 100 VMs per policy</value>
575+
<value>Cannot configure backup for more than 1000 VMs per policy</value>
576576
</data>
577577
<data name="SoftdeleteNotImplementedException" xml:space="preserve">
578578
<value>Undo-deletion is only supported for AzureVMs. This method is not supported for other workloads.</value>

src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ public void RegisterContainer()
986986

987987
private void ValidateProtectedItemCount(AzureVmPolicy azureVmPolicy)
988988
{
989-
if (azureVmPolicy.ProtectedItemsCount > 100)
989+
if (azureVmPolicy.ProtectedItemsCount > 1000)
990990
{
991991
throw new ArgumentException(Resources.ProtectedItemsCountExceededException);
992992
}

src/RecoveryServices/RecoveryServices/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
## Upcoming Release
2121
* Azure Backup added a new cmdlet Copy-AzRecoveryServicesVault for DS move feature.
2222
* Get-AzRecoveryServicesBackupJob cmdlet now supports operation type 'BackupDataMove'.
23+
* Modifying the configure backup per policy limit for VMs from 100 to 1000.
2324

2425
## Version 2.11.1
2526
* Improved the Azure Backup container/item discovery experience.

0 commit comments

Comments
 (0)