Condividi tramite


JobInnerError Constructors

Definition

Overloads

Name Description
JobInnerError()

Initializes a new instance of the JobInnerError class.

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

Initializes a new instance of the JobInnerError class.

JobInnerError()

Initializes a new instance of the JobInnerError class.

public JobInnerError();
Public Sub New ()

Applies to

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

Initializes a new instance of the JobInnerError class.

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

Parameters

diagnosticCode
Nullable<Int32>

the diagnostic error code.

severity
Nullable<SeverityTypes>

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

details
String

the details of the error message.

component
String

the component that failed.

errorId
String

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

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.

message
String

the user friendly error message for the failure.

resolution
String

the recommended resolution for the failure, if any.

source
String

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

description
String

the error message description

innerError
JobInnerError

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

Applies to