Skip to content

Commit dc47dce

Browse files
committed
Set Preview tag on the legal hold cmdlets
1 parent 327367a commit dc47dce

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

src/Sql/Sql/Database Backup/Cmdlet/RemoveAzureRmSqlDatabaseLongTermRetentionBackupLegalHold.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313
// ----------------------------------------------------------------------------------
1414

1515
using System;
16-
using System.Linq;
1716
using System.Collections.Generic;
18-
using System.Management.Automation;
1917
using System.Globalization;
18+
using System.Linq;
19+
using System.Management.Automation;
2020
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
2121
using Microsoft.Azure.Commands.Sql.Backup.Model;
22-
using Microsoft.Azure.Commands.Sql.Database.Model;
23-
using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
22+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2423

2524
namespace Microsoft.Azure.Commands.Sql.Database_Backup.Cmdlet
2625
{
26+
[CmdletPreview()]
2727
[Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseLongTermRetentionBackupLegalHold", DefaultParameterSetName = RemoveBackupLegalHoldDefaultSet, SupportsShouldProcess = true), OutputType(typeof(AzureSqlDatabaseLongTermRetentionBackupModel))]
2828
public class RemoveAzureRmSqlDatabaseLongTermRetentionBackupLegalHold : AzureSqlDatabaseLongTermRetentionBackupCmdletBase<AzureSqlDatabaseLongTermRetentionBackupModel>
2929
{

src/Sql/Sql/Database Backup/Cmdlet/SetAzureRmSqlDatabaseLongTermRetentionBackupLegalHold.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,16 @@
1313
// ----------------------------------------------------------------------------------
1414

1515
using System;
16-
using System.Linq;
1716
using System.Collections.Generic;
18-
using System.Management.Automation;
1917
using System.Globalization;
18+
using System.Management.Automation;
2019
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
2120
using Microsoft.Azure.Commands.Sql.Backup.Model;
22-
using Microsoft.Azure.Commands.Sql.Database.Model;
23-
using Microsoft.Azure.Management.Internal.Resources.Utilities.Models;
21+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2422

2523
namespace Microsoft.Azure.Commands.Sql.Database_Backup.Cmdlet
2624
{
25+
[CmdletPreview()]
2726
[Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseLongTermRetentionBackupLegalHold", DefaultParameterSetName = SetLegalHoldDefaultSet, SupportsShouldProcess = true), OutputType(typeof(AzureSqlDatabaseLongTermRetentionBackupModel))]
2827
public class SetAzureRmSqlDatabaseLongTermRetentionBackupLegalHold : AzureSqlDatabaseLongTermRetentionBackupCmdletBase<AzureSqlDatabaseLongTermRetentionBackupModel>
2928
{

0 commit comments

Comments
 (0)