JobReleaseTaskExecutionInformation interface
An interface representing JobReleaseTaskExecutionInformation.
Properties
container |
Information about the container under which the Task is executing. This property is set only if the Task runs in a container context. |
end |
The time at which the Job Release Task completed. This property is set only if the Task is in the Completed state. |
exit |
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. |
failure |
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 | The result of the Task execution. If the value is 'failed', then the details of the failure can be found in the failureInfo property. Possible values include: 'success', 'failure' |
start |
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. |
state | The current state of the Job Release Task on the Compute Node. Possible values include: 'running', 'completed' |
task |
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. |
task |
The URL to the root directory of the Job Release Task on the Compute Node. |
Property Details
containerInfo
Information about the container under which the Task is executing. This property is set only if the Task runs in a container context.
containerInfo?: TaskContainerExecutionInformation
Property Value
endTime
The time at which the Job Release Task completed. This property is set only if the Task is in the Completed state.
endTime?: Date
Property Value
Date
exitCode
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.
exitCode?: number
Property Value
number
failureInfo
Information describing the Task failure, if any. This property is set only if the Task is in the completed state and encountered a failure.
failureInfo?: TaskFailureInformation
Property Value
result
The result of the Task execution. If the value is 'failed', then the details of the failure can be found in the failureInfo property. Possible values include: 'success', 'failure'
result?: TaskExecutionResult
Property Value
startTime
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.
startTime: Date
Property Value
Date
state
The current state of the Job Release Task on the Compute Node. Possible values include: 'running', 'completed'
state: JobReleaseTaskState
Property Value
taskRootDirectory
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.
taskRootDirectory?: string
Property Value
string
taskRootDirectoryUrl
The URL to the root directory of the Job Release Task on the Compute Node.
taskRootDirectoryUrl?: string
Property Value
string