Class HealthMonitorV2ServiceImpl
- java.lang.Object
-
- org.openstack4j.openstack.internal.BaseOpenStackService
-
- org.openstack4j.openstack.networking.internal.BaseNetworkingServices
-
- org.openstack4j.openstack.networking.internal.ext.HealthMonitorV2ServiceImpl
-
- All Implemented Interfaces:
HealthMonitorV2Service,RestService
public class HealthMonitorV2ServiceImpl extends BaseNetworkingServices implements HealthMonitorV2Service
OpenStack (Neutron) lbaas v2 health monitor operations- Author:
- ashleykasim
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.openstack4j.openstack.internal.BaseOpenStackService
BaseOpenStackService.Invocation<R>
-
-
Constructor Summary
Constructors Constructor Description HealthMonitorV2ServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HealthMonitorV2create(HealthMonitorV2 healthMonitor)Create a healthMonitorV2ActionResponsedelete(String healthMonitorId)Delete the specified healthMonitor by IDHealthMonitorV2get(String healthMonitorId)Get the specified healthMonitorV2 by IDList<? extends HealthMonitorV2>list()List all healthMonitor that the current tenant has access toList<? extends HealthMonitorV2>list(Map<String,String> filteringParams)Returns list of healthMonitorV2 filtered by parameters.HealthMonitorV2update(String healthMonitorId, HealthMonitorV2Update healthMonitor)Update a healthMonitorV2-
Methods inherited from class org.openstack4j.openstack.internal.BaseOpenStackService
delete, deleteWithResponse, get, getProvider, getServiceVersion, getWithResponse, getXOpenstackRequestId, head, patch, patchWithResponse, post, postWithResponse, put, putWithResponse, request, toList, uri
-
-
-
-
Method Detail
-
list
public List<? extends HealthMonitorV2> list()
List all healthMonitor that the current tenant has access to- Specified by:
listin interfaceHealthMonitorV2Service- Returns:
- list of all healthMonitorV2
-
list
public List<? extends HealthMonitorV2> list(Map<String,String> filteringParams)
Returns list of healthMonitorV2 filtered by parameters.- Specified by:
listin interfaceHealthMonitorV2Service- Parameters:
filteringParams- map (name, value) of filtering parameters
-
get
public HealthMonitorV2 get(String healthMonitorId)
Get the specified healthMonitorV2 by ID- Specified by:
getin interfaceHealthMonitorV2Service- Parameters:
healthMonitorId- the healthMonitorV2 identifier- Returns:
- the healthMonitorV2 or null if not found
-
delete
public ActionResponse delete(String healthMonitorId)
Delete the specified healthMonitor by ID- Specified by:
deletein interfaceHealthMonitorV2Service- Parameters:
healthMonitorId- the healthMonitorV2 identifier- Returns:
- the action response
-
create
public HealthMonitorV2 create(HealthMonitorV2 healthMonitor)
Create a healthMonitorV2- Specified by:
createin interfaceHealthMonitorV2Service- Returns:
- HealthMonitorV2
-
update
public HealthMonitorV2 update(String healthMonitorId, HealthMonitorV2Update healthMonitor)
Update a healthMonitorV2- Specified by:
updatein interfaceHealthMonitorV2Service- Parameters:
healthMonitorId- the healthMonitorV2 identifierhealthMonitor- HealthMonitorV2Update- Returns:
- HealthMonitorV2
-
-