Package org.openstack4j.api.heat
Interface EventsService
-
- All Known Implementing Classes:
EventsServiceImpl
public interface EventsServiceThis interface defines all methods for the manipulation of events- Author:
- Octopus Zhang
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends Event>list(String stackName, String stackId)Gets a list of currently existingEvents for a specified stack.List<? extends Event>list(String stackName, String stackId, String resourceName)Gets a list of currently existingEvents for a specified stack resource.Eventshow(String stackName, String stackId, String resourceName, String eventId)Shows details for a specified event.
-
-
-
Method Detail
-
list
List<? extends Event> list(String stackName, String stackId)
Gets a list of currently existingEvents for a specified stack.- Parameters:
stackId- The unique identifier for a stackstackName- The name of a stack- Returns:
- the list of
Events
-
list
List<? extends Event> list(String stackName, String stackId, String resourceName)
Gets a list of currently existingEvents for a specified stack resource.- Parameters:
stackId- The unique identifier for a stackstackName- The name of a stackresourceName- The name of a resource in the stack- Returns:
- the list of
Events
-
show
Event show(String stackName, String stackId, String resourceName, String eventId)
Shows details for a specified event.- Parameters:
stackId- The unique identifier for a stackstackName- The name of a stackresourceName- The name of a resource in the stackeventId- The unique identifier of an event related to the resource in the stack- Returns:
- event details
-
-