Class InstanceActionsServiceImpl
- java.lang.Object
-
- org.openstack4j.openstack.internal.BaseOpenStackService
-
- org.openstack4j.openstack.compute.internal.BaseComputeServices
-
- org.openstack4j.openstack.compute.internal.ext.InstanceActionsServiceImpl
-
- All Implemented Interfaces:
InstanceActionsService,RestService
public class InstanceActionsServiceImpl extends BaseComputeServices implements InstanceActionsService
API to list executed instance actions.- Author:
- Christian Banse
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.openstack4j.openstack.internal.BaseOpenStackService
BaseOpenStackService.Invocation<R>
-
-
Constructor Summary
Constructors Constructor Description InstanceActionsServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InstanceActionget(String serverId, String requestId)Shows information about a specified instance actionList<? extends InstanceAction>list(String serverId)List the executed actions on the specifiedserverId-
Methods inherited from class org.openstack4j.openstack.compute.internal.BaseComputeServices
invokeAction, invokeActionWithResponse
-
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 InstanceAction> list(String serverId)
Description copied from interface:InstanceActionsServiceList the executed actions on the specifiedserverId- Specified by:
listin interfaceInstanceActionsService- Parameters:
serverId- the server id- Returns:
- List of instance actions
-
get
public InstanceAction get(String serverId, String requestId)
Description copied from interface:InstanceActionsServiceShows information about a specified instance action- Specified by:
getin interfaceInstanceActionsService- Parameters:
serverId- the server idrequestId- the request identifier- Returns:
- the instance action
-
-