com.vmware.vim25.VmfsDatastoreBaseOption 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for VmfsDatastoreBaseOption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VmfsDatastoreBaseOption">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="layout" type="{urn:vim25}HostDiskPartitionLayout"/>
* <element name="partitionFormatChange" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VmfsDatastoreBaseOption", propOrder = {
"layout",
"partitionFormatChange"
})
@XmlSeeAlso({
VmfsDatastoreSingleExtentOption.class,
VmfsDatastoreMultipleExtentOption.class
})
public class VmfsDatastoreBaseOption
extends DynamicData
{
@XmlElement(required = true)
protected HostDiskPartitionLayout layout;
protected Boolean partitionFormatChange;
/**
* Gets the value of the layout property.
*
* @return
* possible object is
* {@link HostDiskPartitionLayout }
*
*/
public HostDiskPartitionLayout getLayout() {
return layout;
}
/**
* Sets the value of the layout property.
*
* @param value
* allowed object is
* {@link HostDiskPartitionLayout }
*
*/
public void setLayout(HostDiskPartitionLayout value) {
this.layout = value;
}
/**
* Gets the value of the partitionFormatChange property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPartitionFormatChange() {
return partitionFormatChange;
}
/**
* Sets the value of the partitionFormatChange property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPartitionFormatChange(Boolean value) {
this.partitionFormatChange = value;
}
}