![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.InsufficientStandbyCpuResource 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 InsufficientStandbyCpuResource complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InsufficientStandbyCpuResource">
* <complexContent>
* <extension base="{urn:vim25}InsufficientStandbyResource">
* <sequence>
* <element name="available" 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 = "InsufficientStandbyCpuResource", propOrder = {
"available",
"requested"
})
public class InsufficientStandbyCpuResource
extends InsufficientStandbyResource
{
protected long available;
protected long requested;
/**
* Gets the value of the available property.
*
*/
public long getAvailable() {
return available;
}
/**
* Sets the value of the available property.
*
*/
public void setAvailable(long value) {
this.available = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy