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

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

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

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

 * <complexType name="VirtualDisk">
 *   <complexContent>
 *     <extension base="{urn:vim25}VirtualDevice">
 *       <sequence>
 *         <element name="capacityInKB" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="shares" type="{urn:vim25}SharesInfo" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualDisk", propOrder = { "capacityInKB", "shares" }) public class VirtualDisk extends VirtualDevice { protected long capacityInKB; protected SharesInfo shares; /** * Gets the value of the capacityInKB property. * */ public long getCapacityInKB() { return capacityInKB; } /** * Sets the value of the capacityInKB property. * */ public void setCapacityInKB(long value) { this.capacityInKB = value; } /** * Gets the value of the shares property. * * @return * possible object is * {@link SharesInfo } * */ public SharesInfo getShares() { return shares; } /** * Sets the value of the shares property. * * @param value * allowed object is * {@link SharesInfo } * */ public void setShares(SharesInfo value) { this.shares = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy