com.vmware.vim25.VirtualMachineWipeResult Maven / Gradle / Ivy
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 VirtualMachineWipeResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineWipeResult">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="diskId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="shrinkableDiskSpace" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineWipeResult", propOrder = {
"diskId",
"shrinkableDiskSpace"
})
public class VirtualMachineWipeResult
extends DynamicData
{
protected int diskId;
protected long shrinkableDiskSpace;
/**
* Gets the value of the diskId property.
*
*/
public int getDiskId() {
return diskId;
}
/**
* Sets the value of the diskId property.
*
*/
public void setDiskId(int value) {
this.diskId = value;
}
/**
* Gets the value of the shrinkableDiskSpace property.
*
*/
public long getShrinkableDiskSpace() {
return shrinkableDiskSpace;
}
/**
* Sets the value of the shrinkableDiskSpace property.
*
*/
public void setShrinkableDiskSpace(long value) {
this.shrinkableDiskSpace = value;
}
}