You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ResourceManager/Automation/Commands.Automation/Cmdlet/GetAzureAutomationDscCompilationJob.cs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -40,30 +40,30 @@ public class GetAzureAutomationDscCompilationJob : AzureAutomationBaseCmdlet
40
40
/// <summary>
41
41
/// Gets or sets the runbook name of the job.
42
42
/// </summary>
43
-
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByConfigurationName,Mandatory=true,HelpMessage="The configuration name of the job.")]
43
+
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByConfigurationName,Mandatory=true,HelpMessage="The configuration name of the compilation job.")]
44
44
[Alias("Name")]
45
45
publicstringConfigurationName{get;set;}
46
46
47
47
/// <summary>
48
48
/// Gets or sets the status of a job.
49
49
/// </summary>
50
-
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByConfigurationName,Mandatory=false,HelpMessage="The configuration name of the job.")]
50
+
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByConfigurationName,Mandatory=false,HelpMessage="Filter jobs based on their status.")]
51
51
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByAll,Mandatory=false,HelpMessage="Filter jobs based on their status.")]
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByConfigurationName,Mandatory=false,HelpMessage="The configuration name of the job.")]
59
-
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByAll,Mandatory=false,HelpMessage="Filter jobs so that job start time >= StartTime.")]
58
+
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByConfigurationName,Mandatory=false,HelpMessage="Filter compilation jobs so that the compilation job start time >= StartTime.")]
59
+
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByAll,Mandatory=false,HelpMessage="Filter compilation jobs so that the compilation job start time >= StartTime.")]
60
60
publicDateTimeOffset?StartTime{get;set;}
61
61
62
62
/// <summary>
63
63
/// Gets or sets the end time filter.
64
64
/// </summary>
65
-
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByConfigurationName,Mandatory=false,HelpMessage="The configuration name of the job.")]
66
-
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByAll,Mandatory=false,HelpMessage="Filter jobs so that job end time <= EndTime.")]
65
+
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByConfigurationName,Mandatory=false,HelpMessage="Filter compilation jobs so that the compilation job end time <= EndTime.")]
66
+
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByAll,Mandatory=false,HelpMessage="Filter compilation jobs so that the compilation job end time <= EndTime.")]
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByConfigurationName,Mandatory=false,HelpMessage="Filter node configurations by RollupStatus.")]
50
+
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByNodeConfigurationName,Mandatory=false,HelpMessage="Filter node configurations by RollupStatus.")]
51
+
[Parameter(ParameterSetName=AutomationCmdletParameterSets.ByAll,Mandatory=false,HelpMessage="Filter node configurations by RollupStatus.")]
0 commit comments