
com.vmware.avi.sdk.model.MetricsEventThreshold Maven / Gradle / Ivy
/*
* Copyright 2021 VMware, Inc.
* SPDX-License-Identifier: Apache License 2.0
*/
package com.vmware.avi.sdk.model;
import java.util.*;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* The MetricsEventThreshold is a POJO class extends AviRestResource that used for creating
* MetricsEventThreshold.
*
* @version 1.0
* @since
*
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class MetricsEventThreshold {
@JsonProperty("metrics_event_threshold_type")
private String metricsEventThresholdType;
@JsonProperty("reset_threshold")
private Float resetThreshold;
@JsonProperty("watermark_thresholds")
private List watermarkThresholds;
/**
* This is the getter method this will return the attribute value.
* Type of the metrics event threshold.
* This value will decide which metric rule (or rules) use configured thresholds.
* Enum options - THRESHOLD_TYPE_STATIC, SE_CPU_THRESHOLD, SE_MEM_THRESHOLD, SE_DISK_THRESHOLD, CONTROLLER_CPU_THRESHOLD, CONTROLLER_MEM_THRESHOLD,
* CONTROLLER_DISK_THRESHOLD.
* Field introduced in 20.1.3.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return metricsEventThresholdType
*/
public String getMetricsEventThresholdType() {
return metricsEventThresholdType;
}
/**
* This is the setter method to the attribute.
* Type of the metrics event threshold.
* This value will decide which metric rule (or rules) use configured thresholds.
* Enum options - THRESHOLD_TYPE_STATIC, SE_CPU_THRESHOLD, SE_MEM_THRESHOLD, SE_DISK_THRESHOLD, CONTROLLER_CPU_THRESHOLD, CONTROLLER_MEM_THRESHOLD,
* CONTROLLER_DISK_THRESHOLD.
* Field introduced in 20.1.3.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @param metricsEventThresholdType set the metricsEventThresholdType.
*/
public void setMetricsEventThresholdType(String metricsEventThresholdType) {
this.metricsEventThresholdType = metricsEventThresholdType;
}
/**
* This is the getter method this will return the attribute value.
* This value is used to reset the event state machine.
* Allowed values are 1-100.
* Field introduced in 20.1.3.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return resetThreshold
*/
public Float getResetThreshold() {
return resetThreshold;
}
/**
* This is the setter method to the attribute.
* This value is used to reset the event state machine.
* Allowed values are 1-100.
* Field introduced in 20.1.3.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @param resetThreshold set the resetThreshold.
*/
public void setResetThreshold(Float resetThreshold) {
this.resetThreshold = resetThreshold;
}
/**
* This is the getter method this will return the attribute value.
* Threshold value for which event in raised.
* There can be multiple thresholds defined.health score degrades when the the target is higher than this threshold.
* Allowed values are 1-100.
* Field introduced in 20.1.3.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return watermarkThresholds
*/
public List getWatermarkThresholds() {
return watermarkThresholds;
}
/**
* This is the setter method. this will set the watermarkThresholds
* Threshold value for which event in raised.
* There can be multiple thresholds defined.health score degrades when the the target is higher than this threshold.
* Allowed values are 1-100.
* Field introduced in 20.1.3.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return watermarkThresholds
*/
public void setWatermarkThresholds(List watermarkThresholds) {
this.watermarkThresholds = watermarkThresholds;
}
/**
* This is the setter method this will set the watermarkThresholds
* Threshold value for which event in raised.
* There can be multiple thresholds defined.health score degrades when the the target is higher than this threshold.
* Allowed values are 1-100.
* Field introduced in 20.1.3.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return watermarkThresholds
*/
public MetricsEventThreshold addWatermarkThresholdsItem(Integer watermarkThresholdsItem) {
if (this.watermarkThresholds == null) {
this.watermarkThresholds = new ArrayList();
}
this.watermarkThresholds.add(watermarkThresholdsItem);
return this;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
MetricsEventThreshold objMetricsEventThreshold = (MetricsEventThreshold) o;
return Objects.equals(this.resetThreshold, objMetricsEventThreshold.resetThreshold)&&
Objects.equals(this.watermarkThresholds, objMetricsEventThreshold.watermarkThresholds)&&
Objects.equals(this.metricsEventThresholdType, objMetricsEventThreshold.metricsEventThresholdType);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class MetricsEventThreshold {\n");
sb.append(" metricsEventThresholdType: ").append(toIndentedString(metricsEventThresholdType)).append("\n");
sb.append(" resetThreshold: ").append(toIndentedString(resetThreshold)).append("\n");
sb.append(" watermarkThresholds: ").append(toIndentedString(watermarkThresholds)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy