com.spotinst.sdkjava.model.bl.mrScaler.aws.BlMrScalerAwsSchedulingConfiguration Maven / Gradle / Ivy
package com.spotinst.sdkjava.model.bl.mrScaler.aws;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class BlMrScalerAwsSchedulingConfiguration {
//region Members
private List tasks;
//region Constructor
public BlMrScalerAwsSchedulingConfiguration() {
}
// endregion
//region getters and setters
// region tasks
public List getTasks() {
return tasks;
}
public void setTasks(List tasks) {
this.tasks = tasks;
}
// endregion
// endregion
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy