com.vmware.vim25.VrpResourceAllocationInfo Maven / Gradle / Ivy
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 VrpResourceAllocationInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VrpResourceAllocationInfo">
* <complexContent>
* <extension base="{urn:vim25}ResourceAllocationInfo">
* <sequence>
* <element name="reservationLimit" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VrpResourceAllocationInfo", propOrder = {
"reservationLimit"
})
public class VrpResourceAllocationInfo
extends ResourceAllocationInfo
{
protected Long reservationLimit;
/**
* Gets the value of the reservationLimit property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getReservationLimit() {
return reservationLimit;
}
/**
* Sets the value of the reservationLimit property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setReservationLimit(Long value) {
this.reservationLimit = value;
}
}