
com.nitorcreations.willow.autoscaler.deployment.AutoScalingGroupDeploymentStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of willow-autoscaler Show documentation
Show all versions of willow-autoscaler Show documentation
Willow elastic cloud auto scaler
The newest version!
package com.nitorcreations.willow.autoscaler.deployment;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class AutoScalingGroupDeploymentStatus {
private final String name;
private final List instances;
public AutoScalingGroupDeploymentStatus(String name, List instances) {
this.name = name;
this.instances = Collections.unmodifiableList(new ArrayList<>(instances));
}
public String getName() {
return name;
}
public List getInstances() {
return Collections.unmodifiableList(instances);
}
public int getInstanceCount() {
return instances.size();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy