Package org.openstack4j.model.octavia
Interface MemberV2
-
- All Superinterfaces:
Buildable<MemberV2Builder>,ModelEntity,Serializable
- All Known Implementing Classes:
OctaviaMemberV2
public interface MemberV2 extends ModelEntity, Buildable<MemberV2Builder>
A member of a Lbaas V2 pool- Author:
- wei
-
-
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 StringgetAddress()StringgetId()StringgetProjectId()IntegergetProtocolPort()StringgetSubnetId()IntegergetWeight()booleanisAdminStateUp()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- the member identifier
-
getProjectId
String getProjectId()
- Returns:
- the ID of the project/tenant that owns the resource
-
getAddress
String getAddress()
- Returns:
- address the IP address of a member
-
getProtocolPort
Integer getProtocolPort()
- Returns:
- The port on which the application is hosted.such as 80
-
getWeight
Integer getWeight()
- Returns:
- Weight of member.1~256
-
getSubnetId
String getSubnetId()
- Returns:
- The subnet in which to access the member
-
isAdminStateUp
boolean isAdminStateUp()
- Returns:
- The administrative state of the member, which is up (true) or down (false).
-
-