Package org.openstack4j.model.compute
Interface ServerAction
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
ServerEvent
public interface ServerAction extends ModelEntity
This interface describes the getter-methods (and thus components) of aServerAction. All getters map to the possible return values ofGET /v2.1/servers/{server_id}/os-instance-actions​GET /v2.1/servers/{server_id}/os-instance-actions/{request_id}​- Author:
- sujit sah
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAction()Returns the action performed on the serverList<? extends ServerActionEvent>getEvents()Returns the list of server actionsStringgetInstaceUuid()Returns the id of the serverStringgetRequestId()Returns the request id of the server actionDategetStartTime()Returns the start_time of the server actionStringgetUserId()Returns the id of the user
-
-
-
Method Detail
-
getAction
String getAction()
Returns the action performed on the server- Returns:
- the action performed on the server
-
getEvents
List<? extends ServerActionEvent> getEvents()
Returns the list of server actions- Returns:
- the list of server actions
-
getInstaceUuid
String getInstaceUuid()
Returns the id of the server- Returns:
- the id of the server
-
getRequestId
String getRequestId()
Returns the request id of the server action- Returns:
- the request id of the server action
-
getStartTime
Date getStartTime()
Returns the start_time of the server action- Returns:
- the start_time of the server action
-
getUserId
String getUserId()
Returns the id of the user- Returns:
- the id of user
-
-