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

com.vmware.vim25.ResourcePoolResourceUsage 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 ResourcePoolResourceUsage complex type. * *

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

 * <complexType name="ResourcePoolResourceUsage">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="reservationUsed" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="reservationUsedForVm" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="unreservedForPool" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="unreservedForVm" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="overallUsage" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="maxUsage" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResourcePoolResourceUsage", propOrder = { "reservationUsed", "reservationUsedForVm", "unreservedForPool", "unreservedForVm", "overallUsage", "maxUsage" }) public class ResourcePoolResourceUsage extends DynamicData { protected long reservationUsed; protected long reservationUsedForVm; protected long unreservedForPool; protected long unreservedForVm; protected long overallUsage; protected long maxUsage; /** * Gets the value of the reservationUsed property. * */ public long getReservationUsed() { return reservationUsed; } /** * Sets the value of the reservationUsed property. * */ public void setReservationUsed(long value) { this.reservationUsed = value; } /** * Gets the value of the reservationUsedForVm property. * */ public long getReservationUsedForVm() { return reservationUsedForVm; } /** * Sets the value of the reservationUsedForVm property. * */ public void setReservationUsedForVm(long value) { this.reservationUsedForVm = value; } /** * Gets the value of the unreservedForPool property. * */ public long getUnreservedForPool() { return unreservedForPool; } /** * Sets the value of the unreservedForPool property. * */ public void setUnreservedForPool(long value) { this.unreservedForPool = value; } /** * Gets the value of the unreservedForVm property. * */ public long getUnreservedForVm() { return unreservedForVm; } /** * Sets the value of the unreservedForVm property. * */ public void setUnreservedForVm(long value) { this.unreservedForVm = value; } /** * Gets the value of the overallUsage property. * */ public long getOverallUsage() { return overallUsage; } /** * Sets the value of the overallUsage property. * */ public void setOverallUsage(long value) { this.overallUsage = value; } /** * Gets the value of the maxUsage property. * */ public long getMaxUsage() { return maxUsage; } /** * Sets the value of the maxUsage property. * */ public void setMaxUsage(long value) { this.maxUsage = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy