com.vmware.vim25.GuestDiskInfo 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 GuestDiskInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GuestDiskInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="diskPath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="capacity" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="freeSpace" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GuestDiskInfo", propOrder = {
"diskPath",
"capacity",
"freeSpace"
})
public class GuestDiskInfo
extends DynamicData
{
protected String diskPath;
protected Long capacity;
protected Long freeSpace;
/**
* Gets the value of the diskPath property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDiskPath() {
return diskPath;
}
/**
* Sets the value of the diskPath property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDiskPath(String value) {
this.diskPath = value;
}
/**
* Gets the value of the capacity property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getCapacity() {
return capacity;
}
/**
* Sets the value of the capacity property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setCapacity(Long value) {
this.capacity = value;
}
/**
* Gets the value of the freeSpace property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getFreeSpace() {
return freeSpace;
}
/**
* Sets the value of the freeSpace property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setFreeSpace(Long value) {
this.freeSpace = value;
}
}