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

com.vmware.vim25.HostVFlashManagerVFlashResourceRunTimeInfo 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 HostVFlashManagerVFlashResourceRunTimeInfo complex type. * *

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

 * <complexType name="HostVFlashManagerVFlashResourceRunTimeInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="usage" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="capacity" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="accessible" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="capacityForVmCache" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="freeForVmCache" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostVFlashManagerVFlashResourceRunTimeInfo", propOrder = { "usage", "capacity", "accessible", "capacityForVmCache", "freeForVmCache" }) public class HostVFlashManagerVFlashResourceRunTimeInfo extends DynamicData { protected long usage; protected long capacity; protected boolean accessible; protected long capacityForVmCache; protected long freeForVmCache; /** * Gets the value of the usage property. * */ public long getUsage() { return usage; } /** * Sets the value of the usage property. * */ public void setUsage(long value) { this.usage = value; } /** * Gets the value of the capacity property. * */ public long getCapacity() { return capacity; } /** * Sets the value of the capacity property. * */ public void setCapacity(long value) { this.capacity = value; } /** * Gets the value of the accessible property. * */ public boolean isAccessible() { return accessible; } /** * Sets the value of the accessible property. * */ public void setAccessible(boolean value) { this.accessible = value; } /** * Gets the value of the capacityForVmCache property. * */ public long getCapacityForVmCache() { return capacityForVmCache; } /** * Sets the value of the capacityForVmCache property. * */ public void setCapacityForVmCache(long value) { this.capacityForVmCache = value; } /** * Gets the value of the freeForVmCache property. * */ public long getFreeForVmCache() { return freeForVmCache; } /** * Sets the value of the freeForVmCache property. * */ public void setFreeForVmCache(long value) { this.freeForVmCache = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy