com.vmware.vim25.VmfsDatastoreExpandSpec 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 VmfsDatastoreExpandSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VmfsDatastoreExpandSpec">
* <complexContent>
* <extension base="{urn:vim25}VmfsDatastoreSpec">
* <sequence>
* <element name="partition" type="{urn:vim25}HostDiskPartitionSpec"/>
* <element name="extent" type="{urn:vim25}HostScsiDiskPartition"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VmfsDatastoreExpandSpec", propOrder = {
"partition",
"extent"
})
public class VmfsDatastoreExpandSpec
extends VmfsDatastoreSpec
{
@XmlElement(required = true)
protected HostDiskPartitionSpec partition;
@XmlElement(required = true)
protected HostScsiDiskPartition extent;
/**
* Gets the value of the partition property.
*
* @return
* possible object is
* {@link HostDiskPartitionSpec }
*
*/
public HostDiskPartitionSpec getPartition() {
return partition;
}
/**
* Sets the value of the partition property.
*
* @param value
* allowed object is
* {@link HostDiskPartitionSpec }
*
*/
public void setPartition(HostDiskPartitionSpec value) {
this.partition = value;
}
/**
* Gets the value of the extent property.
*
* @return
* possible object is
* {@link HostScsiDiskPartition }
*
*/
public HostScsiDiskPartition getExtent() {
return extent;
}
/**
* Sets the value of the extent property.
*
* @param value
* allowed object is
* {@link HostScsiDiskPartition }
*
*/
public void setExtent(HostScsiDiskPartition value) {
this.extent = value;
}
}