Interface LoadBalancerV2Status
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
NeutronLoadBalancerV2Status
public interface LoadBalancerV2Status extends ModelEntity
The status of an lbaas v2 loadbalancer- Author:
- emjburns
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()The id of the loadbalancerList<ListenerV2Status>getListenerStatuses()The listeners associated with the loadbalancerStringgetName()The name of the loadbalancerStringgetOperatingStatus()The operating status of the loadbalancerStringgetProvisioningStatus()The provisioning status of the loadbalancer
-
-
-
Method Detail
-
getId
String getId()
The id of the loadbalancer- Returns:
- id
-
getName
String getName()
The name of the loadbalancer- Returns:
- name
-
getOperatingStatus
String getOperatingStatus()
The operating status of the loadbalancer- Returns:
- operating status
-
getProvisioningStatus
String getProvisioningStatus()
The provisioning status of the loadbalancer- Returns:
- provisioning status
-
getListenerStatuses
List<ListenerV2Status> getListenerStatuses()
The listeners associated with the loadbalancer- Returns:
- list of listener statuses
-
-