![JAR search and dependency download from the Maven repository](/logo.png)
mesosphere.marathon.client.model.v2.UpgradeStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marathon-client Show documentation
Show all versions of marathon-client Show documentation
A Java API client for Mesosphere's Marathon.
package mesosphere.marathon.client.model.v2;
import mesosphere.client.common.ModelUtils;
public class UpgradeStrategy {
private Double minimumHealthCapacity;
private Double maximumOverCapacity;
public Double getMinimumHealthCapacity() {
return minimumHealthCapacity;
}
public void setMinimumHealthCapacity(Double minimumHealthCapacity) {
this.minimumHealthCapacity = minimumHealthCapacity;
}
public Double getMaximumOverCapacity() {
return maximumOverCapacity;
}
public void setMaximumOverCapacity(Double maximumOverCapacity) {
this.maximumOverCapacity = maximumOverCapacity;
}
@Override
public String toString() {
return ModelUtils.toString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy