com.vmware.vim25.InsufficientVFlashResourcesFault 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 InsufficientVFlashResourcesFault complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InsufficientVFlashResourcesFault">
* <complexContent>
* <extension base="{urn:vim25}InsufficientResourcesFault">
* <sequence>
* <element name="freeSpaceInMB" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="freeSpace" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="requestedSpaceInMB" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="requestedSpace" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InsufficientVFlashResourcesFault", propOrder = {
"freeSpaceInMB",
"freeSpace",
"requestedSpaceInMB",
"requestedSpace"
})
public class InsufficientVFlashResourcesFault
extends InsufficientResourcesFault
{
protected Long freeSpaceInMB;
protected long freeSpace;
protected Long requestedSpaceInMB;
protected long requestedSpace;
/**
* Gets the value of the freeSpaceInMB property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getFreeSpaceInMB() {
return freeSpaceInMB;
}
/**
* Sets the value of the freeSpaceInMB property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setFreeSpaceInMB(Long value) {
this.freeSpaceInMB = value;
}
/**
* Gets the value of the freeSpace property.
*
*/
public long getFreeSpace() {
return freeSpace;
}
/**
* Sets the value of the freeSpace property.
*
*/
public void setFreeSpace(long value) {
this.freeSpace = value;
}
/**
* Gets the value of the requestedSpaceInMB property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getRequestedSpaceInMB() {
return requestedSpaceInMB;
}
/**
* Sets the value of the requestedSpaceInMB property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setRequestedSpaceInMB(Long value) {
this.requestedSpaceInMB = value;
}
/**
* Gets the value of the requestedSpace property.
*
*/
public long getRequestedSpace() {
return requestedSpace;
}
/**
* Sets the value of the requestedSpace property.
*
*/
public void setRequestedSpace(long value) {
this.requestedSpace = value;
}
}