MetricSpecification 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
MetricSpecification() |
Initializes a new instance of the MetricSpecification class. |
MetricSpecification(String, String, String, String, String, String, IList<MetricDimension>) |
Initializes a new instance of the MetricSpecification class. |
MetricSpecification()
Initializes a new instance of the MetricSpecification class.
public MetricSpecification ();
Public Sub New ()
Applies to
MetricSpecification(String, String, String, String, String, String, IList<MetricDimension>)
Initializes a new instance of the MetricSpecification class.
public MetricSpecification (string name = default, string displayName = default, string displayDescription = default, string unit = default, string aggregationType = default, string internalMetricName = default, System.Collections.Generic.IList<Microsoft.Azure.Management.MixedReality.Models.MetricDimension> dimensions = default);
new Microsoft.Azure.Management.MixedReality.Models.MetricSpecification : string * string * string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.MixedReality.Models.MetricDimension> -> Microsoft.Azure.Management.MixedReality.Models.MetricSpecification
Public Sub New (Optional name As String = Nothing, Optional displayName As String = Nothing, Optional displayDescription As String = Nothing, Optional unit As String = Nothing, Optional aggregationType As String = Nothing, Optional internalMetricName As String = Nothing, Optional dimensions As IList(Of MetricDimension) = Nothing)
Parameters
- name
- String
Name of the metric
- displayName
- String
Localized friendly display name of the metric
- displayDescription
- String
Localized friendly description of the metric
- unit
- String
Unit that makes sense for the metric
- aggregationType
- String
Only provide one value for this field. Valid values: Average, Minimum, Maximum, Total, Count.
- internalMetricName
- String
Internal metric name.
- dimensions
- IList<MetricDimension>
Dimensions of the metric
Applies to
Azure SDK for .NET