Skip to content

Commit

Permalink
changing number of VMs from 100 to 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
hiaga committed Sep 1, 2020
1 parent 6ded162 commit bda4c58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit bda4c58

Please sign in to comment.