ManagementEventAggregationCondition Constructors

Definition

Overloads

ManagementEventAggregationCondition()

Initializes a new instance of the ManagementEventAggregationCondition class.

ManagementEventAggregationCondition(Nullable<ConditionOperator>, Nullable<Double>, Nullable<TimeSpan>)

Initializes a new instance of the ManagementEventAggregationCondition class.

ManagementEventAggregationCondition()

Initializes a new instance of the ManagementEventAggregationCondition class.

public ManagementEventAggregationCondition ();
Public Sub New ()

Applies to

ManagementEventAggregationCondition(Nullable<ConditionOperator>, Nullable<Double>, Nullable<TimeSpan>)

Initializes a new instance of the ManagementEventAggregationCondition class.

public ManagementEventAggregationCondition (Microsoft.Azure.Management.Monitor.Models.ConditionOperator? operatorProperty = default, double? threshold = default, TimeSpan? windowSize = default);
new Microsoft.Azure.Management.Monitor.Models.ManagementEventAggregationCondition : Nullable<Microsoft.Azure.Management.Monitor.Models.ConditionOperator> * Nullable<double> * Nullable<TimeSpan> -> Microsoft.Azure.Management.Monitor.Models.ManagementEventAggregationCondition
Public Sub New (Optional operatorProperty As Nullable(Of ConditionOperator) = Nothing, Optional threshold As Nullable(Of Double) = Nothing, Optional windowSize As Nullable(Of TimeSpan) = Nothing)

Parameters

operatorProperty
Nullable<ConditionOperator>

the condition operator. Possible values include: 'GreaterThan', 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual'

threshold
Nullable<Double>

The threshold value that activates the alert.

windowSize
Nullable<TimeSpan>

the period of time (in ISO 8601 duration format) that is used to monitor alert activity based on the threshold. If specified then it must be between 5 minutes and 1 day.

Applies to