All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.HostListSummaryQuickStats Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for HostListSummaryQuickStats complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="HostListSummaryQuickStats">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="overallCpuUsage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="overallMemoryUsage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="distributedCpuFairness" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="distributedMemoryFairness" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="uptime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostListSummaryQuickStats", propOrder = { "overallCpuUsage", "overallMemoryUsage", "distributedCpuFairness", "distributedMemoryFairness", "uptime" }) public class HostListSummaryQuickStats extends DynamicData { protected Integer overallCpuUsage; protected Integer overallMemoryUsage; protected Integer distributedCpuFairness; protected Integer distributedMemoryFairness; protected Integer uptime; /** * 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 overallMemoryUsage property. * * @return * possible object is * {@link Integer } * */ public Integer getOverallMemoryUsage() { return overallMemoryUsage; } /** * Sets the value of the overallMemoryUsage property. * * @param value * allowed object is * {@link Integer } * */ public void setOverallMemoryUsage(Integer value) { this.overallMemoryUsage = value; } /** * Gets the value of the distributedCpuFairness property. * * @return * possible object is * {@link Integer } * */ public Integer getDistributedCpuFairness() { return distributedCpuFairness; } /** * Sets the value of the distributedCpuFairness property. * * @param value * allowed object is * {@link Integer } * */ public void setDistributedCpuFairness(Integer value) { this.distributedCpuFairness = value; } /** * Gets the value of the distributedMemoryFairness property. * * @return * possible object is * {@link Integer } * */ public Integer getDistributedMemoryFairness() { return distributedMemoryFairness; } /** * Sets the value of the distributedMemoryFairness property. * * @param value * allowed object is * {@link Integer } * */ public void setDistributedMemoryFairness(Integer value) { this.distributedMemoryFairness = value; } /** * Gets the value of the uptime property. * * @return * possible object is * {@link Integer } * */ public Integer getUptime() { return uptime; } /** * Sets the value of the uptime property. * * @param value * allowed object is * {@link Integer } * */ public void setUptime(Integer value) { this.uptime = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy