com.vmware.vim25.MemorySizeNotSupportedByDatastore Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for MemorySizeNotSupportedByDatastore complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MemorySizeNotSupportedByDatastore">
* <complexContent>
* <extension base="{urn:vim25}VirtualHardwareCompatibilityIssue">
* <sequence>
* <element name="datastore" type="{urn:vim25}ManagedObjectReference"/>
* <element name="memorySizeMB" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="maxMemorySizeMB" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MemorySizeNotSupportedByDatastore", propOrder = {
"datastore",
"memorySizeMB",
"maxMemorySizeMB"
})
public class MemorySizeNotSupportedByDatastore
extends VirtualHardwareCompatibilityIssue
{
@XmlElement(required = true)
protected ManagedObjectReference datastore;
protected int memorySizeMB;
protected int maxMemorySizeMB;
/**
* Gets the value of the datastore property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getDatastore() {
return datastore;
}
/**
* Sets the value of the datastore property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setDatastore(ManagedObjectReference value) {
this.datastore = value;
}
/**
* Gets the value of the memorySizeMB property.
*
*/
public int getMemorySizeMB() {
return memorySizeMB;
}
/**
* Sets the value of the memorySizeMB property.
*
*/
public void setMemorySizeMB(int value) {
this.memorySizeMB = value;
}
/**
* Gets the value of the maxMemorySizeMB property.
*
*/
public int getMaxMemorySizeMB() {
return maxMemorySizeMB;
}
/**
* Sets the value of the maxMemorySizeMB property.
*
*/
public void setMaxMemorySizeMB(int value) {
this.maxMemorySizeMB = value;
}
}