Share via


QueryMetric Constructors

Definition

Overloads

QueryMetric()

Initializes a new instance of the QueryMetric class.

QueryMetric(String, String, Nullable<QueryMetricUnit>, Nullable<Double>)

Initializes a new instance of the QueryMetric class.

QueryMetric()

Initializes a new instance of the QueryMetric class.

public QueryMetric ();
Public Sub New ()

Applies to

QueryMetric(String, String, Nullable<QueryMetricUnit>, Nullable<Double>)

Initializes a new instance of the QueryMetric class.

public QueryMetric (string name = default, string displayName = default, Microsoft.Azure.Management.Synapse.Models.QueryMetricUnit? unit = default, double? value = default);
new Microsoft.Azure.Management.Synapse.Models.QueryMetric : string * string * Nullable<Microsoft.Azure.Management.Synapse.Models.QueryMetricUnit> * Nullable<double> -> Microsoft.Azure.Management.Synapse.Models.QueryMetric
Public Sub New (Optional name As String = Nothing, Optional displayName As String = Nothing, Optional unit As Nullable(Of QueryMetricUnit) = Nothing, Optional value As Nullable(Of Double) = Nothing)

Parameters

name
String

The name of the metric

displayName
String

The name of the metric for display in user interface

unit
Nullable<QueryMetricUnit>

The unit of measurement. Possible values include: 'percentage', 'KB', 'microseconds'

value
Nullable<Double>

The measured value

Applies to