com.microsoft.azure.management.monitor.LocationThresholdRuleCondition 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 certain number of locations failing.
*/
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "odata.type")
@JsonTypeName("Microsoft.Azure.Management.Insights.Models.LocationThresholdRuleCondition")
@JsonTypeResolver(OdataTypeDiscriminatorTypeResolver.class)
public class LocationThresholdRuleCondition extends RuleCondition {
/**
* 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 number of locations that must fail to activate the alert.
*/
@JsonProperty(value = "failedLocationCount", required = true)
private int failedLocationCount;
/**
* 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 LocationThresholdRuleCondition object itself.
*/
public LocationThresholdRuleCondition withWindowSize(Period windowSize) {
this.windowSize = windowSize;
return this;
}
/**
* Get the number of locations that must fail to activate the alert.
*
* @return the failedLocationCount value
*/
public int failedLocationCount() {
return this.failedLocationCount;
}
/**
* Set the number of locations that must fail to activate the alert.
*
* @param failedLocationCount the failedLocationCount value to set
* @return the LocationThresholdRuleCondition object itself.
*/
public LocationThresholdRuleCondition withFailedLocationCount(int failedLocationCount) {
this.failedLocationCount = failedLocationCount;
return this;
}
}