com.microsoft.azure.management.monitor.ThresholdRuleCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-monitor Show documentation
Show all versions of azure-mgmt-monitor Show documentation
This package contains Microsoft Azure Monitor SDK. This package has been deprecated. A replacement package com.azure.resourcemanager:azure-resourcemanager-monitor is available as of 31-March-2022. We strongly encourage you to upgrade to continue receiving updates. See Migration Guide https://aka.ms/java-track2-migration-guide for guidance on upgrading. Refer to our deprecation policy https://azure.github.io/azure-sdk/policies_support.html for more details.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.monitor;
import com.fasterxml.jackson.databind.annotation.JsonTypeResolver;
import org.joda.time.Period;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* A rule condition based on a metric crossing a threshold.
*/
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "odata.type")
@JsonTypeName("Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition")
@JsonTypeResolver(OdataTypeDiscriminatorTypeResolver.class)
public class ThresholdRuleCondition extends RuleCondition {
/**
* the operator used to compare the data and the threshold. Possible values
* include: 'GreaterThan', 'GreaterThanOrEqual', 'LessThan',
* 'LessThanOrEqual'.
*/
@JsonProperty(value = "operator", required = true)
private ConditionOperator operator;
/**
* the threshold value that activates the alert.
*/
@JsonProperty(value = "threshold", required = true)
private double threshold;
/**
* 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.
*/
@JsonProperty(value = "windowSize")
private Period windowSize;
/**
* the time aggregation operator. How the data that are collected should be
* combined over time. The default value is the PrimaryAggregationType of
* the Metric. Possible values include: 'Average', 'Minimum', 'Maximum',
* 'Total', 'Last'.
*/
@JsonProperty(value = "timeAggregation")
private TimeAggregationOperator timeAggregation;
/**
* Get the operator used to compare the data and the threshold. Possible values include: 'GreaterThan', 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual'.
*
* @return the operator value
*/
public ConditionOperator operator() {
return this.operator;
}
/**
* Set the operator used to compare the data and the threshold. Possible values include: 'GreaterThan', 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual'.
*
* @param operator the operator value to set
* @return the ThresholdRuleCondition object itself.
*/
public ThresholdRuleCondition withOperator(ConditionOperator operator) {
this.operator = operator;
return this;
}
/**
* Get the threshold value that activates the alert.
*
* @return the threshold value
*/
public double threshold() {
return this.threshold;
}
/**
* Set the threshold value that activates the alert.
*
* @param threshold the threshold value to set
* @return the ThresholdRuleCondition object itself.
*/
public ThresholdRuleCondition withThreshold(double threshold) {
this.threshold = threshold;
return this;
}
/**
* Get 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.
*
* @return the windowSize value
*/
public Period windowSize() {
return this.windowSize;
}
/**
* Set 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.
*
* @param windowSize the windowSize value to set
* @return the ThresholdRuleCondition object itself.
*/
public ThresholdRuleCondition withWindowSize(Period windowSize) {
this.windowSize = windowSize;
return this;
}
/**
* Get the time aggregation operator. How the data that are collected should be combined over time. The default value is the PrimaryAggregationType of the Metric. Possible values include: 'Average', 'Minimum', 'Maximum', 'Total', 'Last'.
*
* @return the timeAggregation value
*/
public TimeAggregationOperator timeAggregation() {
return this.timeAggregation;
}
/**
* Set the time aggregation operator. How the data that are collected should be combined over time. The default value is the PrimaryAggregationType of the Metric. Possible values include: 'Average', 'Minimum', 'Maximum', 'Total', 'Last'.
*
* @param timeAggregation the timeAggregation value to set
* @return the ThresholdRuleCondition object itself.
*/
public ThresholdRuleCondition withTimeAggregation(TimeAggregationOperator timeAggregation) {
this.timeAggregation = timeAggregation;
return this;
}
}