Package com.microsoft.azure.batch
Class TaskFailureInformationCodes
- java.lang.Object
-
- com.microsoft.azure.batch.TaskFailureInformationCodes
-
public final class TaskFailureInformationCodes extends Object
Contains error codes specific to task failure information.
-
-
Field Summary
Fields Modifier and Type Field Description static String
ApplicationPackageError
An error occurred when trying to deploy a required application package.static String
BlobAccessDenied
Access was denied when trying to download a resource file required for the task.static String
BlobDownloadMiscError
An error occurred when trying to download a resource file required for the task.static String
BlobDownloadTimedOut
A timeout occurred when downloading a resource file required for the task.static String
BlobNotFound
A resource file required for the task does not exist.static String
CommandLaunchFailed
An error occurred when launching the task's command line.static String
CommandProgramNotFound
The program specified in the task's command line was not found.static String
DiskFull
The compute node disk ran out of space when downloading the resource files required for the task.static String
ResourceDirectoryCreateFailed
The compute node could not create a directory for the task's resource files.static String
ResourceFileCreateFailed
The compute node could not create a local file when trying to download a resource file required for the task.static String
ResourceFileWriteFailed
The compute node could not write to a local file when trying to download a resource file required for the task.static String
TaskEnded
The task ended.static String
Unknown
The reason for the scheduling error is unknown.
-
Constructor Summary
Constructors Constructor Description TaskFailureInformationCodes()
-
-
-
Field Detail
-
ApplicationPackageError
public static final String ApplicationPackageError
An error occurred when trying to deploy a required application package.- See Also:
- Constant Field Values
-
BlobAccessDenied
public static final String BlobAccessDenied
Access was denied when trying to download a resource file required for the task.- See Also:
- Constant Field Values
-
BlobDownloadMiscError
public static final String BlobDownloadMiscError
An error occurred when trying to download a resource file required for the task.- See Also:
- Constant Field Values
-
BlobDownloadTimedOut
public static final String BlobDownloadTimedOut
A timeout occurred when downloading a resource file required for the task.- See Also:
- Constant Field Values
-
BlobNotFound
public static final String BlobNotFound
A resource file required for the task does not exist.- See Also:
- Constant Field Values
-
CommandLaunchFailed
public static final String CommandLaunchFailed
An error occurred when launching the task's command line.- See Also:
- Constant Field Values
-
CommandProgramNotFound
public static final String CommandProgramNotFound
The program specified in the task's command line was not found.- See Also:
- Constant Field Values
-
DiskFull
public static final String DiskFull
The compute node disk ran out of space when downloading the resource files required for the task.- See Also:
- Constant Field Values
-
ResourceDirectoryCreateFailed
public static final String ResourceDirectoryCreateFailed
The compute node could not create a directory for the task's resource files.- See Also:
- Constant Field Values
-
ResourceFileCreateFailed
public static final String ResourceFileCreateFailed
The compute node could not create a local file when trying to download a resource file required for the task.- See Also:
- Constant Field Values
-
ResourceFileWriteFailed
public static final String ResourceFileWriteFailed
The compute node could not write to a local file when trying to download a resource file required for the task.- See Also:
- Constant Field Values
-
TaskEnded
public static final String TaskEnded
The task ended.- See Also:
- Constant Field Values
-
Unknown
public static final String Unknown
The reason for the scheduling error is unknown.- See Also:
- Constant Field Values
-
-