com.vmware.vim25.NotEnoughLogicalCpus 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 NotEnoughLogicalCpus complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NotEnoughLogicalCpus">
* <complexContent>
* <extension base="{urn:vim25}NotEnoughCpus">
* <sequence>
* <element name="host" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NotEnoughLogicalCpus", propOrder = {
"host"
})
public class NotEnoughLogicalCpus
extends NotEnoughCpus
{
protected ManagedObjectReference host;
/**
* Gets the value of the host property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getHost() {
return host;
}
/**
* Sets the value of the host property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setHost(ManagedObjectReference value) {
this.host = value;
}
}