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