
com.vmware.vim.VirtualDisk Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
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 VirtualDisk complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualDisk">
* <complexContent>
* <extension base="{urn:vim2}VirtualDevice">
* <sequence>
* <element name="capacityInKB" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="shares" type="{urn:vim2}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