SingleMetricBaseline Constructors

Definition

Overloads

SingleMetricBaseline()

Initializes a new instance of the SingleMetricBaseline class.

SingleMetricBaseline(String, String, String, String, TimeSpan, IList<TimeSeriesBaseline>, String)

Initializes a new instance of the SingleMetricBaseline class.

SingleMetricBaseline()

Initializes a new instance of the SingleMetricBaseline class.

public SingleMetricBaseline ();
Public Sub New ()

Applies to

SingleMetricBaseline(String, String, String, String, TimeSpan, IList<TimeSeriesBaseline>, String)

Initializes a new instance of the SingleMetricBaseline class.

public SingleMetricBaseline (string id, string type, string name, string timespan, TimeSpan interval, System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.TimeSeriesBaseline> baselines, string namespaceProperty = default);
new Microsoft.Azure.Management.Monitor.Models.SingleMetricBaseline : string * string * string * string * TimeSpan * System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.TimeSeriesBaseline> * string -> Microsoft.Azure.Management.Monitor.Models.SingleMetricBaseline
Public Sub New (id As String, type As String, name As String, timespan As String, interval As TimeSpan, baselines As IList(Of TimeSeriesBaseline), Optional namespaceProperty As String = Nothing)

Parameters

id
String

The metric baseline Id.

type
String

The resource type of the metric baseline resource.

name
String

The name of the metric for which the baselines were retrieved.

timespan
String

The timespan for which the data was retrieved. Its value consists of two datetimes concatenated, separated by '/'. This may be adjusted in the future and returned back from what was originally requested.

interval
TimeSpan

The interval (window size) for which the metric data was returned in. This may be adjusted in the future and returned back from what was originally requested. This is not present if a metadata request was made.

baselines
IList<TimeSeriesBaseline>

The baseline for each time series that was queried.

namespaceProperty
String

The namespace of the metrics been queried.

Applies to