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

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

There is a newer version: 0.6.60
Show newest version

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 VmfsDatastoreInfo complex type. * *

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

 * <complexType name="VmfsDatastoreInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DatastoreInfo">
 *       <sequence>
 *         <element name="maxPhysicalRDMFileSize" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="maxVirtualRDMFileSize" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="vmfs" type="{urn:vim25}HostVmfsVolume" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VmfsDatastoreInfo", propOrder = { "maxPhysicalRDMFileSize", "maxVirtualRDMFileSize", "vmfs" }) public class VmfsDatastoreInfo extends DatastoreInfo { protected Long maxPhysicalRDMFileSize; protected Long maxVirtualRDMFileSize; protected HostVmfsVolume vmfs; /** * Gets the value of the maxPhysicalRDMFileSize property. * * @return * possible object is * {@link Long } * */ public Long getMaxPhysicalRDMFileSize() { return maxPhysicalRDMFileSize; } /** * Sets the value of the maxPhysicalRDMFileSize property. * * @param value * allowed object is * {@link Long } * */ public void setMaxPhysicalRDMFileSize(Long value) { this.maxPhysicalRDMFileSize = value; } /** * Gets the value of the maxVirtualRDMFileSize property. * * @return * possible object is * {@link Long } * */ public Long getMaxVirtualRDMFileSize() { return maxVirtualRDMFileSize; } /** * Sets the value of the maxVirtualRDMFileSize property. * * @param value * allowed object is * {@link Long } * */ public void setMaxVirtualRDMFileSize(Long value) { this.maxVirtualRDMFileSize = value; } /** * 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