Package com.azure.compute.batch.models
Class BatchJobReleaseTaskExecutionInfo
java.lang.Object
com.azure.compute.batch.models.BatchJobReleaseTaskExecutionInfo
- All Implemented Interfaces:
com.azure.json.JsonSerializable<BatchJobReleaseTaskExecutionInfo>
public final class BatchJobReleaseTaskExecutionInfo
extends Object
implements com.azure.json.JsonSerializable<BatchJobReleaseTaskExecutionInfo>
Contains information about the execution of a Job Release Task on a Compute
Node.
-
Method Summary
Modifier and TypeMethodDescriptionfromJson
(com.azure.json.JsonReader jsonReader) Reads an instance of BatchJobReleaseTaskExecutionInfo from the JsonReader.Get the containerInfo property: Information about the container under which the Task is executing.Get the endTime property: The time at which the Job Release Task completed.Get the exitCode property: The exit code of the program specified on the Task command line.Get the failureInfo property: Information describing the Task failure, if any.Get the result property: The result of the Task execution.Get the startTime property: The time at which the Task started running.getState()
Get the state property: The current state of the Job Release Task on the Compute Node.Get the taskRootDirectory property: The root directory of the Job Release Task on the Compute Node.Get the taskRootDirectoryUrl property: The URL to the root directory of the Job Release Task on the Compute Node.com.azure.json.JsonWriter
toJson
(com.azure.json.JsonWriter jsonWriter) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.azure.json.JsonSerializable
toJson, toJson, toJsonBytes, toJsonString
-
Method Details
-
getStartTime
Get the startTime property: 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.- Returns:
- the startTime value.
-
getEndTime
Get the endTime property: The time at which the Job Release Task completed. This property is set only if the Task is in the Completed state.- Returns:
- the endTime value.
-
getState
Get the state property: The current state of the Job Release Task on the Compute Node.- Returns:
- the state value.
-
getTaskRootDirectory
Get the taskRootDirectory property: 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.- Returns:
- the taskRootDirectory value.
-
getTaskRootDirectoryUrl
Get the taskRootDirectoryUrl property: The URL to the root directory of the Job Release Task on the Compute Node.- Returns:
- the taskRootDirectoryUrl value.
-
getExitCode
Get the exitCode property: 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.- Returns:
- the exitCode value.
-
getContainerInfo
Get the containerInfo property: Information about the container under which the Task is executing. This property is set only if the Task runs in a container context.- Returns:
- the containerInfo value.
-
getFailureInfo
Get the failureInfo property: Information describing the Task failure, if any. This property is set only if the Task is in the completed state and encountered a failure.- Returns:
- the failureInfo value.
-
getResult
Get the result property: 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:
- the result value.
-
toJson
- Specified by:
toJson
in interfacecom.azure.json.JsonSerializable<BatchJobReleaseTaskExecutionInfo>
- Throws:
IOException
-
fromJson
public static BatchJobReleaseTaskExecutionInfo fromJson(com.azure.json.JsonReader jsonReader) throws IOException Reads an instance of BatchJobReleaseTaskExecutionInfo from the JsonReader.- Parameters:
jsonReader
- The JsonReader being read.- Returns:
- An instance of BatchJobReleaseTaskExecutionInfo if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.
- Throws:
IllegalStateException
- If the deserialized JSON object was missing any required properties.IOException
- If an error occurs while reading the BatchJobReleaseTaskExecutionInfo.
-