![JAR search and dependency download from the Maven repository](/logo.png)
org.openstack4j.model.octavia.LbPoolV2Update Maven / Gradle / Ivy
package org.openstack4j.model.octavia;
import org.openstack4j.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.octavia.builder.LbPoolV2UpdateBuilder;
/**
* An entity for updating a lbaas v2 lb pool
* @author wei
*/
public interface LbPoolV2Update extends ModelEntity, Buildable {
/**
*
* @return Pool name. Does not have to be unique.
*/
public String getName();
/**
*
* @return Description for the pool.
*/
public String getDescription();
/**
*
* @return The administrative state of the lb pool, which is up (true) or
* down (false).
*/
public boolean isAdminStateUp();
/**
*
* @return The load-balancer algorithm, which is round-robin, least-connections, and so on. This value, which must be supported, is dependent on the load-balancer provider. Round-robin must be supported.
*/
public LbMethod getLbMethod();
/**
* Optional
* @see Vip#getSessionPersistence()
*/
public SessionPersistence getSessionPersistence();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy