Skip to content

Commit 33458b7

Browse files
SethuramSSethuram SVeryEarly
authored
Add list of allowed classifications in description for Maintenance Configuration (#26909)
* Add list of allowed classifications in description for Maintenance Configuration * Update help markdown --------- Co-authored-by: Sethuram S <[email protected]> Co-authored-by: Yabo Hu <[email protected]>
1 parent adf1ee2 commit 33458b7

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/Maintenance/Maintenance/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
-->
2020

2121
## Upcoming Release
22+
* Added list of allowed classifications in description for Maintenance Configuration
2223
* Fixed incorrect parameter mapping in Get-AzApplyUpdate
2324

2425
## Version 1.4.3

src/Maintenance/Maintenance/MaintenanceConfiguration/MaintenanceConfigurationCreateOrUpdateMethod.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ public override void ExecuteCmdlet()
233233

234234
[Parameter(
235235
Mandatory = false,
236-
HelpMessage = "List of linux patch classifications")]
236+
HelpMessage = "List of linux patch classifications. Allowed values are 'Critical', 'Security', and 'Other'.")]
237237
public HashSet<string> LinuxParameterClassificationToInclude { get; set; }
238238

239239
[Parameter(
@@ -243,12 +243,12 @@ public override void ExecuteCmdlet()
243243

244244
[Parameter(
245245
Mandatory = false,
246-
HelpMessage = "List of KBs to exclude during vm patch operationn")]
246+
HelpMessage = "List of KBs to exclude during vm patch operation")]
247247
public HashSet<string> WindowParameterKbNumberToExclude { get; set; }
248248

249249
[Parameter(
250250
Mandatory = false,
251-
HelpMessage = "List of windows patch classification")]
251+
HelpMessage = "List of windows patch classification. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.")]
252252
public HashSet<string> WindowParameterClassificationToInclude { get; set; }
253253

254254
[Parameter(

src/Maintenance/Maintenance/help/New-AzMaintenanceConfiguration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ Accept wildcard characters: False
182182
```
183183
184184
### -LinuxParameterClassificationToInclude
185-
List of linux patch classifications
185+
List of linux patch classifications. Allowed values are 'Critical', 'Security', and 'Other'.
186186
187187
```yaml
188188
Type: System.Collections.Generic.HashSet`1[System.String]
@@ -392,7 +392,7 @@ Accept wildcard characters: False
392392
```
393393
394394
### -WindowParameterClassificationToInclude
395-
List of windows patch classification
395+
List of windows patch classification. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
396396
397397
```yaml
398398
Type: System.Collections.Generic.HashSet`1[System.String]

0 commit comments

Comments
 (0)