
com.vmware.vim.VirtualMachineQuickStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim;
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 VirtualMachineQuickStats complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineQuickStats">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="overallCpuUsage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="guestMemoryUsage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="hostMemoryUsage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="guestHeartbeatStatus" type="{urn:vim2}ManagedEntityStatus"/>
* <element name="distributedCpuEntitlement" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="distributedMemoryEntitlement" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineQuickStats", propOrder = {
"overallCpuUsage",
"guestMemoryUsage",
"hostMemoryUsage",
"guestHeartbeatStatus",
"distributedCpuEntitlement",
"distributedMemoryEntitlement"
})
public class VirtualMachineQuickStats
extends DynamicData
{
protected Integer overallCpuUsage;
protected Integer guestMemoryUsage;
protected Integer hostMemoryUsage;
@XmlElement(required = true)
protected ManagedEntityStatus guestHeartbeatStatus;
protected Integer distributedCpuEntitlement;
protected Integer distributedMemoryEntitlement;
/**
* Gets the value of the overallCpuUsage property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getOverallCpuUsage() {
return overallCpuUsage;
}
/**
* Sets the value of the overallCpuUsage property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setOverallCpuUsage(Integer value) {
this.overallCpuUsage = value;
}
/**
* Gets the value of the guestMemoryUsage property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getGuestMemoryUsage() {
return guestMemoryUsage;
}
/**
* Sets the value of the guestMemoryUsage property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setGuestMemoryUsage(Integer value) {
this.guestMemoryUsage = value;
}
/**
* Gets the value of the hostMemoryUsage property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getHostMemoryUsage() {
return hostMemoryUsage;
}
/**
* Sets the value of the hostMemoryUsage property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setHostMemoryUsage(Integer value) {
this.hostMemoryUsage = value;
}
/**
* Gets the value of the guestHeartbeatStatus property.
*
* @return
* possible object is
* {@link ManagedEntityStatus }
*
*/
public ManagedEntityStatus getGuestHeartbeatStatus() {
return guestHeartbeatStatus;
}
/**
* Sets the value of the guestHeartbeatStatus property.
*
* @param value
* allowed object is
* {@link ManagedEntityStatus }
*
*/
public void setGuestHeartbeatStatus(ManagedEntityStatus value) {
this.guestHeartbeatStatus = value;
}
/**
* Gets the value of the distributedCpuEntitlement property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDistributedCpuEntitlement() {
return distributedCpuEntitlement;
}
/**
* Sets the value of the distributedCpuEntitlement property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDistributedCpuEntitlement(Integer value) {
this.distributedCpuEntitlement = value;
}
/**
* Gets the value of the distributedMemoryEntitlement property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDistributedMemoryEntitlement() {
return distributedMemoryEntitlement;
}
/**
* Sets the value of the distributedMemoryEntitlement property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDistributedMemoryEntitlement(Integer value) {
this.distributedMemoryEntitlement = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy