Package org.ovirt.engine.sdk4.services
Interface VmMediatedDeviceService.UpdateRequest
-
- All Superinterfaces:
Request<VmMediatedDeviceService.UpdateRequest,VmMediatedDeviceService.UpdateResponse>
- Enclosing interface:
- VmMediatedDeviceService
public static interface VmMediatedDeviceService.UpdateRequest extends Request<VmMediatedDeviceService.UpdateRequest,VmMediatedDeviceService.UpdateResponse>
Updates the information about the mediated device. You can update the information using `specParams` element. For example, to update a mediated device, send a request like this: [source] ---- PUT /ovirt-engine/api/vms/123/mediateddevices/00000000-0000-0000-0000-000000000000mdevType nvidia-11 mdevType nvidia-11
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VmMediatedDeviceService.UpdateRequest
async(Boolean async)
Indicates if the update should be performed asynchronously.VmMediatedDeviceService.UpdateRequest
device(VmMediatedDeviceBuilder device)
The information about the mediated device.VmMediatedDeviceService.UpdateRequest
device(VmMediatedDevice device)
-
-
-
Method Detail
-
async
VmMediatedDeviceService.UpdateRequest async(Boolean async)
Indicates if the update should be performed asynchronously.
-
device
VmMediatedDeviceService.UpdateRequest device(VmMediatedDevice device)
-
device
VmMediatedDeviceService.UpdateRequest device(VmMediatedDeviceBuilder device)
The information about the mediated device. The request data must contain `specParams` properties. The response data contains complete information about the updated mediated device.
-
-