Skip to content

Commit ea8f48b

Browse files
authored
Merge pull request #1 from mudit794/mudit794-patch-1
Add operational excellence category to validate set of input
2 parents bbfab16 + af3d3e7 commit ea8f48b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Advisor/Advisor/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
- Additional information about change #1
2020
-->
2121
## Upcoming Release
22+
* Added new category "Operational Excellence"
2223

2324
## Version 1.0.1
2425
* Fixed miscellaneous typos across module

src/Advisor/Advisor/Cmdlets/GetAzAdvisorRecommendation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class GetAzAdvisorRecommendation : ResourceAdvisorBaseCmdlet
5252
/// </summary>
5353
[Parameter(ParameterSetName = "IdParameterSet", Mandatory = false, HelpMessage = "Category of the recommendation")]
5454
[Parameter(ParameterSetName = "NameParameterSet", Mandatory = false, HelpMessage = "Category of the recommendation")]
55-
[ValidateSet("Cost", "HighAvailability", "Performance", "Security")]
55+
[ValidateSet("Cost", "HighAvailability", "OperationalExcellence", "Performance", "Security")]
5656
public string Category { get; set; }
5757

5858
/// <summary>
@@ -96,4 +96,4 @@ public override void ExecuteCmdlet()
9696
this.WriteObject(results, true);
9797
}
9898
}
99-
}
99+
}

0 commit comments

Comments
 (0)