Package org.openstack4j.api.compute.ext
Interface InstanceActionsService
-
- All Superinterfaces:
RestService
- All Known Implementing Classes:
InstanceActionsServiceImpl
public interface InstanceActionsService extends RestService
API to list executed instance actions.- Author:
- Christian Banse
-
-
Method Summary
All Methods Instance Methods Abstract 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
-
-
-
Method Detail
-
list
List<? extends InstanceAction> list(String serverId)
List the executed actions on the specifiedserverId- Parameters:
serverId- the server id- Returns:
- List of instance actions
-
get
InstanceAction get(String serverId, String requestId)
Shows information about a specified instance action- Parameters:
serverId- the server idrequestId- the request identifier- Returns:
- the instance action
-
-