![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostHardwareInfo Maven / Gradle / Ivy
package com.vmware.vim25;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostHardwareInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostHardwareInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="systemInfo" type="{urn:vim25}HostSystemInfo"/>
* <element name="cpuPowerManagementInfo" type="{urn:vim25}HostCpuPowerManagementInfo" minOccurs="0"/>
* <element name="cpuInfo" type="{urn:vim25}HostCpuInfo"/>
* <element name="cpuPkg" type="{urn:vim25}HostCpuPackage" maxOccurs="unbounded"/>
* <element name="memorySize" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="numaInfo" type="{urn:vim25}HostNumaInfo" minOccurs="0"/>
* <element name="smcPresent" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="pciDevice" type="{urn:vim25}HostPciDevice" maxOccurs="unbounded" minOccurs="0"/>
* <element name="cpuFeature" type="{urn:vim25}HostCpuIdInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="biosInfo" type="{urn:vim25}HostBIOSInfo" minOccurs="0"/>
* <element name="reliableMemoryInfo" type="{urn:vim25}HostReliableMemoryInfo" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostHardwareInfo", propOrder = {
"systemInfo",
"cpuPowerManagementInfo",
"cpuInfo",
"cpuPkg",
"memorySize",
"numaInfo",
"smcPresent",
"pciDevice",
"cpuFeature",
"biosInfo",
"reliableMemoryInfo"
})
public class HostHardwareInfo
extends DynamicData
{
@XmlElement(required = true)
protected HostSystemInfo systemInfo;
protected HostCpuPowerManagementInfo cpuPowerManagementInfo;
@XmlElement(required = true)
protected HostCpuInfo cpuInfo;
@XmlElement(required = true)
protected List cpuPkg;
protected long memorySize;
protected HostNumaInfo numaInfo;
protected Boolean smcPresent;
protected List pciDevice;
protected List cpuFeature;
protected HostBIOSInfo biosInfo;
protected HostReliableMemoryInfo reliableMemoryInfo;
/**
* Gets the value of the systemInfo property.
*
* @return
* possible object is
* {@link HostSystemInfo }
*
*/
public HostSystemInfo getSystemInfo() {
return systemInfo;
}
/**
* Sets the value of the systemInfo property.
*
* @param value
* allowed object is
* {@link HostSystemInfo }
*
*/
public void setSystemInfo(HostSystemInfo value) {
this.systemInfo = value;
}
/**
* Gets the value of the cpuPowerManagementInfo property.
*
* @return
* possible object is
* {@link HostCpuPowerManagementInfo }
*
*/
public HostCpuPowerManagementInfo getCpuPowerManagementInfo() {
return cpuPowerManagementInfo;
}
/**
* Sets the value of the cpuPowerManagementInfo property.
*
* @param value
* allowed object is
* {@link HostCpuPowerManagementInfo }
*
*/
public void setCpuPowerManagementInfo(HostCpuPowerManagementInfo value) {
this.cpuPowerManagementInfo = value;
}
/**
* Gets the value of the cpuInfo property.
*
* @return
* possible object is
* {@link HostCpuInfo }
*
*/
public HostCpuInfo getCpuInfo() {
return cpuInfo;
}
/**
* Sets the value of the cpuInfo property.
*
* @param value
* allowed object is
* {@link HostCpuInfo }
*
*/
public void setCpuInfo(HostCpuInfo value) {
this.cpuInfo = value;
}
/**
* Gets the value of the cpuPkg property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the cpuPkg property.
*
*
* For example, to add a new item, do as follows:
*
* getCpuPkg().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostCpuPackage }
*
*
*/
public List getCpuPkg() {
if (cpuPkg == null) {
cpuPkg = new ArrayList();
}
return this.cpuPkg;
}
/**
* Gets the value of the memorySize property.
*
*/
public long getMemorySize() {
return memorySize;
}
/**
* Sets the value of the memorySize property.
*
*/
public void setMemorySize(long value) {
this.memorySize = value;
}
/**
* Gets the value of the numaInfo property.
*
* @return
* possible object is
* {@link HostNumaInfo }
*
*/
public HostNumaInfo getNumaInfo() {
return numaInfo;
}
/**
* Sets the value of the numaInfo property.
*
* @param value
* allowed object is
* {@link HostNumaInfo }
*
*/
public void setNumaInfo(HostNumaInfo value) {
this.numaInfo = value;
}
/**
* Gets the value of the smcPresent property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSmcPresent() {
return smcPresent;
}
/**
* Sets the value of the smcPresent property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSmcPresent(Boolean value) {
this.smcPresent = value;
}
/**
* Gets the value of the pciDevice property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the pciDevice property.
*
*
* For example, to add a new item, do as follows:
*
* getPciDevice().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostPciDevice }
*
*
*/
public List getPciDevice() {
if (pciDevice == null) {
pciDevice = new ArrayList();
}
return this.pciDevice;
}
/**
* Gets the value of the cpuFeature property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the cpuFeature property.
*
*
* For example, to add a new item, do as follows:
*
* getCpuFeature().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostCpuIdInfo }
*
*
*/
public List getCpuFeature() {
if (cpuFeature == null) {
cpuFeature = new ArrayList();
}
return this.cpuFeature;
}
/**
* Gets the value of the biosInfo property.
*
* @return
* possible object is
* {@link HostBIOSInfo }
*
*/
public HostBIOSInfo getBiosInfo() {
return biosInfo;
}
/**
* Sets the value of the biosInfo property.
*
* @param value
* allowed object is
* {@link HostBIOSInfo }
*
*/
public void setBiosInfo(HostBIOSInfo value) {
this.biosInfo = value;
}
/**
* Gets the value of the reliableMemoryInfo property.
*
* @return
* possible object is
* {@link HostReliableMemoryInfo }
*
*/
public HostReliableMemoryInfo getReliableMemoryInfo() {
return reliableMemoryInfo;
}
/**
* Sets the value of the reliableMemoryInfo property.
*
* @param value
* allowed object is
* {@link HostReliableMemoryInfo }
*
*/
public void setReliableMemoryInfo(HostReliableMemoryInfo value) {
this.reliableMemoryInfo = value;
}
}