com.spotinst.sdkjava.model.bl.azure.statefulNode.StatefulNodeSnapshotDeallocationConfig Maven / Gradle / Ivy
package com.spotinst.sdkjava.model.bl.azure.statefulNode;
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.Set;
/**
* Created by Bansi Chapla on 23/11/2021.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class StatefulNodeSnapshotDeallocationConfig {
@JsonIgnore
private Set isSet;
private Boolean shouldDeallocate;
private Integer ttlInHours;
private StatefulNodeSnapshotDeallocationConfig() {
isSet = new HashSet<>();
}
public Set getIsSet() {
return isSet;
}
public void setIsSet(Set isSet) {
this.isSet = isSet;
}
public Boolean getShouldDeallocate() {
return shouldDeallocate;
}
public void setShouldDeallocate(Boolean shouldDeallocate) {
isSet.add("shouldDeallocate");
this.shouldDeallocate = shouldDeallocate;
}
public Integer getTtlInHours() {
return ttlInHours;
}
public void setTtlInHours(Integer ttlInHours) {
isSet.add("ttlInHours");
this.ttlInHours = ttlInHours;
}
public static class Builder {
private StatefulNodeSnapshotDeallocationConfig statefulNodeSnapshotDeallocationConfig;
private Builder() {
this.statefulNodeSnapshotDeallocationConfig = new StatefulNodeSnapshotDeallocationConfig();
}
public static Builder get() {
return new Builder();
}
public Builder setShouldDeallocate(final Boolean shouldDeallocate) {
statefulNodeSnapshotDeallocationConfig.setShouldDeallocate(shouldDeallocate);
return this;
}
public Builder setTtlInHours(final Integer ttlInHours) {
statefulNodeSnapshotDeallocationConfig.setTtlInHours(ttlInHours);
return this;
}
public StatefulNodeSnapshotDeallocationConfig build() {
return statefulNodeSnapshotDeallocationConfig;
}
}
@JsonIgnore
public boolean isShouldDeallocateSet() {
return isSet.contains("shouldDeallocate");
}
@JsonIgnore
public boolean isTtlInHoursSet() {
return isSet.contains("ttlInHours");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy