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