JobStream Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
JobStream() |
Initializes a new instance of the JobStream class. |
JobStream(String, String, DateTimeOffset, String, String, String, IDictionary<String,Object>) |
Initializes a new instance of the JobStream class. |
JobStream()
Initializes a new instance of the JobStream class.
public JobStream ();
Public Sub New ()
Applies to
JobStream(String, String, DateTimeOffset, String, String, String, IDictionary<String,Object>)
Initializes a new instance of the JobStream class.
public JobStream (string id = default, string jobStreamId = default, DateTimeOffset time = default, string streamType = default, string streamText = default, string summary = default, System.Collections.Generic.IDictionary<string,object> value = default);
new Microsoft.Azure.Management.Automation.Models.JobStream : string * string * DateTimeOffset * string * string * string * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Azure.Management.Automation.Models.JobStream
Public Sub New (Optional id As String = Nothing, Optional jobStreamId As String = Nothing, Optional time As DateTimeOffset = Nothing, Optional streamType As String = Nothing, Optional streamText As String = Nothing, Optional summary As String = Nothing, Optional value As IDictionary(Of String, Object) = Nothing)
Parameters
- id
- String
Gets or sets the id of the resource.
- jobStreamId
- String
Gets or sets the id of the job stream.
- time
- DateTimeOffset
Gets or sets the creation time of the job.
- streamType
- String
Gets or sets the stream type. Possible values include: 'Progress', 'Output', 'Warning', 'Error', 'Debug', 'Verbose', 'Any'
- streamText
- String
Gets or sets the stream text.
- summary
- String
Gets or sets the summary.
- value
- IDictionary<String,Object>
Gets or sets the values of the job stream.
Applies to
Azure SDK for .NET