com.vmware.vim25.ClusterDasHostRecommendation Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ClusterDasHostRecommendation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClusterDasHostRecommendation">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="host" type="{urn:vim25}ManagedObjectReference"/>
* <element name="drsRating" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClusterDasHostRecommendation", propOrder = {
"host",
"drsRating"
})
public class ClusterDasHostRecommendation
extends DynamicData
{
@XmlElement(required = true)
protected ManagedObjectReference host;
protected Integer drsRating;
/**
* 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;
}
/**
* Gets the value of the drsRating property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDrsRating() {
return drsRating;
}
/**
* Sets the value of the drsRating property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDrsRating(Integer value) {
this.drsRating = value;
}
}