QueryMetricInterval Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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'
- metrics
- IList<QueryMetricProperties>
List of metric objects for this interval
Applies to
Azure SDK for .NET