Skip to content

Commit e5a484f

Browse files
committed
fixed dsc bugs-2
1 parent 3b62133 commit e5a484f

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class GetAzureAutomationDscCompilationJobOutput : AzureAutomationBaseCmdl
3838
public Guid Id { get; set; }
3939

4040
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The stream type.")]
41-
[ValidateSet("Warning", "Error", "Debug", "Verbose", "Any")]
41+
[ValidateSet("Warning", "Error", "Verbose", "Any")]
4242
public CompilationJobStreamType Stream { get; set; }
4343

4444
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Retrieves output created after this time")]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class StartAzureAutomationDscCompilationJob : AzureAutomationBaseCmdlet
3939
/// <summary>
4040
/// Gets or sets the configuration parameters.
4141
/// </summary>
42-
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The compilation job parameters.")]
42+
[Parameter(Mandatory = false, HelpMessage = "The compilation job parameters.")]
4343
public IDictionary Parameters { get; set; }
4444

4545
/// <summary>

src/ResourceManager/Automation/Commands.Automation/Common/CompilationJobStreamType.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,6 @@ public enum CompilationJobStreamType
3535
/// </summary>
3636
Error,
3737

38-
/// <summary>
39-
/// Indicates Debug Record streams
40-
/// </summary>
41-
Debug,
42-
4338
/// <summary>
4439
/// Indicates Verbose Record streams
4540
/// </summary>

0 commit comments

Comments
 (0)