JobExecutionInformation 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
JobExecutionInformation() |
Initializes a new instance of the JobExecutionInformation class. |
JobExecutionInformation(DateTime, Nullable<DateTime>, String, JobSchedulingError, String) |
Initializes a new instance of the JobExecutionInformation class. |
JobExecutionInformation()
- Source:
- JobExecutionInformation.cs
Initializes a new instance of the JobExecutionInformation class.
public JobExecutionInformation ();
Public Sub New ()
Applies to
JobExecutionInformation(DateTime, Nullable<DateTime>, String, JobSchedulingError, String)
- Source:
- JobExecutionInformation.cs
Initializes a new instance of the JobExecutionInformation class.
public JobExecutionInformation (DateTime startTime, DateTime? endTime = default, string poolId = default, Microsoft.Azure.Batch.Protocol.Models.JobSchedulingError schedulingError = default, string terminateReason = default);
new Microsoft.Azure.Batch.Protocol.Models.JobExecutionInformation : DateTime * Nullable<DateTime> * string * Microsoft.Azure.Batch.Protocol.Models.JobSchedulingError * string -> Microsoft.Azure.Batch.Protocol.Models.JobExecutionInformation
Public Sub New (startTime As DateTime, Optional endTime As Nullable(Of DateTime) = Nothing, Optional poolId As String = Nothing, Optional schedulingError As JobSchedulingError = Nothing, Optional terminateReason As String = Nothing)
Parameters
- startTime
- DateTime
The start time of the Job.
- poolId
- String
The ID of the Pool to which this Job is assigned.
- schedulingError
- JobSchedulingError
Details of any error encountered by the service in starting the Job.
- terminateReason
- String
A string describing the reason the Job ended.
Applies to
Azure SDK for .NET