QueryMetricInterval Constructors

Definition

Overloads

QueryMetricInterval()

Initializes a new instance of the QueryMetricInterval class.

QueryMetricInterval(String, String, Nullable<Int64>, IList<QueryMetricProperties>)

Initializes a new instance of the QueryMetricInterval class.

QueryMetricInterval()

Initializes a new instance of the QueryMetricInterval class.

public QueryMetricInterval ();
Public Sub New ()

Applies to

QueryMetricInterval(String, String, Nullable<Int64>, IList<QueryMetricProperties>)

Initializes a new instance of the QueryMetricInterval class.

public QueryMetricInterval (string intervalStartTime = default, string intervalType = default, long? executionCount = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.QueryMetricProperties> metrics = default);
new Microsoft.Azure.Management.Sql.Models.QueryMetricInterval : string * string * Nullable<int64> * System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.QueryMetricProperties> -> Microsoft.Azure.Management.Sql.Models.QueryMetricInterval
Public Sub New (Optional intervalStartTime As String = Nothing, Optional intervalType As String = Nothing, Optional executionCount As Nullable(Of Long) = Nothing, Optional metrics As IList(Of QueryMetricProperties) = Nothing)

Parameters

intervalStartTime
String

The start time for the metric interval (ISO-8601 format).

intervalType
String

Interval type (length). Possible values include: 'PT1H', 'P1D'

executionCount
Nullable<Int64>

Execution count of a query in this interval.

metrics
IList<QueryMetricProperties>

List of metric objects for this interval

Applies to