![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.ResourceAllocationInfo Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ResourceAllocationInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ResourceAllocationInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="reservation" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="expandableReservation" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="limit" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="shares" type="{urn:vim25}SharesInfo" minOccurs="0"/>
* <element name="overheadLimit" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ResourceAllocationInfo", propOrder = {
"reservation",
"expandableReservation",
"limit",
"shares",
"overheadLimit"
})
@XmlSeeAlso({
VrpResourceAllocationInfo.class
})
public class ResourceAllocationInfo
extends DynamicData
{
protected Long reservation;
protected Boolean expandableReservation;
protected Long limit;
protected SharesInfo shares;
protected Long overheadLimit;
/**
* Gets the value of the reservation property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getReservation() {
return reservation;
}
/**
* Sets the value of the reservation property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setReservation(Long value) {
this.reservation = value;
}
/**
* Gets the value of the expandableReservation property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isExpandableReservation() {
return expandableReservation;
}
/**
* Sets the value of the expandableReservation property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setExpandableReservation(Boolean value) {
this.expandableReservation = value;
}
/**
* Gets the value of the limit property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getLimit() {
return limit;
}
/**
* Sets the value of the limit property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setLimit(Long value) {
this.limit = value;
}
/**
* Gets the value of the shares property.
*
* @return
* possible object is
* {@link SharesInfo }
*
*/
public SharesInfo getShares() {
return shares;
}
/**
* Sets the value of the shares property.
*
* @param value
* allowed object is
* {@link SharesInfo }
*
*/
public void setShares(SharesInfo value) {
this.shares = value;
}
/**
* Gets the value of the overheadLimit property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getOverheadLimit() {
return overheadLimit;
}
/**
* Sets the value of the overheadLimit property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setOverheadLimit(Long value) {
this.overheadLimit = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy