Skip to content

Commit 81edd22

Browse files
committed
Update changelog.md. Add Public Preview verbiage to legal hold CmdLet and help files.
1 parent 039391d commit 81edd22

5 files changed

+10
-10
lines changed

src/Sql/Sql/ChangeLog.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21-
22-
## Version 6.2.0
23-
* Improved parameter validation for the EnableSoftDelete and SoftDeleteRetentionDays parameters.
24-
* Added `EnableSoftDelete` and `SoftDeleteRetentionDays` to `New-AzSqlServer` to support soft-delete retention
25-
* Added `EnableSoftDelete` and `SoftDeleteRetentionDays` to `Set-AzSqlServer` to support soft-delete retention
26-
* Added `Restore-AzSqlServer` cmdlet to restore a deleted Azure SQL server within the retention period
2721
* Updated with support for Immutable Long-Term Retention Backups
2822
- Updated `Set-AzSqlDatabaseBackupLongTermRetentionPolicy` cmdlet to expose `TimeBasedImmutability` and `TimeBasedImmutabilityMode` parameters.
2923
- Updated `AzureSqlDatabaseBackupLongTermRetentionPolicyModel` to add `TimeBasedImmutability` and `TimeBasedImmutabilityMode` properties.
3024
- Updated `AzureSqlDatabaseLongTermRetentionBackupModel` to add `TimeBasedImmutability`, `TimeBasedImmutabilityMode`, and `LegalHoldImmutability` properties.
3125
- Added new cmdlets `Lock-AzSqlDatabaseLongTermRetentionBackupImmutability` and `Remove-AzSqlDatabaseLongTermRetentionBackupImmutability` for managing time-based immutability on LTR backups.
3226
- Added new cmdlets `Set-Az SqlDatabaseLongTermRetentionBackupLegalHold` and `Remove-AzSqlDatabaseLongTermRetentionBackupLegalHold` for managing legal hold immutability on LTR backups.
3327

28+
## Version 6.2.0
29+
* Improved parameter validation for the EnableSoftDelete and SoftDeleteRetentionDays parameters.
30+
* Added `EnableSoftDelete` and `SoftDeleteRetentionDays` to `New-AzSqlServer` to support soft-delete retention
31+
* Added `EnableSoftDelete` and `SoftDeleteRetentionDays` to `Set-AzSqlServer` to support soft-delete retention
32+
* Added `Restore-AzSqlServer` cmdlet to restore a deleted Azure SQL server within the retention period
33+
3434
## Version 6.1.0
3535
* Fixed `New-AzSqlDatabaseExport` and `New-AzSqlDatabaseImport` to use SQL Authentication with ManagedIdentity without any mandatory password
3636
* Added `MemorySizeInGB` parameter to `New-AzSqlInstance`, `Set-AzSqlInstance` to enable the creation of instances with flexible memory

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
namespace Microsoft.Azure.Commands.Sql.Database_Backup.Cmdlet
2525
{
26-
[CmdletPreview()]
26+
[CmdletPreview("Legal Hold feature for SQL Long Term Retention backups is currently in Public Preview")]
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
namespace Microsoft.Azure.Commands.Sql.Database_Backup.Cmdlet
2424
{
25-
[CmdletPreview()]
25+
[CmdletPreview("Legal Hold feature for SQL Long Term Retention backups is currently in Public Preview")]
2626
[Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseLongTermRetentionBackupLegalHold", DefaultParameterSetName = SetLegalHoldDefaultSet, SupportsShouldProcess = true), OutputType(typeof(AzureSqlDatabaseLongTermRetentionBackupModel))]
2727
public class SetAzureRmSqlDatabaseLongTermRetentionBackupLegalHold : AzureSqlDatabaseLongTermRetentionBackupCmdletBase<AzureSqlDatabaseLongTermRetentionBackupModel>
2828
{

src/Sql/Sql/help/Remove-AzSqlDatabaseLongTermRetentionBackupLegalHold.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Remove-AzSqlDatabaseLongTermRetentionBackupLegalHold
99

1010
## SYNOPSIS
11-
Removes legal hold immutability on an LTR backup.
11+
Removes legal hold immutability on an LTR backup. (Public Preview)
1212

1313
## SYNTAX
1414

src/Sql/Sql/help/Set-AzSqlDatabaseLongTermRetentionBackupLegalHold.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Set-AzSqlDatabaseLongTermRetentionBackupLegalHold
99

1010
## SYNOPSIS
11-
Set legal hold immutability on an LTR backup.
11+
Set legal hold immutability on an LTR backup. (Public Preview)
1212

1313
## SYNTAX
1414

0 commit comments

Comments
 (0)