Interface EventsService

  • All Known Implementing Classes:
    EventsServiceImpl

    public interface EventsService
    This interface defines all methods for the manipulation of events
    Author:
    Octopus Zhang
    • Method Detail

      • list

        List<? extends Event> list​(String stackName,
                                   String stackId)
        Gets a list of currently existing Events for a specified stack.
        Parameters:
        stackId - The unique identifier for a stack
        stackName - 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 existing Events for a specified stack resource.
        Parameters:
        stackId - The unique identifier for a stack
        stackName - The name of a stack
        resourceName - 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 stack
        stackName - The name of a stack
        resourceName - The name of a resource in the stack
        eventId - The unique identifier of an event related to the resource in the stack
        Returns:
        event details