List and filter on Linode events.
- name: List all of the events for the current Linode Account
linode.cloud.event_list: {}
- name: List the latest 5 events for the current Linode Account
linode.cloud.event_list:
count: 5
order_by: created
order: desc
- name: List all Linode Instance creation events for the current Linode Account
linode.cloud.event_list:
filters:
- name: action
values: linode_create
Field |
Type |
Required |
Description |
order |
str |
Optional |
The order to list events in. (Choices: desc , asc ; Default: asc ) |
order_by |
str |
Optional |
The attribute to order events by. |
filters (sub-options) |
list |
Optional |
A list of filters to apply to the resulting events. |
count |
int |
Optional |
The number of results to return. If undefined, all results will be returned. |
Field |
Type |
Required |
Description |
name |
str |
Required |
The name of the field to filter on. Valid filterable attributes can be found here: https://www.linode.com/docs/api/account/#events-list__responses |
values |
list |
Required |
A list of values to allow for this field. Fields will pass this filter if at least one of these values matches. |