GET /ovirt-engine/api/events?from=123
public static interface EventsService.ListRequest extends Request<EventsService.ListRequest,EventsService.ListResponse>
Modifier and Type | Method and Description |
---|---|
EventsService.ListRequest |
caseSensitive(Boolean caseSensitive)
Indicates if the search performed using the
search parameter should be performed taking case into
account. |
EventsService.ListRequest |
from(BigInteger from)
Indicates the identifier of the the first event that should be returned.
|
EventsService.ListRequest |
from(Integer from)
Indicates the identifier of the the first event that should be returned.
|
EventsService.ListRequest |
from(Long from)
Indicates the identifier of the the first event that should be returned.
|
EventsService.ListRequest |
max(BigInteger max)
Sets the maximum number of events to return.
|
EventsService.ListRequest |
max(Integer max)
Sets the maximum number of events to return.
|
EventsService.ListRequest |
max(Long max)
Sets the maximum number of events to return.
|
EventsService.ListRequest |
search(String search)
A query string used to restrict the returned events.
|
EventsService.ListRequest caseSensitive(Boolean caseSensitive)
Indicates if the search performed using the search
parameter should be performed taking case into
account. The default value is true
, which means that case is taken into account. If you want to search
ignoring case set it to false
.
EventsService.ListRequest from(Integer from)
Indicates the identifier of the the first event that should be returned. The identifiers of events are
strictly increasing, so when this parameter is used only the events with that identifiers equal or greater
than the given value will be returned. For example, the following request will return only the events
with identifiers greater or equal than 123
:
GET /ovirt-engine/api/events?from=123
This parameter is optional, and if not specified then the first event returned will be most recently generated.
EventsService.ListRequest from(Long from)
Indicates the identifier of the the first event that should be returned. The identifiers of events are
strictly increasing, so when this parameter is used only the events with that identifiers equal or greater
than the given value will be returned. For example, the following request will return only the events
with identifiers greater or equal than 123
:
GET /ovirt-engine/api/events?from=123
This parameter is optional, and if not specified then the first event returned will be most recently generated.
EventsService.ListRequest from(BigInteger from)
Indicates the identifier of the the first event that should be returned. The identifiers of events are
strictly increasing, so when this parameter is used only the events with that identifiers equal or greater
than the given value will be returned. For example, the following request will return only the events
with identifiers greater or equal than 123
:
GET /ovirt-engine/api/events?from=123
This parameter is optional, and if not specified then the first event returned will be most recently generated.
EventsService.ListRequest max(Integer max)
Sets the maximum number of events to return. If not specified all the events are returned.
EventsService.ListRequest max(Long max)
Sets the maximum number of events to return. If not specified all the events are returned.
EventsService.ListRequest max(BigInteger max)
Sets the maximum number of events to return. If not specified all the events are returned.
EventsService.ListRequest search(String search)
A query string used to restrict the returned events.
Copyright © 2016. All rights reserved.