Events¶
- 
class 
heatclient.v1.events.Event(manager, info, loaded=False) Bases:
heatclient.common.base.Resource- 
data(**kwargs) 
- 
delete() 
- 
update(**fields) 
- 
 
- 
class 
heatclient.v1.events.EventManager(client) Bases:
heatclient.v1.stacks.StackChildManager- 
get(stack_id, resource_name, event_id) Get the details for a specific event.
- Parameters
 stack_id – ID or name of stack containing the event
resource_name – ID of resource the event belongs to
event_id – ID of event to get the details for
- 
list(stack_id, resource_name=None, **kwargs) Get a list of events.
- Parameters
 stack_id – ID or name of stack the events belong to
resource_name – Optional name of resources to filter events by
- Return type
 list of
Event
- 
resource_class alias of
Event
-