QueryInterval Constructors

Definition

Overloads

QueryInterval()

Initializes a new instance of the QueryInterval class.

QueryInterval(Nullable<DateTime>, Nullable<Double>, IList<QueryMetric>)

Initializes a new instance of the QueryInterval class.

QueryInterval()

Initializes a new instance of the QueryInterval class.

public QueryInterval ();
Public Sub New ()

Applies to

QueryInterval(Nullable<DateTime>, Nullable<Double>, IList<QueryMetric>)

Initializes a new instance of the QueryInterval class.

public QueryInterval (DateTime? intervalStartTime = default, double? executionCount = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Synapse.Models.QueryMetric> metrics = default);
new Microsoft.Azure.Management.Synapse.Models.QueryInterval : Nullable<DateTime> * Nullable<double> * System.Collections.Generic.IList<Microsoft.Azure.Management.Synapse.Models.QueryMetric> -> Microsoft.Azure.Management.Synapse.Models.QueryInterval
Public Sub New (Optional intervalStartTime As Nullable(Of DateTime) = Nothing, Optional executionCount As Nullable(Of Double) = Nothing, Optional metrics As IList(Of QueryMetric) = Nothing)

Parameters

intervalStartTime
Nullable<DateTime>

The start time of the measurement interval (ISO8601 format).

executionCount
Nullable<Double>

The number of times the query was executed during this interval.

metrics
IList<QueryMetric>

The list of query metrics during this interval.

Applies to