com.vmware.vim25.VvolDatastoreInfo 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 VvolDatastoreInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VvolDatastoreInfo">
* <complexContent>
* <extension base="{urn:vim25}DatastoreInfo">
* <sequence>
* <element name="vvolDS" type="{urn:vim25}HostVvolVolume" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VvolDatastoreInfo", propOrder = {
"vvolDS"
})
public class VvolDatastoreInfo
extends DatastoreInfo
{
protected HostVvolVolume vvolDS;
/**
* Gets the value of the vvolDS property.
*
* @return
* possible object is
* {@link HostVvolVolume }
*
*/
public HostVvolVolume getVvolDS() {
return vvolDS;
}
/**
* Sets the value of the vvolDS property.
*
* @param value
* allowed object is
* {@link HostVvolVolume }
*
*/
public void setVvolDS(HostVvolVolume value) {
this.vvolDS = value;
}
}