Class MediaJobError
- java.lang.Object
-
- com.microsoft.azure.eventgrid.models.MediaJobError
-
public class MediaJobError extends Object
Details of JobOutput errors.
-
-
Constructor Summary
Constructors Constructor Description MediaJobError()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MediaJobErrorCategorycategory()Get helps with categorization of errors.MediaJobErrorCodecode()Get error code describing the error.List<MediaJobErrorDetail>details()Get an array of details about specific errors that led to this reported error.Stringmessage()Get a human-readable language-dependent representation of the error.MediaJobRetryretry()Get indicates that it may be possible to retry the Job.
-
-
-
Method Detail
-
code
public MediaJobErrorCode code()
Get error code describing the error. Possible values include: 'ServiceError', 'ServiceTransientError', 'DownloadNotAccessible', 'DownloadTransientError', 'UploadNotAccessible', 'UploadTransientError', 'ConfigurationUnsupported', 'ContentMalformed', 'ContentUnsupported'.- Returns:
- the code value
-
message
public String message()
Get a human-readable language-dependent representation of the error.- Returns:
- the message value
-
category
public MediaJobErrorCategory category()
Get helps with categorization of errors. Possible values include: 'Service', 'Download', 'Upload', 'Configuration', 'Content'.- Returns:
- the category value
-
retry
public MediaJobRetry retry()
Get indicates that it may be possible to retry the Job. If retry is unsuccessful, please contact Azure support via Azure Portal. Possible values include: 'DoNotRetry', 'MayRetry'.- Returns:
- the retry value
-
details
public List<MediaJobErrorDetail> details()
Get an array of details about specific errors that led to this reported error.- Returns:
- the details value
-
-