com.vmware.vim25.InsufficientCpuResourcesFault 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 InsufficientCpuResourcesFault complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InsufficientCpuResourcesFault">
* <complexContent>
* <extension base="{urn:vim25}InsufficientResourcesFault">
* <sequence>
* <element name="unreserved" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="requested" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InsufficientCpuResourcesFault", propOrder = {
"unreserved",
"requested"
})
public class InsufficientCpuResourcesFault
extends InsufficientResourcesFault
{
protected long unreserved;
protected long requested;
/**
* Gets the value of the unreserved property.
*
*/
public long getUnreserved() {
return unreserved;
}
/**
* Sets the value of the unreserved property.
*
*/
public void setUnreserved(long value) {
this.unreserved = value;
}
/**
* Gets the value of the requested property.
*
*/
public long getRequested() {
return requested;
}
/**
* Sets the value of the requested property.
*
*/
public void setRequested(long value) {
this.requested = value;
}
}