Udostępnij za pośrednictwem


RecommendedActionErrorInfo Constructors

Definition

Overloads

RecommendedActionErrorInfo()

Initializes a new instance of the RecommendedActionErrorInfo class.

RecommendedActionErrorInfo(String, Nullable<IsRetryable>)

Initializes a new instance of the RecommendedActionErrorInfo class.

RecommendedActionErrorInfo()

Initializes a new instance of the RecommendedActionErrorInfo class.

public RecommendedActionErrorInfo ();
Public Sub New ()

Applies to

RecommendedActionErrorInfo(String, Nullable<IsRetryable>)

Initializes a new instance of the RecommendedActionErrorInfo class.

public RecommendedActionErrorInfo (string errorCode = default, Microsoft.Azure.Management.Sql.Models.IsRetryable? isRetryable = default);
new Microsoft.Azure.Management.Sql.Models.RecommendedActionErrorInfo : string * Nullable<Microsoft.Azure.Management.Sql.Models.IsRetryable> -> Microsoft.Azure.Management.Sql.Models.RecommendedActionErrorInfo
Public Sub New (Optional errorCode As String = Nothing, Optional isRetryable As Nullable(Of IsRetryable) = Nothing)

Parameters

errorCode
String

Gets the reason why the recommended action was put to error state. e.g., DatabaseHasQdsOff, IndexAlreadyExists

isRetryable
Nullable<IsRetryable>

Gets whether the error could be ignored and recommended action could be retried. Possible values are: Yes/No. Possible values include: 'Yes', 'No'

Applies to