Interface LbPoolV2Status
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
OctaviaLbPoolV2Status
public interface LbPoolV2Status extends ModelEntity
The status of an lbaas v2 loadbalancer pool- Author:
- wei
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HealthMonitorV2StatusgetHeathMonitorStatus()The status of the healthmonitor associated with this poolStringgetId()The id of the loadbalancer poolList<MemberV2Status>getMemberStatuses()The status of the members of the loadbalancer poolStringgetName()The name of the loadbalancer poolStringgetOperatingStatus()The operating status of the loadbalancer poolStringgetProvisioningStatus()The provisioning status of the loadbalancer pool
-
-
-
Method Detail
-
getId
String getId()
The id of the loadbalancer pool- Returns:
- id
-
getName
String getName()
The name of the loadbalancer pool- Returns:
- name
-
getOperatingStatus
String getOperatingStatus()
The operating status of the loadbalancer pool- Returns:
- operating status
-
getProvisioningStatus
String getProvisioningStatus()
The provisioning status of the loadbalancer pool- Returns:
- provisioning status
-
getHeathMonitorStatus
HealthMonitorV2Status getHeathMonitorStatus()
The status of the healthmonitor associated with this pool- Returns:
- HealthMonitorV2Status
-
getMemberStatuses
List<MemberV2Status> getMemberStatuses()
The status of the members of the loadbalancer pool- Returns:
- list of MemberV2Status
-
-