com.spotinst.sdkjava.model.bl.ocean.aks.ClusterVngHeadroomSpec Maven / Gradle / Ivy
package com.spotinst.sdkjava.model.bl.ocean.aks;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.HashSet;
import java.util.Set;
public class ClusterVngHeadroomSpec {
@JsonIgnore
private Set isSet;
private Integer cpuPerUnit;
private Integer memoryPerUnit;
private Integer gpuPerUnit;
private Integer numOfUnits;
private ClusterVngHeadroomSpec() {
isSet = new HashSet<>();
}
public Set getIsSet() {
return isSet;
}
public void setIsSet(Set isSet) {
this.isSet = isSet;
}
public Integer getCpuPerUnit() {
return cpuPerUnit;
}
public void setCpuPerUnit(Integer cpuPerUnit) {
isSet.add("cpuPerUnit");
this.cpuPerUnit = cpuPerUnit;
}
public Integer getMemoryPerUnit() {
return memoryPerUnit;
}
public void setMemoryPerUnit(Integer memoryPerUnit) {
isSet.add("memoryPerUnit");
this.memoryPerUnit = memoryPerUnit;
}
public Integer getGpuPerUnit() {
return gpuPerUnit;
}
public void setGpuPerUnit(Integer gpuPerUnit) {
isSet.add("gpuPerUnit");
this.gpuPerUnit = gpuPerUnit;
}
public Integer getNumOfUnits() {
return numOfUnits;
}
public void setNumOfUnits(Integer numOfUnits) {
isSet.add("numOfUnits");
this.numOfUnits = numOfUnits;
}
public static class Builder {
private ClusterVngHeadroomSpec headroom;
private Builder() {
this.headroom = new ClusterVngHeadroomSpec();
}
public static ClusterVngHeadroomSpec.Builder get() {
return new Builder();
}
public ClusterVngHeadroomSpec.Builder setCpuPerUnit(final Integer cpuPerUnit) {
headroom.setCpuPerUnit(cpuPerUnit);
return this;
}
public ClusterVngHeadroomSpec.Builder setMemoryPerUnit(final Integer memoryPerUnit) {
headroom.setMemoryPerUnit(memoryPerUnit);
return this;
}
public ClusterVngHeadroomSpec.Builder setGpuPerUnit(final Integer gpuPerUnit) {
headroom.setGpuPerUnit(gpuPerUnit);
return this;
}
public ClusterVngHeadroomSpec.Builder setNumOfUnits(final Integer numOfUnits) {
headroom.setNumOfUnits(numOfUnits);
return this;
}
public ClusterVngHeadroomSpec build() {
return headroom;
}
}
@JsonIgnore
public boolean isCpuPerUnitSet() {return isSet.contains("cpuPerUnit");}
@JsonIgnore
public boolean isMemoryPerUnitSet() {return isSet.contains("memoryPerUnit");}
@JsonIgnore
public boolean isGpuPerUnitSet() {return isSet.contains("gpuPerUnit");}
@JsonIgnore
public boolean isNumOfUnitsSet() {return isSet.contains("numOfUnits");}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy