com.spotinst.sdkjava.model.ElastigroupDownSpecification Maven / Gradle / Ivy
package com.spotinst.sdkjava.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.HashSet;
import java.util.Set;
public class ElastigroupDownSpecification {
//region Members
@JsonIgnore
private Set isSet;
private Integer evaluationPeriods;
private Integer maxScaleDownPercentage;
//endregion
//region Constructor
private ElastigroupDownSpecification() {
isSet = new HashSet<>();
}
//endregion
//region Getters & Setters
public Set getIsSet() {
return isSet;
}
public void setIsSet(Set isSet) {
this.isSet = isSet;
}
public Integer getEvaluationPeriods() {
return evaluationPeriods;
}
public void setEvaluationPeriods(Integer evaluationPeriods) {
isSet.add("evaluationPeriods");
this.evaluationPeriods = evaluationPeriods;
}
public Integer getMaxScaleDownPercentage() {
return maxScaleDownPercentage;
}
public void setMaxScaleDownPercentage(Integer maxScaleDownPercentage) {
isSet.add("maxScaleDownPercentage");
this.maxScaleDownPercentage = maxScaleDownPercentage;
}
//endregion
//region Builder class
public static class Builder {
private ElastigroupDownSpecification down;
private Builder() {
this.down = new ElastigroupDownSpecification();
}
public static Builder get() {
return new Builder();
}
public Builder setEvaluationPeriods(final Integer evaluationPeriods) {
down.setEvaluationPeriods(evaluationPeriods);
return this;
}
public Builder setMaxScaleDownPercentage(final Integer maxScaleDownPercentage) {
down.setMaxScaleDownPercentage(maxScaleDownPercentage);
return this;
}
public ElastigroupDownSpecification build() {
return down;
}
}
//endregion
//region isSet methods
// Is evaluationPeriods Set boolean method
@JsonIgnore
public boolean isEvaluationPeriodsSet() {
return isSet.contains("evaluationPeriods");
}
// Is maxScaleDownPercentage Set boolean method
@JsonIgnore
public boolean isMaxScaleDownPercentageSet() {
return isSet.contains("maxScaleDownPercentage");
}
//endregion
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy