services.HostCpuUnitsService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Model management tools for the oVirt Engine API.
package services;
import org.ovirt.api.metamodel.annotations.Out;
import org.ovirt.api.metamodel.annotations.Service;
import annotations.Area;
import mixins.Follow;
import types.HostCpuUnit;
@Service
@Area("Virtualization")
public interface HostCpuUnitsService {
/**
* Returns the List of all host's CPUs with detailed information
* about the topology (socket, core) and with information
* about the current CPU pinning.
*
* @author Lucia Jelinkova
* @since 4.5
* @date 15 Feb 2022
* @status added
*/
interface List extends Follow {
@Out HostCpuUnit[] cpuUnits();
}
}