Interface LbPoolV2Update
-
- All Superinterfaces:
Buildable<LbPoolV2UpdateBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
NeutronLbPoolV2Update
public interface LbPoolV2Update extends ModelEntity, Buildable<LbPoolV2UpdateBuilder>
An entity for updating a lbaas v2 lb pool- Author:
- emjburns
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()LbMethodgetLbMethod()StringgetName()SessionPersistencegetSessionPersistence()OptionalbooleanisAdminStateUp()
-
-
-
Method Detail
-
getName
String getName()
- Returns:
- Pool name. Does not have to be unique.
-
getDescription
String getDescription()
- Returns:
- Description for the pool.
-
isAdminStateUp
boolean isAdminStateUp()
- Returns:
- The administrative state of the lb pool, which is up (true) or down (false).
-
getLbMethod
LbMethod getLbMethod()
- Returns:
- 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.
-
getSessionPersistence
SessionPersistence getSessionPersistence()
Optional- See Also:
Vip.getSessionPersistence()
-
-