Skip to content

Commit e15dc5b

Browse files
authored
Merge pull request Azure#7557 from MabOneSdk/deprecate-backup
[Backup] Deprecating Azure Backup.
2 parents 992e65a + 5665838 commit e15dc5b

26 files changed

+112
-62
lines changed

src/ResourceManager/AzureBackup/Commands.AzureBackup/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Current Release
21+
* Deprecated Azure Backup cmdlets.
2122

2223
## Version 4.0.10
2324
* Fixed issue with default resource groups not being set.

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Backup/BackupAzureRMBackupItem.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using Microsoft.Azure.Commands.AzureBackup.Models;
16-
using Microsoft.Azure.Commands.AzureBackup.Properties;
1715
using System;
1816
using System.Linq;
1917
using System.Management.Automation;
18+
using Microsoft.Azure.Commands.AzureBackup.Models;
19+
using Microsoft.Azure.Commands.AzureBackup.Properties;
20+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2021

2122
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2223
{
2324
/// <summary>
2425
/// Backup Azue Backup Item
2526
/// </summary>
27+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2628
[Cmdlet("Backup", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupItem"), OutputType(typeof(AzureRMBackupJob))]
2729
public class BackupAzureRMBackupItem : AzureRMBackupDSCmdletBase
2830
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureRMBackupContainerReregistration.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,18 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using Microsoft.Azure.Commands.AzureBackup.Models;
16-
using Microsoft.Azure.Commands.AzureBackup.Properties;
1715
using System;
1816
using System.Management.Automation;
17+
using Microsoft.Azure.Commands.AzureBackup.Models;
18+
using Microsoft.Azure.Commands.AzureBackup.Properties;
19+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
1920

2021
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2122
{
2223
/// <summary>
2324
/// Enables reregistration of a machine container
2425
/// </summary>
26+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2527
[Cmdlet("Enable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupContainerReregistration"), OutputType(typeof(void))]
2628
public class EnableAzureRMBackupContainerReregistration : AzureBackupContainerCmdletBase
2729
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureRMBackupContainer.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,21 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15+
using System.Collections.Generic;
16+
using System.Linq;
17+
using System.Management.Automation;
1518
using Microsoft.Azure.Commands.AzureBackup.Helpers;
1619
using Microsoft.Azure.Commands.AzureBackup.Models;
1720
using Microsoft.Azure.Commands.AzureBackup.Properties;
1821
using Microsoft.Azure.Management.BackupServices.Models;
19-
using System.Collections.Generic;
20-
using System.Linq;
21-
using System.Management.Automation;
22+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2223

2324
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2425
{
2526
/// <summary>
2627
/// Get list of containers
2728
/// </summary>
29+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2830
[Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupContainer"), OutputType(typeof(AzureRMBackupContainer))]
2931
public class GetAzureRMBackupContainer : AzureBackupVaultCmdletBase
3032
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/RegisterAzureRMBackupContainer.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,22 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15+
using System;
16+
using System.Linq;
17+
using System.Management.Automation;
1518
using Microsoft.Azure.Commands.AzureBackup.Helpers;
1619
using Microsoft.Azure.Commands.AzureBackup.Models;
1720
using Microsoft.Azure.Commands.AzureBackup.Properties;
1821
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1922
using Microsoft.Azure.Management.BackupServices.Models;
20-
using System;
21-
using System.Linq;
22-
using System.Management.Automation;
23+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2324

2425
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2526
{
2627
/// <summary>
2728
/// Get list of containers
2829
/// </summary>
30+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2931
[Cmdlet("Register", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupContainer"), OutputType(typeof(AzureRMBackupJob))]
3032
public class RegisterAzureRMBackupContainer : AzureBackupVaultCmdletBase
3133
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/UnregisterAzureRMBackupContainer.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using Microsoft.Azure.Commands.AzureBackup.Models;
16-
using Microsoft.Azure.Commands.AzureBackup.Properties;
1715
using System;
1816
using System.Linq;
1917
using System.Management.Automation;
18+
using Microsoft.Azure.Commands.AzureBackup.Models;
19+
using Microsoft.Azure.Commands.AzureBackup.Properties;
20+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2021

2122
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2223
{
2324
/// <summary>
2425
/// Get list of containers
2526
/// </summary>
27+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2628
[Cmdlet("Unregister", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupContainer", SupportsShouldProcess = true), OutputType(typeof(AzureRMBackupJob))]
2729
public class UnregisterAzureRMBackupContainer : AzureBackupContainerCmdletBase
2830
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Disable-AzureRMBackupProtection.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,20 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using Microsoft.Azure.Commands.AzureBackup.Models;
16-
using Microsoft.Azure.Commands.AzureBackup.Properties;
17-
using Microsoft.Azure.Management.BackupServices.Models;
1815
using System;
1916
using System.Linq;
2017
using System.Management.Automation;
18+
using Microsoft.Azure.Commands.AzureBackup.Models;
19+
using Microsoft.Azure.Commands.AzureBackup.Properties;
20+
using Microsoft.Azure.Management.BackupServices.Models;
21+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2122

2223
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets.DataSource
2324
{
2425
/// <summary>
2526
/// Disable Azure Backup protection
2627
/// </summary>
28+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2729
[Cmdlet("Disable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupProtection", SupportsShouldProcess = true), OutputType(typeof(AzureRMBackupJob))]
2830
public class DisableAzureRMBackupProtection : AzureRMBackupDSCmdletBase
2931
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Enable-AzureRMBackupProtection.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,20 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using Microsoft.Azure.Commands.AzureBackup.Models;
16-
using Microsoft.Azure.Commands.AzureBackup.Properties;
17-
using Microsoft.Azure.Management.BackupServices.Models;
1815
using System;
1916
using System.Linq;
2017
using System.Management.Automation;
18+
using Microsoft.Azure.Commands.AzureBackup.Models;
19+
using Microsoft.Azure.Commands.AzureBackup.Properties;
20+
using Microsoft.Azure.Management.BackupServices.Models;
21+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2122

2223
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2324
{
2425
/// <summary>
2526
/// Enable Azure Backup protection
2627
/// </summary>
28+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2729
[Cmdlet("Enable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupProtection"), OutputType(typeof(AzureRMBackupJob))]
2830
public class EnableAzureRMBackupProtection : AzureRMBackupItemCmdletBase
2931
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/GetAzureRMBackupItem.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,20 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using Microsoft.Azure.Commands.AzureBackup.Models;
16-
using Microsoft.Azure.Commands.AzureBackup.Properties;
17-
using Microsoft.Azure.Management.BackupServices.Models;
1815
using System.Collections.Generic;
1916
using System.Linq;
2017
using System.Management.Automation;
18+
using Microsoft.Azure.Commands.AzureBackup.Models;
19+
using Microsoft.Azure.Commands.AzureBackup.Properties;
20+
using Microsoft.Azure.Management.BackupServices.Models;
21+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2122

2223
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2324
{
2425
/// <summary>
2526
/// Get list of azure backup items
2627
/// </summary>
28+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2729
[Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupItem"), OutputType(typeof(AzureRMBackupItem))]
2830
public class GetAzureRMBackupItem : AzureBackupContainerCmdletBase
2931
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/GetAzureRMBackupJob.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,22 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using Microsoft.Azure.Commands.AzureBackup.Models;
16-
using Microsoft.Azure.Commands.AzureBackup.Properties;
1715
using System;
1816
using System.Collections.Generic;
1917
using System.Globalization;
2018
using System.Linq;
2119
using System.Management.Automation;
20+
using Microsoft.Azure.Commands.AzureBackup.Models;
21+
using Microsoft.Azure.Commands.AzureBackup.Properties;
22+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2223
using Mgmt = Microsoft.Azure.Management.BackupServices.Models;
2324

2425
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2526
{
2627
/// <summary>
2728
/// Get list of jobs pertaining to the filters specified. Gets list of all jobs created in the last 24 hours if no filters are specified.
2829
/// </summary>
30+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2931
[Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupJob", DefaultParameterSetName = "FiltersSet"), OutputType(typeof(AzureRMBackupJob))]
3032
public class GetAzureRMBackupJob : AzureBackupCmdletBase
3133
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/GetAzureRMBackupJobDetails.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using Microsoft.Azure.Commands.AzureBackup.Models;
16-
using Microsoft.Azure.Commands.AzureBackup.Properties;
1715
using System;
1816
using System.Management.Automation;
17+
using Microsoft.Azure.Commands.AzureBackup.Models;
18+
using Microsoft.Azure.Commands.AzureBackup.Properties;
19+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
1920
using Mgmt = Microsoft.Azure.Management.BackupServices.Models;
2021

2122
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2223
{
2324
/// <summary>
2425
/// Get full details of a job
2526
/// </summary>
27+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2628
[Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupJobDetails", DefaultParameterSetName = "JobsFiltersSet"), OutputType(typeof(AzureRMBackupJobDetails))]
2729
public class GetAzureRMBackupJobDetils : AzureBackupCmdletBase
2830
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/StopAzureRMBackukpJob.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15+
using System;
16+
using System.Management.Automation;
1517
using Microsoft.Azure.Commands.AzureBackup.Models;
1618
using Microsoft.Azure.Commands.AzureBackup.Properties;
1719
using Microsoft.Azure.Management.BackupServices;
18-
using System;
19-
using System.Management.Automation;
20+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2021

2122
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2223
{
2324
/// <summary>
2425
/// Stop a running cancellable job
2526
/// </summary>
27+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2628
[Cmdlet("Stop", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupJob"), OutputType(typeof(void))]
2729
public class StopAzureRMBackupJob : AzureBackupCmdletBase
2830
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/WaitAzureRMBackupJob.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using Microsoft.Azure.Commands.AzureBackup.Models;
16-
using Microsoft.Azure.Commands.AzureBackup.Properties;
17-
using Microsoft.WindowsAzure.Commands.Utilities.Common;
1815
using System;
1916
using System.Collections.Generic;
2017
using System.Linq;
2118
using System.Management.Automation;
19+
using Microsoft.Azure.Commands.AzureBackup.Models;
20+
using Microsoft.Azure.Commands.AzureBackup.Properties;
21+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
22+
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2223
using Mgmt = Microsoft.Azure.Management.BackupServices.Models;
2324

2425
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2526
{
27+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2628
[Cmdlet("Wait", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupJob"), OutputType(typeof(AzureRMBackupJob))]
2729
public class WaitAzureRMBackupJob : AzureBackupCmdletBase
2830
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/GetAzureRMBackupProtectionPolicy.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,17 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15+
using System.Management.Automation;
1516
using Microsoft.Azure.Commands.AzureBackup.Helpers;
1617
using Microsoft.Azure.Commands.AzureBackup.Models;
17-
using System.Collections.Generic;
18-
using System.Management.Automation;
18+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
1919

2020
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2121
{
2222
/// <summary>
2323
/// Get list of protection policies
2424
/// </summary>
25+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2526
[Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupProtectionPolicy"), OutputType(typeof(AzureRMBackupProtectionPolicy))]
2627
public class GetAzureRMBackupProtectionPolicy : AzureBackupVaultCmdletBase
2728
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/NewAzureRMBackupProtectionPolicy.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,20 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15+
using System;
16+
using System.Management.Automation;
1517
using Microsoft.Azure.Commands.AzureBackup.Helpers;
1618
using Microsoft.Azure.Commands.AzureBackup.Models;
1719
using Microsoft.Azure.Commands.AzureBackup.Properties;
1820
using Microsoft.Azure.Management.BackupServices.Models;
19-
using System;
20-
using System.Management.Automation;
21+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2122

2223
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2324
{
2425
/// <summary>
2526
/// Create new protection policy
2627
/// </summary>
28+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2729
[Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupProtectionPolicy", DefaultParameterSetName = NoScheduleParamSet), OutputType(typeof(AzureRMBackupProtectionPolicy))]
2830
public class NewAzureRMBackupProtectionPolicy : AzureBackupVaultCmdletBase
2931
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/NewAzureRMBackupRetentionPolicyObject.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,20 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using Microsoft.Azure.Commands.AzureBackup.Helpers;
16-
using Microsoft.Azure.Commands.AzureBackup.Models;
17-
using Microsoft.Azure.Management.BackupServices.Models;
1815
using System;
1916
using System.Collections.Generic;
2017
using System.Management.Automation;
18+
using Microsoft.Azure.Commands.AzureBackup.Helpers;
19+
using Microsoft.Azure.Commands.AzureBackup.Models;
20+
using Microsoft.Azure.Management.BackupServices.Models;
21+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2122

2223
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2324
{
2425
/// <summary>
2526
/// Create new retention policy object.
2627
/// </summary>
28+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2729
[Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupRetentionPolicyObject"), OutputType(typeof(AzureRMBackupRetentionPolicy))]
2830
public class NewAzureRMBackupRetentionPolicyObject : AzureBackupCmdletBase
2931
{

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/RemoveAzureRMBackupProtectionPolicy.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,17 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using Microsoft.Azure.Commands.AzureBackup.Properties;
1615
using System;
1716
using System.Management.Automation;
17+
using Microsoft.Azure.Commands.AzureBackup.Properties;
18+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
1819

1920
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2021
{
2122
/// <summary>
2223
/// Remove a protection policy
2324
/// </summary>
25+
[CmdletDeprecation("This module is going to be deprecated. Please use AzureRM.RecoveryServices.Backup or Az.RecoveryServices.Backup moving forward.")]
2426
[Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BackupProtectionPolicy", SupportsShouldProcess = true), OutputType(typeof(void))]
2527
public class RemoveAzureRMBackupProtectionPolicy : AzureBackupPolicyCmdletBase
2628
{

0 commit comments

Comments
 (0)