We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 964c830 commit 1795372Copy full SHA for 1795372
src/ServiceManagement/Automation/Commands.Automation/Common/StreamType.cs
@@ -20,6 +20,11 @@ namespace Microsoft.Azure.Commands.Automation.Common
20
/// </summary>
21
public enum StreamType
22
{
23
+ /// <summary>
24
+ /// Indicates Generic stream. Used for querying all the streams regardless of the type.
25
+ /// </summary>
26
+ Any,
27
+
28
/// <summary>
29
/// Indicates Progress Record streams
30
@@ -48,11 +53,6 @@ public enum StreamType
48
53
49
54
/// Indicates Verbose Record streams
50
55
51
- Verbose,
52
-
- /// <summary>
- /// Indicates Generic stream. Used for querying all the streams regardless of the type.
- /// </summary>
56
- Any
+ Verbose
57
}
58
0 commit comments