vcenter vm hardware cpu: info

The info structure contains CPU-related information about a virtual machine.

Representations:

{
    "cores_per_socket"1,
    "count"1,
    "hot_add_enabled"true,
    "hot_remove_enabled"true
}
<?xml version="1.0" ?>
<ns0:Info xmlns:ns0="http://vmware.com/vcenter/vm/hardware/cpu" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <count>1</count>
  <hot_remove_enabled>true</hot_remove_enabled>
  <hot_add_enabled>true</hot_add_enabled>
  <cores_per_socket>1</cores_per_socket>
</ns0:Info>

Attributes:

Name Type Description
Required
count long Number of CPU cores.

cores_per_socket long Number of CPU cores per socket.

hot_add_enabled boolean Flag indicating whether adding CPUs while the virtual machine is running is enabled.

hot_remove_enabled boolean Flag indicating whether removing CPUs while the virtual machine is running is enabled.