QueryMetricProperties 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
QueryMetricProperties() |
Initializes a new instance of the QueryMetricProperties class. |
QueryMetricProperties(String, String, String, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>) |
Initializes a new instance of the QueryMetricProperties class. |
QueryMetricProperties()
Initializes a new instance of the QueryMetricProperties class.
public QueryMetricProperties ();
Public Sub New ()
Applies to
QueryMetricProperties(String, String, String, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>)
Initializes a new instance of the QueryMetricProperties class.
public QueryMetricProperties (string name = default, string displayName = default, string unit = default, double? value = default, double? min = default, double? max = default, double? avg = default, double? sum = default, double? stdev = default);
new Microsoft.Azure.Management.Sql.Models.QueryMetricProperties : string * string * string * Nullable<double> * Nullable<double> * Nullable<double> * Nullable<double> * Nullable<double> * Nullable<double> -> Microsoft.Azure.Management.Sql.Models.QueryMetricProperties
Public Sub New (Optional name As String = Nothing, Optional displayName As String = Nothing, Optional unit As String = Nothing, Optional value As Nullable(Of Double) = Nothing, Optional min As Nullable(Of Double) = Nothing, Optional max As Nullable(Of Double) = Nothing, Optional avg As Nullable(Of Double) = Nothing, Optional sum As Nullable(Of Double) = Nothing, Optional stdev As Nullable(Of Double) = Nothing)
Parameters
- name
- String
The name information for the metric.
- displayName
- String
The UI appropriate name for the metric.
- unit
- String
The unit of the metric. Possible values include: 'percentage', 'KB', 'microseconds', 'count'
Applies to
Azure SDK for .NET