Skip to content

[RecoveryServices.backup] changing number of VMs from 100 to 1000 #12816

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ Please contact Microsoft for further assistance.</value>
<value>RetentionDuration in Days should be from 7 - 9999</value>
</data>
<data name="ProtectedItemsCountExceededException" xml:space="preserve">
<value>Cannot configure backup for more than 100 VMs per policy</value>
<value>Cannot configure backup for more than 1000 VMs per policy</value>
</data>
<data name="SoftdeleteNotImplementedException" xml:space="preserve">
<value>Undo-deletion is only supported for AzureVMs. This method is not supported for other workloads.</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ public void RegisterContainer()

private void ValidateProtectedItemCount(AzureVmPolicy azureVmPolicy)
{
if (azureVmPolicy.ProtectedItemsCount > 100)
if (azureVmPolicy.ProtectedItemsCount > 1000)
{
throw new ArgumentException(Resources.ProtectedItemsCountExceededException);
}
Expand Down
1 change: 1 addition & 0 deletions src/RecoveryServices/RecoveryServices/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
## Upcoming Release
* Azure Backup added a new cmdlet Copy-AzRecoveryServicesVault for DS move feature.
* Get-AzRecoveryServicesBackupJob cmdlet now supports operation type 'BackupDataMove'.
* Modifying the configure backup per policy limit for VMs from 100 to 1000.

## Version 2.11.1
* Improved the Azure Backup container/item discovery experience.
Expand Down