com.spotinst.sdkjava.model.bl.azure.elastiGroup.V3.ElastigroupHealthConfigurationAzure Maven / Gradle / Ivy
package com.spotinst.sdkjava.model.bl.azure.elastiGroup.V3;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ElastigroupHealthConfigurationAzure {
//region Members
@JsonIgnore
private Set isSet;
private Boolean autoHealing;
private List healthCheckTypes;
private Integer gracePeriod;
private Integer unhealthyDuration;
//endregion
//region Constructor
private ElastigroupHealthConfigurationAzure() {
isSet = new HashSet<>();
}
//endregion
//region Getter and Setter methods
public Set getIsSet() {
return isSet;
}
public Boolean getAutoHealing() {
return autoHealing;
}
public void setAutoHealing(Boolean autoHealing) {
isSet.add("autoHealing");
this.autoHealing = autoHealing;
}
public void setIsSet(Set isSet) {
this.isSet = isSet;
}
public List getHealthCheckTypes() {
return healthCheckTypes;
}
public void setHealthCheckTypes(List healthCheckTypes) {
isSet.add("healthCheckTypes");
this.healthCheckTypes = healthCheckTypes;
}
public Integer getGracePeriod() {
return gracePeriod;
}
public void setGracePeriod(Integer gracePeriod) {
isSet.add("gracePeriod");
this.gracePeriod = gracePeriod;
}
public Integer getUnhealthyDuration() {
return unhealthyDuration;
}
public void setUnhealthyDuration(Integer unhealthyDuration) {
isSet.add("unhealthyDuration");
this.unhealthyDuration = unhealthyDuration;
}
//endregion
//region Builder class
public static class Builder {
private ElastigroupHealthConfigurationAzure capacity;
private Builder() {
this.capacity = new ElastigroupHealthConfigurationAzure();
}
public static Builder get() {
return new Builder();
}
public Builder setHealthCheckTypes(final List healthCheckTypes) {
capacity.setHealthCheckTypes(healthCheckTypes);
return this;
}
public Builder setAutoHealing(final Boolean autoHealing) {
capacity.setAutoHealing(autoHealing);
return this;
}
public Builder setGracePeriod(final Integer gracePeriod) {
capacity.setGracePeriod(gracePeriod);
return this;
}
public Builder setUnhealthyDuration(final Integer unhealthyDuration) {
capacity.setUnhealthyDuration(unhealthyDuration);
return this;
}
public ElastigroupHealthConfigurationAzure build() {
// TODO : Validations
return capacity;
}
}
//endregion
//region isSet methods
// Is healthCheckTypes Set boolean method
@JsonIgnore
public boolean isHealthCheckTypesSet() {
return isSet.contains("healthCheckTypes");
}
// Is autoHealing Set boolean method
@JsonIgnore
public boolean isAutoHealingSet() {
return isSet.contains("autoHealing");
}
// Is gracePeriod Set boolean method
@JsonIgnore
public boolean isGracePeriodSet() {
return isSet.contains("gracePeriod");
}
// Is unhealthyDuration Set boolean method
@JsonIgnore
public boolean isUnhealthyDurationSet() {
return isSet.contains("unhealthyDuration");
}
//endregion
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy