Skip to content

Commit 74defc4

Browse files
author
Anil Kumar Yelam
committed
Removed position attributes for new parameters. Added more detail in changelog.
1 parent 8e4741e commit 74defc4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/ResourceManager/Compute/ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
-->
2020
## Current Release
2121
* New parameters in New-AzureRmVMSqlServerAutoBackupConfig cmdlet to support Auto Backup for SQL Server 2016 VMs.
22+
- BackupSystemDbs : Specifies if system databases should be added to Sql Server Managed Backup.
23+
- BackupScheduleType : Specifies the type of managed backup schedule, manual or automated. If it's manual, schedule settings need to be specified.
24+
- FullBackupFrequency : Specifies the frequency of Full Backup, daily or weekly.
25+
- FullBackupStartHour : Specifies the hour of the day when the Sql Server Full Backup should start.
26+
- FullBackupWindowInHours : Specifies the window (in hours) when Sql Server Full Backup should occur.
27+
- LogBackupFrequencyInMinutes : Specifies the frequency of Sql Server Log Backup.
2228
* New-AzureVMSqlServer* cmdlets are renamed to New-AzureRmVMSqlServer* now. Old ones will continue to work however.
2329

2430
## Version 2.4.0

src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/NewAzureVMSqlServerAutoBackupConfig.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ public SecureString StorageKey
122122

123123
[Parameter(
124124
Mandatory = false,
125-
Position = 6,
126125
ValueFromPipelineByPropertyName = true,
127126
HelpMessage = "Backup system databases")]
128127
public SwitchParameter BackupSystemDbs
@@ -133,7 +132,6 @@ public SwitchParameter BackupSystemDbs
133132

134133
[Parameter(
135134
Mandatory = false,
136-
Position = 7,
137135
ValueFromPipelineByPropertyName = true,
138136
HelpMessage = "Backup schedule type, manual or automated")]
139137
[ValidateSet(ValidateSetValues.Manual, ValidateSetValues.Automated, IgnoreCase = true)]
@@ -145,7 +143,6 @@ public string BackupScheduleType
145143

146144
[Parameter(
147145
Mandatory = false,
148-
Position = 8,
149146
ValueFromPipelineByPropertyName = true,
150147
HelpMessage = "Sql Server Full Backup frequency, daily or weekly")]
151148
[ValidateSet(ValidateSetValues.Daily, ValidateSetValues.Weekly, IgnoreCase = true)]
@@ -157,7 +154,6 @@ public string FullBackupFrequency
157154

158155
[Parameter(
159156
Mandatory = false,
160-
Position = 9,
161157
ValueFromPipelineByPropertyName = true,
162158
HelpMessage = "Hour of the day (0-23) when the Sql Server Full Backup should start")]
163159
[ValidateRange(0, 23)]
@@ -169,7 +165,6 @@ public int? FullBackupStartHour
169165

170166
[Parameter(
171167
Mandatory = false,
172-
Position = 10,
173168
ValueFromPipelineByPropertyName = true,
174169
HelpMessage = "Sql Server Full Backup window in hours")]
175170
[ValidateRange(1, 23)]
@@ -181,7 +176,6 @@ public int? FullBackupWindowInHours
181176

182177
[Parameter(
183178
Mandatory = false,
184-
Position = 11,
185179
ValueFromPipelineByPropertyName = true,
186180
HelpMessage = "Sql Server Log Backup frequency, once every 1-60 minutes")]
187181
[ValidateRange(1, 60)]

0 commit comments

Comments
 (0)