Package org.ovirt.engine.sdk4.services
Interface VmService.AutoPinCpuAndNumaNodesRequest
-
- All Superinterfaces:
Request<VmService.AutoPinCpuAndNumaNodesRequest,VmService.AutoPinCpuAndNumaNodesResponse>
- Enclosing interface:
- VmService
public static interface VmService.AutoPinCpuAndNumaNodesRequest extends Request<VmService.AutoPinCpuAndNumaNodesRequest,VmService.AutoPinCpuAndNumaNodesResponse>
Apply an automatic CPU and NUMA configuration on the VM. IMPORTANT: Since version 4.5 of the engine this operation is deprecated, and preserved only for backwards compatibility. It will be removed in the future. Instead please use PUT followed by <>. An example for a request: [source] ---- POST /ovirt-engine/api/vms/123/autopincpuandnumanodes ---- With a request body like this: [source,xml] ---- true
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VmService.AutoPinCpuAndNumaNodesRequest
async(Boolean async)
Indicates if the detach action should be performed asynchronously.VmService.AutoPinCpuAndNumaNodesRequest
optimizeCpuSettings(Boolean optimizeCpuSettings)
Specifies how the auto CPU and NUMA configuration is applied.
-
-
-
Method Detail
-
async
VmService.AutoPinCpuAndNumaNodesRequest async(Boolean async)
Indicates if the detach action should be performed asynchronously.
-
optimizeCpuSettings
VmService.AutoPinCpuAndNumaNodesRequest optimizeCpuSettings(Boolean optimizeCpuSettings)
Specifies how the auto CPU and NUMA configuration is applied. If set to true, will adjust the CPU topology to fit the VM pinned host hardware. Otherwise, it will use the VM CPU topology.
-
-