Share via


JobErrorDetails Constructors

Definition

Overloads

JobErrorDetails()

Initializes a new instance of the JobErrorDetails class.

JobErrorDetails(String, Nullable<SeverityTypes>, String, String, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String, String, String, String, JobInnerError)

Initializes a new instance of the JobErrorDetails class.

JobErrorDetails(String, String, Nullable<Int32>, String, String, String, String, Nullable<Int32>, String, String, JobInnerError, Nullable<SeverityTypes>, String, Nullable<Int32>)

Initializes a new instance of the JobErrorDetails class.

JobErrorDetails()

Initializes a new instance of the JobErrorDetails class.

public JobErrorDetails ();
Public Sub New ()

Applies to

JobErrorDetails(String, Nullable<SeverityTypes>, String, String, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String, String, String, String, JobInnerError)

Initializes a new instance of the JobErrorDetails class.

public JobErrorDetails (string errorId = default, Microsoft.Azure.Management.DataLake.Analytics.Models.SeverityTypes? severity = default, string source = default, string message = default, string description = default, string details = default, int? lineNumber = default, int? startOffset = default, int? endOffset = default, string resolution = default, string filePath = default, string helpLink = default, string internalDiagnostics = default, Microsoft.Azure.Management.DataLake.Analytics.Models.JobInnerError innerError = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.JobErrorDetails : string * Nullable<Microsoft.Azure.Management.DataLake.Analytics.Models.SeverityTypes> * string * string * string * string * Nullable<int> * Nullable<int> * Nullable<int> * string * string * string * string * Microsoft.Azure.Management.DataLake.Analytics.Models.JobInnerError -> Microsoft.Azure.Management.DataLake.Analytics.Models.JobErrorDetails
Public Sub New (Optional errorId As String = Nothing, Optional severity As Nullable(Of SeverityTypes) = Nothing, Optional source As String = Nothing, Optional message As String = Nothing, Optional description As String = Nothing, Optional details As String = Nothing, Optional lineNumber As Nullable(Of Integer) = Nothing, Optional startOffset As Nullable(Of Integer) = Nothing, Optional endOffset As Nullable(Of Integer) = Nothing, Optional resolution As String = Nothing, Optional filePath As String = Nothing, Optional helpLink As String = Nothing, Optional internalDiagnostics As String = Nothing, Optional innerError As JobInnerError = Nothing)

Parameters

errorId
String

The specific identifier for the type of error encountered in the job.

severity
Nullable<SeverityTypes>

The severity level of the failure. Possible values include: 'Warning', 'Error', 'Info', 'SevereWarning', 'Deprecated', 'UserWarning'

source
String

The ultimate source of the failure (usually either SYSTEM or USER).

message
String

The user friendly error message for the failure.

description
String

The error message description.

details
String

The details of the error message.

lineNumber
Nullable<Int32>

The specific line number in the job where the error occurred.

startOffset
Nullable<Int32>

The start offset in the job where the error was found

endOffset
Nullable<Int32>

The end offset in the job where the error was found.

resolution
String

The recommended resolution for the failure, if any.

filePath
String

The path to any supplemental error files, if any.

helpLink
String

The link to MSDN or Azure help for this type of error, if any.

internalDiagnostics
String

The internal diagnostic stack trace if the user requesting the job error details has sufficient permissions it will be retrieved, otherwise it will be empty.

innerError
JobInnerError

The inner error of this specific job error message, if any.

Applies to

JobErrorDetails(String, String, Nullable<Int32>, String, String, String, String, Nullable<Int32>, String, String, JobInnerError, Nullable<SeverityTypes>, String, Nullable<Int32>)

Initializes a new instance of the JobErrorDetails class.

public JobErrorDetails (string description = default, string details = default, int? endOffset = default, string errorId = default, string filePath = default, string helpLink = default, string internalDiagnostics = default, int? lineNumber = default, string message = default, string resolution = default, Microsoft.Azure.Management.DataLake.Analytics.Models.JobInnerError innerError = default, Microsoft.Azure.Management.DataLake.Analytics.Models.SeverityTypes? severity = default, string source = default, int? startOffset = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.JobErrorDetails : string * string * Nullable<int> * string * string * string * string * Nullable<int> * string * string * Microsoft.Azure.Management.DataLake.Analytics.Models.JobInnerError * Nullable<Microsoft.Azure.Management.DataLake.Analytics.Models.SeverityTypes> * string * Nullable<int> -> Microsoft.Azure.Management.DataLake.Analytics.Models.JobErrorDetails
Public Sub New (Optional description As String = Nothing, Optional details As String = Nothing, Optional endOffset As Nullable(Of Integer) = Nothing, Optional errorId As String = Nothing, Optional filePath As String = Nothing, Optional helpLink As String = Nothing, Optional internalDiagnostics As String = Nothing, Optional lineNumber As Nullable(Of Integer) = Nothing, Optional message As String = Nothing, Optional resolution As String = Nothing, Optional innerError As JobInnerError = Nothing, Optional severity As Nullable(Of SeverityTypes) = Nothing, Optional source As String = Nothing, Optional startOffset As Nullable(Of Integer) = Nothing)

Parameters

description
String

the error message description

details
String

the details of the error message.

endOffset
Nullable<Int32>

the end offset in the job where the error was found.

errorId
String

the specific identifier for the type of error encountered in the job.

filePath
String

the path to any supplemental error files, if any.

helpLink
String

the link to MSDN or Azure help for this type of error, if any.

internalDiagnostics
String

the internal diagnostic stack trace if the user requesting the job error details has sufficient permissions it will be retrieved, otherwise it will be empty.

lineNumber
Nullable<Int32>

the specific line number in the job where the error occured.

message
String

the user friendly error message for the failure.

resolution
String

the recommended resolution for the failure, if any.

innerError
JobInnerError

the inner error of this specific job error message, if any.

severity
Nullable<SeverityTypes>

the severity level of the failure. Possible values include: 'Warning', 'Error', 'Info', 'SevereWarning', 'Deprecated', 'UserWarning'

source
String

the ultimate source of the failure (usually either SYSTEM or USER).

startOffset
Nullable<Int32>

the start offset in the job where the error was found

Applies to