Package org.ovirt.engine.sdk4.services
Interface HostDevicesService.ListRequest
-
- All Superinterfaces:
Request<HostDevicesService.ListRequest,HostDevicesService.ListResponse>
- Enclosing interface:
- HostDevicesService
public static interface HostDevicesService.ListRequest extends Request<HostDevicesService.ListRequest,HostDevicesService.ListResponse>
List the devices of a host. The order of the returned list of devices isn't guaranteed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HostDevicesService.ListRequest
follow(String follow)
Indicates which inner links should be _followed_.HostDevicesService.ListRequest
max(Integer max)
Sets the maximum number of devices to return.HostDevicesService.ListRequest
max(Long max)
Sets the maximum number of devices to return.HostDevicesService.ListRequest
max(BigInteger max)
Sets the maximum number of devices to return.
-
-
-
Method Detail
-
follow
HostDevicesService.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
HostDevicesService.ListRequest max(Integer max)
Sets the maximum number of devices to return. If not specified all the devices are returned.
-
max
HostDevicesService.ListRequest max(Long max)
Sets the maximum number of devices to return. If not specified all the devices are returned.
-
max
HostDevicesService.ListRequest max(BigInteger max)
Sets the maximum number of devices to return. If not specified all the devices are returned.
-
-