![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.ResourceConfigOption 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 ResourceConfigOption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ResourceConfigOption">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="cpuAllocationOption" type="{urn:vim25}ResourceAllocationOption"/>
* <element name="memoryAllocationOption" type="{urn:vim25}ResourceAllocationOption"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ResourceConfigOption", propOrder = {
"cpuAllocationOption",
"memoryAllocationOption"
})
public class ResourceConfigOption
extends DynamicData
{
@XmlElement(required = true)
protected ResourceAllocationOption cpuAllocationOption;
@XmlElement(required = true)
protected ResourceAllocationOption memoryAllocationOption;
/**
* Gets the value of the cpuAllocationOption property.
*
* @return
* possible object is
* {@link ResourceAllocationOption }
*
*/
public ResourceAllocationOption getCpuAllocationOption() {
return cpuAllocationOption;
}
/**
* Sets the value of the cpuAllocationOption property.
*
* @param value
* allowed object is
* {@link ResourceAllocationOption }
*
*/
public void setCpuAllocationOption(ResourceAllocationOption value) {
this.cpuAllocationOption = value;
}
/**
* Gets the value of the memoryAllocationOption property.
*
* @return
* possible object is
* {@link ResourceAllocationOption }
*
*/
public ResourceAllocationOption getMemoryAllocationOption() {
return memoryAllocationOption;
}
/**
* Sets the value of the memoryAllocationOption property.
*
* @param value
* allowed object is
* {@link ResourceAllocationOption }
*
*/
public void setMemoryAllocationOption(ResourceAllocationOption value) {
this.memoryAllocationOption = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy