com.vmware.vim25.ClusterDasFailoverLevelAdvancedRuntimeInfoHostSlots 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 ClusterDasFailoverLevelAdvancedRuntimeInfoHostSlots complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClusterDasFailoverLevelAdvancedRuntimeInfoHostSlots">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="host" type="{urn:vim25}ManagedObjectReference"/>
* <element name="slots" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClusterDasFailoverLevelAdvancedRuntimeInfoHostSlots", propOrder = {
"host",
"slots"
})
public class ClusterDasFailoverLevelAdvancedRuntimeInfoHostSlots
extends DynamicData
{
@XmlElement(required = true)
protected ManagedObjectReference host;
protected int slots;
/**
* 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 slots property.
*
*/
public int getSlots() {
return slots;
}
/**
* Sets the value of the slots property.
*
*/
public void setSlots(int value) {
this.slots = value;
}
}