
com.vmware.vim25.VirtualMachineVFlashModuleInfo Maven / Gradle / Ivy
The newest version!
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 VirtualMachineVFlashModuleInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineVFlashModuleInfo">
* <complexContent>
* <extension base="{urn:vim25}VirtualMachineTargetInfo">
* <sequence>
* <element name="vFlashModule" type="{urn:vim25}HostVFlashManagerVFlashCacheConfigInfoVFlashModuleConfigOption"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineVFlashModuleInfo", propOrder = {
"vFlashModule"
})
public class VirtualMachineVFlashModuleInfo
extends VirtualMachineTargetInfo
{
@XmlElement(required = true)
protected HostVFlashManagerVFlashCacheConfigInfoVFlashModuleConfigOption vFlashModule;
/**
* Gets the value of the vFlashModule property.
*
* @return
* possible object is
* {@link HostVFlashManagerVFlashCacheConfigInfoVFlashModuleConfigOption }
*
*/
public HostVFlashManagerVFlashCacheConfigInfoVFlashModuleConfigOption getVFlashModule() {
return vFlashModule;
}
/**
* Sets the value of the vFlashModule property.
*
* @param value
* allowed object is
* {@link HostVFlashManagerVFlashCacheConfigInfoVFlashModuleConfigOption }
*
*/
public void setVFlashModule(HostVFlashManagerVFlashCacheConfigInfoVFlashModuleConfigOption value) {
this.vFlashModule = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy