com.vmware.vim25.SeSparseVirtualDiskSpec 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 SeSparseVirtualDiskSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SeSparseVirtualDiskSpec">
* <complexContent>
* <extension base="{urn:vim25}FileBackedVirtualDiskSpec">
* <sequence>
* <element name="grainSizeKb" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SeSparseVirtualDiskSpec", propOrder = {
"grainSizeKb"
})
public class SeSparseVirtualDiskSpec
extends FileBackedVirtualDiskSpec
{
protected Integer grainSizeKb;
/**
* Gets the value of the grainSizeKb property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getGrainSizeKb() {
return grainSizeKb;
}
/**
* Sets the value of the grainSizeKb property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setGrainSizeKb(Integer value) {
this.grainSizeKb = value;
}
}