Compartilhar via


ComputeBatchModelFactory.BatchJobReleaseTaskExecutionInfo Method

Definition

Initializes a new instance of BatchJobReleaseTaskExecutionInfo.

public static Azure.Compute.Batch.BatchJobReleaseTaskExecutionInfo BatchJobReleaseTaskExecutionInfo (DateTimeOffset startTime = default, DateTimeOffset? endTime = default, Azure.Compute.Batch.BatchJobReleaseTaskState state = default, string taskRootDirectory = default, string taskRootDirectoryUrl = default, int? exitCode = default, Azure.Compute.Batch.BatchTaskContainerExecutionInfo containerInfo = default, Azure.Compute.Batch.BatchTaskFailureInfo failureInfo = default, Azure.Compute.Batch.BatchTaskExecutionResult? result = default);
static member BatchJobReleaseTaskExecutionInfo : DateTimeOffset * Nullable<DateTimeOffset> * Azure.Compute.Batch.BatchJobReleaseTaskState * string * string * Nullable<int> * Azure.Compute.Batch.BatchTaskContainerExecutionInfo * Azure.Compute.Batch.BatchTaskFailureInfo * Nullable<Azure.Compute.Batch.BatchTaskExecutionResult> -> Azure.Compute.Batch.BatchJobReleaseTaskExecutionInfo
Public Shared Function BatchJobReleaseTaskExecutionInfo (Optional startTime As DateTimeOffset = Nothing, Optional endTime As Nullable(Of DateTimeOffset) = Nothing, Optional state As BatchJobReleaseTaskState = Nothing, Optional taskRootDirectory As String = Nothing, Optional taskRootDirectoryUrl As String = Nothing, Optional exitCode As Nullable(Of Integer) = Nothing, Optional containerInfo As BatchTaskContainerExecutionInfo = Nothing, Optional failureInfo As BatchTaskFailureInfo = Nothing, Optional result As Nullable(Of BatchTaskExecutionResult) = Nothing) As BatchJobReleaseTaskExecutionInfo

Parameters

startTime
DateTimeOffset

The time at which the Task started running. If the Task has been restarted or retried, this is the most recent time at which the Task started running.

endTime
Nullable<DateTimeOffset>

The time at which the Job Release Task completed. This property is set only if the Task is in the Completed state.

state
BatchJobReleaseTaskState

The current state of the Job Release Task on the Compute Node.

taskRootDirectory
String

The root directory of the Job Release Task on the Compute Node. You can use this path to retrieve files created by the Task, such as log files.

taskRootDirectoryUrl
String

The URL to the root directory of the Job Release Task on the Compute Node.

exitCode
Nullable<Int32>

The exit code of the program specified on the Task command line. This parameter is returned only if the Task is in the completed state. The exit code for a process reflects the specific convention implemented by the application developer for that process. If you use the exit code value to make decisions in your code, be sure that you know the exit code convention used by the application process. Note that the exit code may also be generated by the Compute Node operating system, such as when a process is forcibly terminated.

containerInfo
BatchTaskContainerExecutionInfo

Information about the container under which the Task is executing. This property is set only if the Task runs in a container context.

failureInfo
BatchTaskFailureInfo

Information describing the Task failure, if any. This property is set only if the Task is in the completed state and encountered a failure.

result
Nullable<BatchTaskExecutionResult>

The result of the Task execution. If the value is 'failed', then the details of the failure can be found in the failureInfo property.

Returns

A new BatchJobReleaseTaskExecutionInfo instance for mocking.

Applies to