Share via


JobPropertiesExecutionInfo Constructors

Definition

Overloads

JobPropertiesExecutionInfo()

Initializes a new instance of the JobPropertiesExecutionInfo class.

JobPropertiesExecutionInfo(Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>, IList<BatchAIError>)

Initializes a new instance of the JobPropertiesExecutionInfo class.

JobPropertiesExecutionInfo()

Initializes a new instance of the JobPropertiesExecutionInfo class.

public JobPropertiesExecutionInfo ();
Public Sub New ()

Applies to

JobPropertiesExecutionInfo(Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>, IList<BatchAIError>)

Initializes a new instance of the JobPropertiesExecutionInfo class.

public JobPropertiesExecutionInfo (DateTime? startTime = default, DateTime? endTime = default, int? exitCode = default, System.Collections.Generic.IList<Microsoft.Azure.Management.BatchAI.Models.BatchAIError> errors = default);
new Microsoft.Azure.Management.BatchAI.Models.JobPropertiesExecutionInfo : Nullable<DateTime> * Nullable<DateTime> * Nullable<int> * System.Collections.Generic.IList<Microsoft.Azure.Management.BatchAI.Models.BatchAIError> -> Microsoft.Azure.Management.BatchAI.Models.JobPropertiesExecutionInfo
Public Sub New (Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional exitCode As Nullable(Of Integer) = Nothing, Optional errors As IList(Of BatchAIError) = Nothing)

Parameters

startTime
Nullable<DateTime>

Start time.

endTime
Nullable<DateTime>

End time.

exitCode
Nullable<Int32>

Exit code.

errors
IList<BatchAIError>

Errors.

Applies to