你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

TimeseriesProperties Constructors

Definition

Overloads

TimeseriesProperties()

Initializes a new instance of the TimeseriesProperties class.

TimeseriesProperties(String, String, String, String, String, String, IList<TimeseriesDataPoint>)

Initializes a new instance of the TimeseriesProperties class.

TimeseriesProperties()

Initializes a new instance of the TimeseriesProperties class.

public TimeseriesProperties ();
Public Sub New ()

Applies to

TimeseriesProperties(String, String, String, String, String, String, IList<TimeseriesDataPoint>)

Initializes a new instance of the TimeseriesProperties class.

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

Parameters

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

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'

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