![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VirtualDiskSeSparseBackingInfo 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 VirtualDiskSeSparseBackingInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualDiskSeSparseBackingInfo">
* <complexContent>
* <extension base="{urn:vim25}VirtualDeviceFileBackingInfo">
* <sequence>
* <element name="diskMode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="writeThrough" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="uuid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="contentId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="changeId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="parent" type="{urn:vim25}VirtualDiskSeSparseBackingInfo" minOccurs="0"/>
* <element name="deltaDiskFormat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="digestEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="grainSize" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="keyId" type="{urn:vim25}CryptoKeyId" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualDiskSeSparseBackingInfo", propOrder = {
"diskMode",
"writeThrough",
"uuid",
"contentId",
"changeId",
"parent",
"deltaDiskFormat",
"digestEnabled",
"grainSize",
"keyId"
})
public class VirtualDiskSeSparseBackingInfo
extends VirtualDeviceFileBackingInfo
{
@XmlElement(required = true)
protected String diskMode;
protected Boolean writeThrough;
protected String uuid;
protected String contentId;
protected String changeId;
protected VirtualDiskSeSparseBackingInfo parent;
protected String deltaDiskFormat;
protected Boolean digestEnabled;
protected Integer grainSize;
protected CryptoKeyId keyId;
/**
* Gets the value of the diskMode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDiskMode() {
return diskMode;
}
/**
* Sets the value of the diskMode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDiskMode(String value) {
this.diskMode = value;
}
/**
* Gets the value of the writeThrough property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isWriteThrough() {
return writeThrough;
}
/**
* Sets the value of the writeThrough property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setWriteThrough(Boolean value) {
this.writeThrough = value;
}
/**
* Gets the value of the uuid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUuid() {
return uuid;
}
/**
* Sets the value of the uuid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUuid(String value) {
this.uuid = value;
}
/**
* Gets the value of the contentId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContentId() {
return contentId;
}
/**
* Sets the value of the contentId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContentId(String value) {
this.contentId = value;
}
/**
* Gets the value of the changeId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChangeId() {
return changeId;
}
/**
* Sets the value of the changeId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChangeId(String value) {
this.changeId = value;
}
/**
* Gets the value of the parent property.
*
* @return
* possible object is
* {@link VirtualDiskSeSparseBackingInfo }
*
*/
public VirtualDiskSeSparseBackingInfo getParent() {
return parent;
}
/**
* Sets the value of the parent property.
*
* @param value
* allowed object is
* {@link VirtualDiskSeSparseBackingInfo }
*
*/
public void setParent(VirtualDiskSeSparseBackingInfo value) {
this.parent = value;
}
/**
* Gets the value of the deltaDiskFormat property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDeltaDiskFormat() {
return deltaDiskFormat;
}
/**
* Sets the value of the deltaDiskFormat property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDeltaDiskFormat(String value) {
this.deltaDiskFormat = value;
}
/**
* Gets the value of the digestEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDigestEnabled() {
return digestEnabled;
}
/**
* Sets the value of the digestEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDigestEnabled(Boolean value) {
this.digestEnabled = value;
}
/**
* Gets the value of the grainSize property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getGrainSize() {
return grainSize;
}
/**
* Sets the value of the grainSize property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setGrainSize(Integer value) {
this.grainSize = value;
}
/**
* Gets the value of the keyId property.
*
* @return
* possible object is
* {@link CryptoKeyId }
*
*/
public CryptoKeyId getKeyId() {
return keyId;
}
/**
* Sets the value of the keyId property.
*
* @param value
* allowed object is
* {@link CryptoKeyId }
*
*/
public void setKeyId(CryptoKeyId value) {
this.keyId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy