All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim.VmfsDatastoreInfo Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VmfsDatastoreInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="VmfsDatastoreInfo">
 *   <complexContent>
 *     <extension base="{urn:vim2}DatastoreInfo">
 *       <sequence>
 *         <element name="vmfs" type="{urn:vim2}HostVmfsVolume" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VmfsDatastoreInfo", propOrder = { "vmfs" }) public class VmfsDatastoreInfo extends DatastoreInfo { protected HostVmfsVolume vmfs; /** * Gets the value of the vmfs property. * * @return * possible object is * {@link HostVmfsVolume } * */ public HostVmfsVolume getVmfs() { return vmfs; } /** * Sets the value of the vmfs property. * * @param value * allowed object is * {@link HostVmfsVolume } * */ public void setVmfs(HostVmfsVolume value) { this.vmfs = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy