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

com.vmware.vim25.InsufficientCpuResourcesFault 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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy