
com.vmware.vim25.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.vim25;
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:vim25}DynamicData">
* <sequence>
* <element name="host" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
* <element name="connectionState" type="{urn:vim25}VirtualMachineConnectionState"/>
* <element name="powerState" type="{urn:vim25}VirtualMachinePowerState"/>
* <element name="faultToleranceState" type="{urn:vim25}VirtualMachineFaultToleranceState" minOccurs="0"/>
* <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:vim25}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"/>
* <element name="recordReplayState" type="{urn:vim25}VirtualMachineRecordReplayState" minOccurs="0"/>
* <element name="cleanPowerOff" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="needSecondaryReason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineRuntimeInfo", propOrder = {
"host",
"connectionState",
"powerState",
"faultToleranceState",
"toolsInstallerMounted",
"suspendTime",
"bootTime",
"suspendInterval",
"question",
"memoryOverhead",
"maxCpuUsage",
"maxMemoryUsage",
"numMksConnections",
"recordReplayState",
"cleanPowerOff",
"needSecondaryReason"
})
public class VirtualMachineRuntimeInfo
extends DynamicData
{
protected ManagedObjectReference host;
@XmlElement(required = true)
protected VirtualMachineConnectionState connectionState;
@XmlElement(required = true)
protected VirtualMachinePowerState powerState;
protected VirtualMachineFaultToleranceState faultToleranceState;
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;
protected VirtualMachineRecordReplayState recordReplayState;
protected Boolean cleanPowerOff;
protected String needSecondaryReason;
/**
* 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 faultToleranceState property.
*
* @return
* possible object is
* {@link VirtualMachineFaultToleranceState }
*
*/
public VirtualMachineFaultToleranceState getFaultToleranceState() {
return faultToleranceState;
}
/**
* Sets the value of the faultToleranceState property.
*
* @param value
* allowed object is
* {@link VirtualMachineFaultToleranceState }
*
*/
public void setFaultToleranceState(VirtualMachineFaultToleranceState value) {
this.faultToleranceState = 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;
}
/**
* Gets the value of the recordReplayState property.
*
* @return
* possible object is
* {@link VirtualMachineRecordReplayState }
*
*/
public VirtualMachineRecordReplayState getRecordReplayState() {
return recordReplayState;
}
/**
* Sets the value of the recordReplayState property.
*
* @param value
* allowed object is
* {@link VirtualMachineRecordReplayState }
*
*/
public void setRecordReplayState(VirtualMachineRecordReplayState value) {
this.recordReplayState = value;
}
/**
* Gets the value of the cleanPowerOff property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCleanPowerOff() {
return cleanPowerOff;
}
/**
* Sets the value of the cleanPowerOff property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setCleanPowerOff(Boolean value) {
this.cleanPowerOff = value;
}
/**
* Gets the value of the needSecondaryReason property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNeedSecondaryReason() {
return needSecondaryReason;
}
/**
* Sets the value of the needSecondaryReason property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNeedSecondaryReason(String value) {
this.needSecondaryReason = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy