Share via


Timeseries Constructors

Definition

Overloads

Timeseries()

Initializes a new instance of the Timeseries class.

Timeseries(String, String, String, String, IDictionary<String,String>, String, String, String, String, String, String, IList<TimeseriesDataPoint>)

Initializes a new instance of the Timeseries class.

Timeseries()

Initializes a new instance of the Timeseries class.

public Timeseries ();
Public Sub New ()

Applies to

Timeseries(String, String, String, String, IDictionary<String,String>, String, String, String, String, String, String, IList<TimeseriesDataPoint>)

Initializes a new instance of the Timeseries class.

public Timeseries (string id = default, string name = default, string type = default, string location = default, System.Collections.Generic.IDictionary<string,string> tags = default, string aggregationInterval = default, string timeseriesType = default, string endpoint = default, string startDateTimeUtc = default, string endDateTimeUtc = default, string country = default, System.Collections.Generic.IList<Microsoft.Azure.Management.FrontDoor.Models.TimeseriesDataPoint> timeseriesData = default);
new Microsoft.Azure.Management.FrontDoor.Models.Timeseries : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * string * string * string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.FrontDoor.Models.TimeseriesDataPoint> -> Microsoft.Azure.Management.FrontDoor.Models.Timeseries
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional location As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional aggregationInterval As String = Nothing, Optional timeseriesType As String = Nothing, Optional endpoint As String = Nothing, Optional startDateTimeUtc As String = Nothing, Optional endDateTimeUtc As String = Nothing, Optional country As String = Nothing, Optional timeseriesData As IList(Of TimeseriesDataPoint) = Nothing)

Parameters

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

location
String

Resource location.

tags
IDictionary<String,String>

Resource tags.

aggregationInterval
String

The aggregation interval of the Timeseries Possible values include: 'Hourly', 'Daily'

timeseriesType
String

The type of Timeseries Possible values include: 'MeasurementCounts', 'LatencyP50', 'LatencyP75', 'LatencyP95'

endpoint
String

The endpoint associated with the Timeseries data point

startDateTimeUtc
String

The start DateTime of the Timeseries in UTC

endDateTimeUtc
String

The end DateTime of the Timeseries in UTC

country
String

The country associated with the Timeseries. Values are country ISO codes as specified here- https://www.iso.org/iso-3166-country-codes.html

timeseriesData
IList<TimeseriesDataPoint>

The set of data points for the timeseries

Applies to