Class NeutronLbPoolUpdate
- java.lang.Object
-
- org.openstack4j.openstack.networking.domain.ext.NeutronLbPoolUpdate
-
- All Implemented Interfaces:
Serializable,Buildable<LbPoolUpdateBuilder>,ModelEntity,LbPoolUpdate
public class NeutronLbPoolUpdate extends Object implements LbPoolUpdate
A entity used to update a lb pool- Author:
- liujunpeng
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classNeutronLbPoolUpdate.LbPoolUpdateContreteBuilder-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Constructor Summary
Constructors Constructor Description NeutronLbPoolUpdate()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LbPoolUpdateBuilderbuilder()StringgetDescription()LbMethodgetLbMethod()StringgetName()booleanisAdminStateUp()LbPoolUpdateBuildertoBuilder()StringtoString()
-
-
-
Method Detail
-
builder
public static LbPoolUpdateBuilder builder()
-
toBuilder
public LbPoolUpdateBuilder toBuilder()
- Specified by:
toBuilderin interfaceBuildable<LbPoolUpdateBuilder>
-
isAdminStateUp
public boolean isAdminStateUp()
- Specified by:
isAdminStateUpin interfaceLbPoolUpdate- Returns:
- The administrative state of the lb pool, which is up (true) or down (false).
-
getName
public String getName()
- Specified by:
getNamein interfaceLbPoolUpdate- Returns:
- Pool name. Does not have to be unique.
-
getLbMethod
public LbMethod getLbMethod()
- Specified by:
getLbMethodin interfaceLbPoolUpdate- 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.
-
getDescription
public String getDescription()
- Specified by:
getDescriptionin interfaceLbPoolUpdate- Returns:
- Description for the pool.
-
-