com.vmware.vim25.VirtualDiskConfigSpec 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 VirtualDiskConfigSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualDiskConfigSpec">
* <complexContent>
* <extension base="{urn:vim25}VirtualDeviceConfigSpec">
* <sequence>
* <element name="diskMoveType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="migrateCache" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualDiskConfigSpec", propOrder = {
"diskMoveType",
"migrateCache"
})
public class VirtualDiskConfigSpec
extends VirtualDeviceConfigSpec
{
protected String diskMoveType;
protected Boolean migrateCache;
/**
* Gets the value of the diskMoveType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDiskMoveType() {
return diskMoveType;
}
/**
* Sets the value of the diskMoveType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDiskMoveType(String value) {
this.diskMoveType = value;
}
/**
* Gets the value of the migrateCache property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isMigrateCache() {
return migrateCache;
}
/**
* Sets the value of the migrateCache property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setMigrateCache(Boolean value) {
this.migrateCache = value;
}
}