QueryStatisticsProperties Constructors

Definition

Overloads

QueryStatisticsProperties()

Initializes a new instance of the QueryStatisticsProperties class.

QueryStatisticsProperties(String, String, String, String, IList<QueryMetricInterval>)

Initializes a new instance of the QueryStatisticsProperties class.

QueryStatisticsProperties()

Initializes a new instance of the QueryStatisticsProperties class.

public QueryStatisticsProperties ();
Public Sub New ()

Applies to

QueryStatisticsProperties(String, String, String, String, IList<QueryMetricInterval>)

Initializes a new instance of the QueryStatisticsProperties class.

public QueryStatisticsProperties (string databaseName = default, string queryId = default, string startTime = default, string endTime = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.QueryMetricInterval> intervals = default);
new Microsoft.Azure.Management.Sql.Models.QueryStatisticsProperties : string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.QueryMetricInterval> -> Microsoft.Azure.Management.Sql.Models.QueryStatisticsProperties
Public Sub New (Optional databaseName As String = Nothing, Optional queryId As String = Nothing, Optional startTime As String = Nothing, Optional endTime As String = Nothing, Optional intervals As IList(Of QueryMetricInterval) = Nothing)

Parameters

databaseName
String

Database name of the database in which this query was executed.

queryId
String

Unique query id (unique within one database).

startTime
String

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

endTime
String

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

intervals
IList<QueryMetricInterval>

List of intervals with appropriate metric data

Applies to