Skip to content

Commit 9fd6d34

Browse files
authored
Merge pull request #4579 from jameswelle/patch-1
Add New status to valid values
2 parents c65fc0f + 08644d8 commit 9fd6d34

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/ResourceManager/Automation/Commands.Automation/Cmdlet/GetAzureAutomationDscCompilationJob.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class GetAzureAutomationDscCompilationJob : AzureAutomationBaseCmdlet
4747
/// </summary>
4848
[Parameter(ParameterSetName = AutomationCmdletParameterSets.ByConfigurationName, Mandatory = false, HelpMessage = "Filter jobs based on their status.")]
4949
[Parameter(ParameterSetName = AutomationCmdletParameterSets.ByAll, Mandatory = false, HelpMessage = "Filter jobs based on their status.")]
50-
[ValidateSet("Completed", "Failed", "Queued", "Starting", "Resuming", "Running", "Stopped", "Stopping", "Suspended", "Suspending", "Activating")]
50+
[ValidateSet("Completed", "Failed", "Queued", "Starting", "Resuming", "Running", "Stopped", "Stopping", "Suspended", "Suspending", "Activating", "New")]
5151
public string Status { get; set; }
5252

5353
/// <summary>

src/ResourceManager/Automation/Commands.Automation/help/Get-AzureRmAutomationDscCompilationJob.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ Valid values are:
167167
- Suspended
168168
- Suspending
169169
- Activating
170+
- New
170171
171172
```yaml
172173
Type: String

0 commit comments

Comments
 (0)