Class VIP
- java.lang.Object
-
- org.jclouds.openstack.neutron.v2.domain.lbaas.v1.VIP
-
- Direct Known Subclasses:
VIP.CreateVIP
,VIP.UpdateVIP
public class VIP extends Object
A Neutron LBaaS v1 VIP.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
VIP.CreateBuilder
Create builder (inheriting from Builder).static class
VIP.CreateVIP
Create options - extend the domain class, passed to API create calls.static class
VIP.UpdateBuilder
Update builder (inheriting from Builder).static class
VIP.UpdateVIP
Update options - extend the domain class, passed to API update calls.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VIP.CreateBuilder
createBuilder(String subnetId, Protocol protocol, Integer port, String poolId)
boolean
equals(Object o)
String
getAddress()
Boolean
getAdminStateUp()
Integer
getConnectionLimit()
String
getDescription()
String
getId()
String
getName()
String
getPoolId()
String
getPortId()
Protocol
getProtocol()
Integer
getProtocolPort()
SessionPersistence
getSessionPersistence()
LBaaSStatus
getStatus()
String
getStatusDescription()
String
getSubnetId()
String
getTenantId()
int
hashCode()
String
toString()
static VIP.UpdateBuilder
updateBuilder()
-
-
-
Method Detail
-
getSessionPersistence
@Nullable public SessionPersistence getSessionPersistence()
- Returns:
- the session persistence for this VIP.
-
getConnectionLimit
@Nullable public Integer getConnectionLimit()
- Returns:
- the connection limit for this VIP.
-
getAdminStateUp
@Nullable public Boolean getAdminStateUp()
- Returns:
- the administrative state for this VIP.
-
getStatus
@Nullable public LBaaSStatus getStatus()
- Returns:
- the status for this VIP.
-
getStatusDescription
@Nullable public String getStatusDescription()
- Returns:
- the status description for this VIP.
-
createBuilder
public static VIP.CreateBuilder createBuilder(String subnetId, Protocol protocol, Integer port, String poolId)
- Returns:
- the Builder for creating a new VIP.
-
updateBuilder
public static VIP.UpdateBuilder updateBuilder()
- Returns:
- the Builder for updating a VIP.
-
-