com.vmware.vim25.VirtualDiskSparseVer2BackingOption 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 VirtualDiskSparseVer2BackingOption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualDiskSparseVer2BackingOption">
* <complexContent>
* <extension base="{urn:vim25}VirtualDeviceFileBackingOption">
* <sequence>
* <element name="diskMode" type="{urn:vim25}ChoiceOption"/>
* <element name="split" type="{urn:vim25}BoolOption"/>
* <element name="writeThrough" type="{urn:vim25}BoolOption"/>
* <element name="growable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="hotGrowable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="uuid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualDiskSparseVer2BackingOption", propOrder = {
"diskMode",
"split",
"writeThrough",
"growable",
"hotGrowable",
"uuid"
})
public class VirtualDiskSparseVer2BackingOption
extends VirtualDeviceFileBackingOption
{
@XmlElement(required = true)
protected ChoiceOption diskMode;
@XmlElement(required = true)
protected BoolOption split;
@XmlElement(required = true)
protected BoolOption writeThrough;
protected boolean growable;
protected boolean hotGrowable;
protected boolean uuid;
/**
* Gets the value of the diskMode property.
*
* @return
* possible object is
* {@link ChoiceOption }
*
*/
public ChoiceOption getDiskMode() {
return diskMode;
}
/**
* Sets the value of the diskMode property.
*
* @param value
* allowed object is
* {@link ChoiceOption }
*
*/
public void setDiskMode(ChoiceOption value) {
this.diskMode = value;
}
/**
* Gets the value of the split property.
*
* @return
* possible object is
* {@link BoolOption }
*
*/
public BoolOption getSplit() {
return split;
}
/**
* Sets the value of the split property.
*
* @param value
* allowed object is
* {@link BoolOption }
*
*/
public void setSplit(BoolOption value) {
this.split = value;
}
/**
* Gets the value of the writeThrough property.
*
* @return
* possible object is
* {@link BoolOption }
*
*/
public BoolOption getWriteThrough() {
return writeThrough;
}
/**
* Sets the value of the writeThrough property.
*
* @param value
* allowed object is
* {@link BoolOption }
*
*/
public void setWriteThrough(BoolOption value) {
this.writeThrough = value;
}
/**
* Gets the value of the growable property.
*
*/
public boolean isGrowable() {
return growable;
}
/**
* Sets the value of the growable property.
*
*/
public void setGrowable(boolean value) {
this.growable = value;
}
/**
* Gets the value of the hotGrowable property.
*
*/
public boolean isHotGrowable() {
return hotGrowable;
}
/**
* Sets the value of the hotGrowable property.
*
*/
public void setHotGrowable(boolean value) {
this.hotGrowable = value;
}
/**
* Gets the value of the uuid property.
*
*/
public boolean isUuid() {
return uuid;
}
/**
* Sets the value of the uuid property.
*
*/
public void setUuid(boolean value) {
this.uuid = value;
}
}