com.spotinst.sdkjava.model.bl.ocean.gke.LaunchSpecAutoScaleSpecification Maven / Gradle / Ivy
package com.spotinst.sdkjava.model.bl.ocean.gke;
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 LaunchSpecAutoScaleSpecification {
@JsonIgnore
private Set isSet;
private List headrooms;
public LaunchSpecAutoScaleSpecification(){ isSet = new HashSet<>();
}
public Set getIsSet() {
return isSet;
}
public void setIsSet(Set isSet) {
this.isSet = isSet;
}
public List getHeadrooms(){
return headrooms;
}
public void setHeadrooms(List headrooms){
isSet.add("headrooms");
this.headrooms = headrooms;
}
public static class Builder {
private LaunchSpecAutoScaleSpecification gkeAutoScale;
private Builder() {
this.gkeAutoScale = new LaunchSpecAutoScaleSpecification();
}
public static Builder get() {
return new Builder();
}
public Builder setHeadrooms(final List headrooms) {
gkeAutoScale.setHeadrooms(headrooms);
return this;
}
public LaunchSpecAutoScaleSpecification build() {
return gkeAutoScale;
}
}
@JsonIgnore
public boolean isHeadroomsSet() {
return isSet.contains("headrooms");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy