All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.VirtualDiskFlatVer2BackingInfo 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 VirtualDiskFlatVer2BackingInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="VirtualDiskFlatVer2BackingInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}VirtualDeviceFileBackingInfo">
 *       <sequence>
 *         <element name="diskMode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="split" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="writeThrough" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="thinProvisioned" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="eagerlyScrub" 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}VirtualDiskFlatVer2BackingInfo" 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="deltaGrainSize" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="deltaDiskFormatVariant" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="sharing" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="keyId" type="{urn:vim25}CryptoKeyId" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualDiskFlatVer2BackingInfo", propOrder = { "diskMode", "split", "writeThrough", "thinProvisioned", "eagerlyScrub", "uuid", "contentId", "changeId", "parent", "deltaDiskFormat", "digestEnabled", "deltaGrainSize", "deltaDiskFormatVariant", "sharing", "keyId" }) public class VirtualDiskFlatVer2BackingInfo extends VirtualDeviceFileBackingInfo { @XmlElement(required = true) protected String diskMode; protected Boolean split; protected Boolean writeThrough; protected Boolean thinProvisioned; protected Boolean eagerlyScrub; protected String uuid; protected String contentId; protected String changeId; protected VirtualDiskFlatVer2BackingInfo parent; protected String deltaDiskFormat; protected Boolean digestEnabled; protected Integer deltaGrainSize; protected String deltaDiskFormatVariant; protected String sharing; 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 split property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSplit() { return split; } /** * Sets the value of the split property. * * @param value * allowed object is * {@link Boolean } * */ public void setSplit(Boolean value) { this.split = 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 thinProvisioned property. * * @return * possible object is * {@link Boolean } * */ public Boolean isThinProvisioned() { return thinProvisioned; } /** * Sets the value of the thinProvisioned property. * * @param value * allowed object is * {@link Boolean } * */ public void setThinProvisioned(Boolean value) { this.thinProvisioned = value; } /** * Gets the value of the eagerlyScrub property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEagerlyScrub() { return eagerlyScrub; } /** * Sets the value of the eagerlyScrub property. * * @param value * allowed object is * {@link Boolean } * */ public void setEagerlyScrub(Boolean value) { this.eagerlyScrub = 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 VirtualDiskFlatVer2BackingInfo } * */ public VirtualDiskFlatVer2BackingInfo getParent() { return parent; } /** * Sets the value of the parent property. * * @param value * allowed object is * {@link VirtualDiskFlatVer2BackingInfo } * */ public void setParent(VirtualDiskFlatVer2BackingInfo 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 deltaGrainSize property. * * @return * possible object is * {@link Integer } * */ public Integer getDeltaGrainSize() { return deltaGrainSize; } /** * Sets the value of the deltaGrainSize property. * * @param value * allowed object is * {@link Integer } * */ public void setDeltaGrainSize(Integer value) { this.deltaGrainSize = value; } /** * Gets the value of the deltaDiskFormatVariant property. * * @return * possible object is * {@link String } * */ public String getDeltaDiskFormatVariant() { return deltaDiskFormatVariant; } /** * Sets the value of the deltaDiskFormatVariant property. * * @param value * allowed object is * {@link String } * */ public void setDeltaDiskFormatVariant(String value) { this.deltaDiskFormatVariant = value; } /** * Gets the value of the sharing property. * * @return * possible object is * {@link String } * */ public String getSharing() { return sharing; } /** * Sets the value of the sharing property. * * @param value * allowed object is * {@link String } * */ public void setSharing(String value) { this.sharing = 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