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