Package org.openstack4j.api.compute
Interface ServerActionsService
-
- All Superinterfaces:
RestService
- All Known Implementing Classes:
NovaServerActionsService
public interface ServerActionsService extends RestService
This interface defines all methods for the manipulation of server actions- Author:
- sujit sah
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends ServerAction>list(String serverId)Gets a list of currently existingServerActions for a specified server.ServerActionshow(String serverId, String requestId)Gets the server action associated with specific request id for the specified server
-
-
-
Method Detail
-
list
List<? extends ServerAction> list(String serverId)
Gets a list of currently existingServerActions for a specified server.- Parameters:
serverId- the id of server- Returns:
- the list of
ServerActions
-
show
ServerAction show(String serverId, String requestId)
Gets the server action associated with specific request id for the specified server- Parameters:
serverId- the id of serverrequest- id of specific action for the specified server- Returns:
- the server action detail
-
-