Share via


DiagnosticCondition Constructors

Definition

Overloads

DiagnosticCondition()

Initializes a new instance of the DiagnosticCondition class.

DiagnosticCondition(String, String, String)

Initializes a new instance of the DiagnosticCondition class.

DiagnosticCondition()

Initializes a new instance of the DiagnosticCondition class.

public DiagnosticCondition ();
Public Sub New ()

Applies to

DiagnosticCondition(String, String, String)

Initializes a new instance of the DiagnosticCondition class.

public DiagnosticCondition (string since = default, string code = default, string message = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.DiagnosticCondition : string * string * string -> Microsoft.Azure.Management.StreamAnalytics.Models.DiagnosticCondition
Public Sub New (Optional since As String = Nothing, Optional code As String = Nothing, Optional message As String = Nothing)

Parameters

since
String

The UTC timestamp of when the condition started. Customers should be able to find a corresponding event in the ops log around this time.

code
String

The opaque diagnostic code.

message
String

The human-readable message describing the condition in detail. Localized in the Accept-Language of the client request.

Applies to