Interface HealthMonitorService
-
- All Superinterfaces:
RestService
- All Known Implementing Classes:
HealthMonitorServiceImpl
public interface HealthMonitorService extends RestService
Networking (Neutron) Lbaas healthmonitor Extension API- Author:
- liujunpeng
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HealthMonitorcreate(HealthMonitor healthMonitor)Create a healthMonitorActionResponsedelete(String healthMonitorId)Delete the specified healthMonitor by IDHealthMonitorget(String healthMonitorId)Get the specified healthMonitor by IDList<? extends HealthMonitor>list()List all healthMonitor that the current tenant has access toList<? extends HealthMonitor>list(Map<String,String> filteringParams)Returns list of healthMonitor filtered by parameters.HealthMonitorupdate(String healthMonitorId, HealthMonitorUpdate healthMonitor)Update a healthMonitor
-
-
-
Method Detail
-
list
List<? extends HealthMonitor> list()
List all healthMonitor that the current tenant has access to- Returns:
- list of all healthMonitor
-
list
List<? extends HealthMonitor> list(Map<String,String> filteringParams)
Returns list of healthMonitor filtered by parameters.- Parameters:
filteringParams- map (name, value) of filtering parameters
-
get
HealthMonitor get(String healthMonitorId)
Get the specified healthMonitor by ID- Parameters:
healthMonitorId- the healthMonitor identifier- Returns:
- the healthMonitor or null if not found
-
delete
ActionResponse delete(String healthMonitorId)
Delete the specified healthMonitor by ID- Parameters:
healthMonitorId- the healthMonitor identifier- Returns:
- the action response
-
create
HealthMonitor create(HealthMonitor healthMonitor)
Create a healthMonitor- Returns:
- HealthMonitor
-
update
HealthMonitor update(String healthMonitorId, HealthMonitorUpdate healthMonitor)
Update a healthMonitor- Parameters:
healthMonitorId- the healthMonitor identifierhealthMonitor- HealthMonitorUpdate- Returns:
- HealthMonitor
-
-