com.spotinst.sdkjava.model.TasksConfiguration Maven / Gradle / Ivy
package com.spotinst.sdkjava.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.spotinst.sdkjava.enums.SchedulingTaskTypeEnum;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
public class TasksConfiguration {
//region Members
@JsonIgnore
private Set isSet;
private Boolean isEnabled;
private RecurrenceFrequencyEnum frequency;
private Date startTime;
private String cronExpression;
private SchedulingTaskTypeEnum taskType;
private Integer scaleTargetCapacity;
private Integer scaleMinCapacity;
private Integer scaleMaxCapacity;
private Integer batchSizePercentage;
private Integer gracePeriod;
private Integer adjustment;
private Integer adjustmentPercentage;
private Integer targetCapacity;
private Integer minCapacity;
private Integer maxCapacity;
//endregion
//region Constructor
private TasksConfiguration() {
isSet = new HashSet<>();
}
//endregion
//region Getters & Setters
public Set getIsSet() {
return isSet;
}
public void setIsSet(Set isSet) {
this.isSet = isSet;
}
public Boolean getIsEnabled() {
return isEnabled;
}
public void setIsEnabled(Boolean isEnabled) {
isSet.add("isEnabled");
this.isEnabled = isEnabled;
}
public RecurrenceFrequencyEnum getFrequency() {
return frequency;
}
public void setFrequency(RecurrenceFrequencyEnum frequency) {
isSet.add("frequency");
this.frequency = frequency;
}
public Date getStartTime() {
return startTime;
}
public void setStartTime(Date startTime) {
isSet.add("startTime");
this.startTime = startTime;
}
public String getCronExpression() {
return cronExpression;
}
public void setCronExpression(String cronExpression) {
isSet.add("cronExpression");
this.cronExpression = cronExpression;
}
public SchedulingTaskTypeEnum getTaskType() {
return taskType;
}
public void setTaskType(SchedulingTaskTypeEnum taskType) {
isSet.add("taskType");
this.taskType = taskType;
}
public Integer getScaleTargetCapacity() {
return scaleTargetCapacity;
}
public void setScaleTargetCapacity(Integer scaleTargetCapacity) {
isSet.add("scaleTargetCapacity");
this.scaleTargetCapacity = scaleTargetCapacity;
}
public Integer getScaleMinCapacity() {
return scaleMinCapacity;
}
public void setScaleMinCapacity(Integer scaleMinCapacity) {
isSet.add("scaleMinCapacity");
this.scaleMinCapacity = scaleMinCapacity;
}
public Integer getScaleMaxCapacity() {
return scaleMaxCapacity;
}
public void setScaleMaxCapacity(Integer scaleMaxCapacity) {
isSet.add("scaleMaxCapacity");
this.scaleMaxCapacity = scaleMaxCapacity;
}
public Integer getBatchSizePercentage() {
return batchSizePercentage;
}
public void setBatchSizePercentage(Integer batchSizePercentage) {
isSet.add("batchSizePercentage");
this.batchSizePercentage = batchSizePercentage;
}
public Integer getGracePeriod() {
return gracePeriod;
}
public void setGracePeriod(Integer gracePeriod) {
isSet.add("gracePeriod");
this.gracePeriod = gracePeriod;
}
public Integer getAdjustment() {
return adjustment;
}
public void setAdjustment(Integer adjustment) {
isSet.add("adjustment");
this.adjustment = adjustment;
}
public Integer getAdjustmentPercentage() {
return adjustmentPercentage;
}
public void setAdjustmentPercentage(Integer adjustmentPercentage) {
isSet.add("adjustmentPercentage");
this.adjustmentPercentage = adjustmentPercentage;
}
public Integer getTargetCapacity() {
return targetCapacity;
}
public void setTargetCapacity(Integer targetCapacity) {
isSet.add("targetCapacity");
this.targetCapacity = targetCapacity;
}
public Integer getMinCapacity() {
return minCapacity;
}
public void setMinCapacity(Integer minCapacity) {
isSet.add("minCapacity");
this.minCapacity = minCapacity;
}
public Integer getMaxCapacity() {
return maxCapacity;
}
public void setMaxCapacity(Integer maxCapacity) {
isSet.add("maxCapacity");
this.maxCapacity = maxCapacity;
}
//endregion
//region Builder class
public static class Builder {
private TasksConfiguration tasks;
private Builder() {
this.tasks = new TasksConfiguration();
}
public static Builder get() {
return new Builder();
}
public Builder setIsEnabled(final Boolean isEnabled) {
tasks.setIsEnabled(isEnabled);
return this;
}
public Builder setFrequency(final RecurrenceFrequencyEnum frequency) {
tasks.setFrequency(frequency);
return this;
}
public Builder setStartTime(final Date startTime) {
tasks.setStartTime(startTime);
return this;
}
public Builder setCronExpression(final String cronExpression) {
tasks.setCronExpression(cronExpression);
return this;
}
public Builder setTaskType(final SchedulingTaskTypeEnum taskType) {
tasks.setTaskType(taskType);
return this;
}
public Builder setScaleTargetCapacity(final Integer scaleTargetCapacity) {
tasks.setScaleTargetCapacity(scaleTargetCapacity);
return this;
}
public Builder setScaleMinCapacity(final Integer scaleMinCapacity) {
tasks.setScaleMinCapacity(scaleMinCapacity);
return this;
}
public Builder setScaleMaxCapacity(final Integer scaleMaxCapacity) {
tasks.setScaleMaxCapacity(scaleMaxCapacity);
return this;
}
public Builder setBatchSizePercentage(final Integer batchSizePercentage) {
tasks.setBatchSizePercentage(batchSizePercentage);
return this;
}
public Builder setGracePeriod(final Integer gracePeriod) {
tasks.setGracePeriod(gracePeriod);
return this;
}
public Builder setAdjustment(final Integer adjustment) {
tasks.setAdjustment(adjustment);
return this;
}
public Builder setAdjustmentPercentage(final Integer adjustmentPercentage) {
tasks.setAdjustmentPercentage(adjustmentPercentage);
return this;
}
public Builder setTargetCapacity(final Integer targetCapacity) {
tasks.setTargetCapacity(targetCapacity);
return this;
}
public Builder setMinCapacity(final Integer minCapacity) {
tasks.setMinCapacity(minCapacity);
return this;
}
public Builder setMaxCapacity(final Integer maxCapacity) {
tasks.setMaxCapacity(maxCapacity);
return this;
}
public TasksConfiguration build() {
return tasks;
}
}
//endregion
//region isSet methods
@JsonIgnore
public boolean isIsEnabledSet() {
return isSet.contains("isEnabled");
}
@JsonIgnore
public boolean isFrequencySet() {
return isSet.contains("frequency");
}
@JsonIgnore
public boolean isStartTimeSet() {
return isSet.contains("startTime");
}
@JsonIgnore
public boolean isCronExpressionSet() {
return isSet.contains("cronExpression");
}
@JsonIgnore
public boolean isTaskTypeSet() {
return isSet.contains("taskType");
}
@JsonIgnore
public boolean isScaleTargetCapacitySet() {
return isSet.contains("scaleTargetCapacity");
}
@JsonIgnore
public boolean isScaleMinCapacitySet() {
return isSet.contains("scaleMinCapacity");
}
@JsonIgnore
public boolean isScaleMaxCapacitySet() {
return isSet.contains("scaleMaxCapacity");
}
@JsonIgnore
public boolean isBatchSizePercentageSet() {
return isSet.contains("batchSizePercentage");
}
@JsonIgnore
public boolean isgracePeriodSet() {
return isSet.contains("gracePeriod");
}
@JsonIgnore
public boolean isAdjustmentSet() {
return isSet.contains("adjustment");
}
@JsonIgnore
public boolean isAdjustmentPercentageSet() {
return isSet.contains("adjustmentPercentage");
}
@JsonIgnore
public boolean isTargetCapacitySet() {
return isSet.contains("targetCapacity");
}
@JsonIgnore
public boolean isMinCapacitySet() {
return isSet.contains("minCapacity");
}
@JsonIgnore
public boolean isMaxCapacitySet() {
return isSet.contains("maxCapacity");
}
//endregion
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy