
com.vmware.vim.VirtualMachineRuntimeInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for VirtualMachineRuntimeInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineRuntimeInfo">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="host" type="{urn:vim2}ManagedObjectReference" minOccurs="0"/>
* <element name="connectionState" type="{urn:vim2}VirtualMachineConnectionState"/>
* <element name="powerState" type="{urn:vim2}VirtualMachinePowerState"/>
* <element name="toolsInstallerMounted" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="suspendTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="bootTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="suspendInterval" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="question" type="{urn:vim2}VirtualMachineQuestionInfo" minOccurs="0"/>
* <element name="memoryOverhead" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="maxCpuUsage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="maxMemoryUsage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="numMksConnections" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineRuntimeInfo", propOrder = {
"host",
"connectionState",
"powerState",
"toolsInstallerMounted",
"suspendTime",
"bootTime",
"suspendInterval",
"question",
"memoryOverhead",
"maxCpuUsage",
"maxMemoryUsage",
"numMksConnections"
})
public class VirtualMachineRuntimeInfo
extends DynamicData
{
protected ManagedObjectReference host;
@XmlElement(required = true)
protected VirtualMachineConnectionState connectionState;
@XmlElement(required = true)
protected VirtualMachinePowerState powerState;
protected boolean toolsInstallerMounted;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar suspendTime;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar bootTime;
protected Long suspendInterval;
protected VirtualMachineQuestionInfo question;
protected Long memoryOverhead;
protected Integer maxCpuUsage;
protected Integer maxMemoryUsage;
protected int numMksConnections;
/**
* Gets the value of the host property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getHost() {
return host;
}
/**
* Sets the value of the host property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setHost(ManagedObjectReference value) {
this.host = value;
}
/**
* Gets the value of the connectionState property.
*
* @return
* possible object is
* {@link VirtualMachineConnectionState }
*
*/
public VirtualMachineConnectionState getConnectionState() {
return connectionState;
}
/**
* Sets the value of the connectionState property.
*
* @param value
* allowed object is
* {@link VirtualMachineConnectionState }
*
*/
public void setConnectionState(VirtualMachineConnectionState value) {
this.connectionState = value;
}
/**
* Gets the value of the powerState property.
*
* @return
* possible object is
* {@link VirtualMachinePowerState }
*
*/
public VirtualMachinePowerState getPowerState() {
return powerState;
}
/**
* Sets the value of the powerState property.
*
* @param value
* allowed object is
* {@link VirtualMachinePowerState }
*
*/
public void setPowerState(VirtualMachinePowerState value) {
this.powerState = value;
}
/**
* Gets the value of the toolsInstallerMounted property.
*
*/
public boolean isToolsInstallerMounted() {
return toolsInstallerMounted;
}
/**
* Sets the value of the toolsInstallerMounted property.
*
*/
public void setToolsInstallerMounted(boolean value) {
this.toolsInstallerMounted = value;
}
/**
* Gets the value of the suspendTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getSuspendTime() {
return suspendTime;
}
/**
* Sets the value of the suspendTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setSuspendTime(XMLGregorianCalendar value) {
this.suspendTime = value;
}
/**
* Gets the value of the bootTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getBootTime() {
return bootTime;
}
/**
* Sets the value of the bootTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setBootTime(XMLGregorianCalendar value) {
this.bootTime = value;
}
/**
* Gets the value of the suspendInterval property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSuspendInterval() {
return suspendInterval;
}
/**
* Sets the value of the suspendInterval property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSuspendInterval(Long value) {
this.suspendInterval = value;
}
/**
* Gets the value of the question property.
*
* @return
* possible object is
* {@link VirtualMachineQuestionInfo }
*
*/
public VirtualMachineQuestionInfo getQuestion() {
return question;
}
/**
* Sets the value of the question property.
*
* @param value
* allowed object is
* {@link VirtualMachineQuestionInfo }
*
*/
public void setQuestion(VirtualMachineQuestionInfo value) {
this.question = value;
}
/**
* Gets the value of the memoryOverhead property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getMemoryOverhead() {
return memoryOverhead;
}
/**
* Sets the value of the memoryOverhead property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setMemoryOverhead(Long value) {
this.memoryOverhead = value;
}
/**
* Gets the value of the maxCpuUsage property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMaxCpuUsage() {
return maxCpuUsage;
}
/**
* Sets the value of the maxCpuUsage property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMaxCpuUsage(Integer value) {
this.maxCpuUsage = value;
}
/**
* Gets the value of the maxMemoryUsage property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMaxMemoryUsage() {
return maxMemoryUsage;
}
/**
* Sets the value of the maxMemoryUsage property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMaxMemoryUsage(Integer value) {
this.maxMemoryUsage = value;
}
/**
* Gets the value of the numMksConnections property.
*
*/
public int getNumMksConnections() {
return numMksConnections;
}
/**
* Sets the value of the numMksConnections property.
*
*/
public void setNumMksConnections(int value) {
this.numMksConnections = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy