Package org.ovirt.engine.sdk4.services
Interface TemplatesService.ListRequest
-
- All Superinterfaces:
Request<TemplatesService.ListRequest,TemplatesService.ListResponse>
- Enclosing interface:
- TemplatesService
public static interface TemplatesService.ListRequest extends Request<TemplatesService.ListRequest,TemplatesService.ListResponse>
Returns the list of virtual machine templates. For example: [source] ---- GET /ovirt-engine/api/templates ---- Will return the list of virtual machines and virtual machine templates. The order of the returned list of templates is not guaranteed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TemplatesService.ListRequest
caseSensitive(Boolean caseSensitive)
Indicates if the search performed using the `search` parameter should be performed taking case into account.TemplatesService.ListRequest
filter(Boolean filter)
Indicates if the results should be filtered according to the permissions of the user.TemplatesService.ListRequest
follow(String follow)
Indicates which inner links should be _followed_.TemplatesService.ListRequest
max(Integer max)
Sets the maximum number of templates to return.TemplatesService.ListRequest
max(Long max)
Sets the maximum number of templates to return.TemplatesService.ListRequest
max(BigInteger max)
Sets the maximum number of templates to return.TemplatesService.ListRequest
search(String search)
A query string used to restrict the returned templates.
-
-
-
Method Detail
-
caseSensitive
TemplatesService.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`.
-
filter
TemplatesService.ListRequest filter(Boolean filter)
Indicates if the results should be filtered according to the permissions of the user.
-
follow
TemplatesService.ListRequest follow(String follow)
Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part of the current request. See <> for details.
-
max
TemplatesService.ListRequest max(Integer max)
Sets the maximum number of templates to return. If not specified, all the templates are returned.
-
max
TemplatesService.ListRequest max(Long max)
Sets the maximum number of templates to return. If not specified, all the templates are returned.
-
max
TemplatesService.ListRequest max(BigInteger max)
Sets the maximum number of templates to return. If not specified, all the templates are returned.
-
search
TemplatesService.ListRequest search(String search)
A query string used to restrict the returned templates.
-
-