![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.DatastoreCapability 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 DatastoreCapability complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DatastoreCapability">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="directoryHierarchySupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="rawDiskMappingsSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="perFileThinProvisioningSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="storageIORMSupported" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="nativeSnapshotSupported" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="topLevelDirectoryCreateSupported" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="seSparseSupported" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="vmfsSparseSupported" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="vsanSparseSupported" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="upitSupported" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DatastoreCapability", propOrder = {
"directoryHierarchySupported",
"rawDiskMappingsSupported",
"perFileThinProvisioningSupported",
"storageIORMSupported",
"nativeSnapshotSupported",
"topLevelDirectoryCreateSupported",
"seSparseSupported",
"vmfsSparseSupported",
"vsanSparseSupported",
"upitSupported"
})
public class DatastoreCapability
extends DynamicData
{
protected boolean directoryHierarchySupported;
protected boolean rawDiskMappingsSupported;
protected boolean perFileThinProvisioningSupported;
protected Boolean storageIORMSupported;
protected Boolean nativeSnapshotSupported;
protected Boolean topLevelDirectoryCreateSupported;
protected Boolean seSparseSupported;
protected Boolean vmfsSparseSupported;
protected Boolean vsanSparseSupported;
protected Boolean upitSupported;
/**
* Gets the value of the directoryHierarchySupported property.
*
*/
public boolean isDirectoryHierarchySupported() {
return directoryHierarchySupported;
}
/**
* Sets the value of the directoryHierarchySupported property.
*
*/
public void setDirectoryHierarchySupported(boolean value) {
this.directoryHierarchySupported = value;
}
/**
* Gets the value of the rawDiskMappingsSupported property.
*
*/
public boolean isRawDiskMappingsSupported() {
return rawDiskMappingsSupported;
}
/**
* Sets the value of the rawDiskMappingsSupported property.
*
*/
public void setRawDiskMappingsSupported(boolean value) {
this.rawDiskMappingsSupported = value;
}
/**
* Gets the value of the perFileThinProvisioningSupported property.
*
*/
public boolean isPerFileThinProvisioningSupported() {
return perFileThinProvisioningSupported;
}
/**
* Sets the value of the perFileThinProvisioningSupported property.
*
*/
public void setPerFileThinProvisioningSupported(boolean value) {
this.perFileThinProvisioningSupported = value;
}
/**
* Gets the value of the storageIORMSupported property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isStorageIORMSupported() {
return storageIORMSupported;
}
/**
* Sets the value of the storageIORMSupported property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setStorageIORMSupported(Boolean value) {
this.storageIORMSupported = value;
}
/**
* Gets the value of the nativeSnapshotSupported property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isNativeSnapshotSupported() {
return nativeSnapshotSupported;
}
/**
* Sets the value of the nativeSnapshotSupported property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setNativeSnapshotSupported(Boolean value) {
this.nativeSnapshotSupported = value;
}
/**
* Gets the value of the topLevelDirectoryCreateSupported property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isTopLevelDirectoryCreateSupported() {
return topLevelDirectoryCreateSupported;
}
/**
* Sets the value of the topLevelDirectoryCreateSupported property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setTopLevelDirectoryCreateSupported(Boolean value) {
this.topLevelDirectoryCreateSupported = value;
}
/**
* Gets the value of the seSparseSupported property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSeSparseSupported() {
return seSparseSupported;
}
/**
* Sets the value of the seSparseSupported property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSeSparseSupported(Boolean value) {
this.seSparseSupported = value;
}
/**
* Gets the value of the vmfsSparseSupported property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isVmfsSparseSupported() {
return vmfsSparseSupported;
}
/**
* Sets the value of the vmfsSparseSupported property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setVmfsSparseSupported(Boolean value) {
this.vmfsSparseSupported = value;
}
/**
* Gets the value of the vsanSparseSupported property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isVsanSparseSupported() {
return vsanSparseSupported;
}
/**
* Sets the value of the vsanSparseSupported property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setVsanSparseSupported(Boolean value) {
this.vsanSparseSupported = value;
}
/**
* Gets the value of the upitSupported property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isUpitSupported() {
return upitSupported;
}
/**
* Sets the value of the upitSupported property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUpitSupported(Boolean value) {
this.upitSupported = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy