com.vmware.vim25.VirtualDiskOptionVFlashCacheConfigOption 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 VirtualDiskOptionVFlashCacheConfigOption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualDiskOptionVFlashCacheConfigOption">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="cacheConsistencyType" type="{urn:vim25}ChoiceOption"/>
* <element name="cacheMode" type="{urn:vim25}ChoiceOption"/>
* <element name="reservationInMB" type="{urn:vim25}LongOption"/>
* <element name="blockSizeInKB" type="{urn:vim25}LongOption"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualDiskOptionVFlashCacheConfigOption", propOrder = {
"cacheConsistencyType",
"cacheMode",
"reservationInMB",
"blockSizeInKB"
})
public class VirtualDiskOptionVFlashCacheConfigOption
extends DynamicData
{
@XmlElement(required = true)
protected ChoiceOption cacheConsistencyType;
@XmlElement(required = true)
protected ChoiceOption cacheMode;
@XmlElement(required = true)
protected LongOption reservationInMB;
@XmlElement(required = true)
protected LongOption blockSizeInKB;
/**
* Gets the value of the cacheConsistencyType property.
*
* @return
* possible object is
* {@link ChoiceOption }
*
*/
public ChoiceOption getCacheConsistencyType() {
return cacheConsistencyType;
}
/**
* Sets the value of the cacheConsistencyType property.
*
* @param value
* allowed object is
* {@link ChoiceOption }
*
*/
public void setCacheConsistencyType(ChoiceOption value) {
this.cacheConsistencyType = value;
}
/**
* Gets the value of the cacheMode property.
*
* @return
* possible object is
* {@link ChoiceOption }
*
*/
public ChoiceOption getCacheMode() {
return cacheMode;
}
/**
* Sets the value of the cacheMode property.
*
* @param value
* allowed object is
* {@link ChoiceOption }
*
*/
public void setCacheMode(ChoiceOption value) {
this.cacheMode = value;
}
/**
* Gets the value of the reservationInMB property.
*
* @return
* possible object is
* {@link LongOption }
*
*/
public LongOption getReservationInMB() {
return reservationInMB;
}
/**
* Sets the value of the reservationInMB property.
*
* @param value
* allowed object is
* {@link LongOption }
*
*/
public void setReservationInMB(LongOption value) {
this.reservationInMB = value;
}
/**
* Gets the value of the blockSizeInKB property.
*
* @return
* possible object is
* {@link LongOption }
*
*/
public LongOption getBlockSizeInKB() {
return blockSizeInKB;
}
/**
* Sets the value of the blockSizeInKB property.
*
* @param value
* allowed object is
* {@link LongOption }
*
*/
public void setBlockSizeInKB(LongOption value) {
this.blockSizeInKB = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy