All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.VirtualMachineRuntimeInfo Maven / Gradle / Ivy

The newest version!
/*================================================================================
Copyright (c) 2012 Steve Jin. All Rights Reserved.

Redistribution and use in source and binary forms, with or without modification, 
are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, 
this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice, 
this list of conditions and the following disclaimer in the documentation 
and/or other materials provided with the distribution.

* Neither the name of VMware, Inc. nor the names of its contributors may be used
to endorse or promote products derived from this software without specific prior 
written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
POSSIBILITY OF SUCH DAMAGE.
================================================================================*/

package com.vmware.vim25;
import java.util.Calendar;

/**
* @author Steve Jin (http://www.doublecloud.org)
* @version 5.1
*/

@SuppressWarnings("all")
public class VirtualMachineRuntimeInfo extends DynamicData {
  public VirtualMachineDeviceRuntimeInfo[] device;
  public ManagedObjectReference host;
  public VirtualMachineConnectionState connectionState;
  public VirtualMachinePowerState powerState;
  public VirtualMachineFaultToleranceState faultToleranceState;
  public VirtualMachineRuntimeInfoDasProtectionState dasVmProtection;
  public boolean toolsInstallerMounted;
  public Calendar suspendTime;
  public Calendar bootTime;
  public Long suspendInterval;
  public VirtualMachineQuestionInfo question;
  public Long memoryOverhead;
  public Integer maxCpuUsage;
  public Integer maxMemoryUsage;
  public int numMksConnections;
  public VirtualMachineRecordReplayState recordReplayState;
  public Boolean cleanPowerOff;
  public String needSecondaryReason;
  public Boolean onlineStandby;
  public String minRequiredEVCModeKey;
  public Boolean consolidationNeeded;
  public VirtualMachineFeatureRequirement[] offlineFeatureRequirement;
  public VirtualMachineFeatureRequirement[] featureRequirement;
  public HostFeatureMask[] featureMask;

  public VirtualMachineDeviceRuntimeInfo[] getDevice() {
    return this.device;
  }

  public ManagedObjectReference getHost() {
    return this.host;
  }

  public VirtualMachineConnectionState getConnectionState() {
    return this.connectionState;
  }

  public VirtualMachinePowerState getPowerState() {
    return this.powerState;
  }

  public VirtualMachineFaultToleranceState getFaultToleranceState() {
    return this.faultToleranceState;
  }

  public VirtualMachineRuntimeInfoDasProtectionState getDasVmProtection() {
    return this.dasVmProtection;
  }

  public boolean isToolsInstallerMounted() {
    return this.toolsInstallerMounted;
  }

  public Calendar getSuspendTime() {
    return this.suspendTime;
  }

  public Calendar getBootTime() {
    return this.bootTime;
  }

  public Long getSuspendInterval() {
    return this.suspendInterval;
  }

  public VirtualMachineQuestionInfo getQuestion() {
    return this.question;
  }

  public Long getMemoryOverhead() {
    return this.memoryOverhead;
  }

  public Integer getMaxCpuUsage() {
    return this.maxCpuUsage;
  }

  public Integer getMaxMemoryUsage() {
    return this.maxMemoryUsage;
  }

  public int getNumMksConnections() {
    return this.numMksConnections;
  }

  public VirtualMachineRecordReplayState getRecordReplayState() {
    return this.recordReplayState;
  }

  public Boolean getCleanPowerOff() {
    return this.cleanPowerOff;
  }

  public String getNeedSecondaryReason() {
    return this.needSecondaryReason;
  }

  public Boolean getOnlineStandby() {
    return this.onlineStandby;
  }

  public String getMinRequiredEVCModeKey() {
    return this.minRequiredEVCModeKey;
  }

  public Boolean getConsolidationNeeded() {
    return this.consolidationNeeded;
  }

  public VirtualMachineFeatureRequirement[] getOfflineFeatureRequirement() {
    return this.offlineFeatureRequirement;
  }

  public VirtualMachineFeatureRequirement[] getFeatureRequirement() {
    return this.featureRequirement;
  }

  public HostFeatureMask[] getFeatureMask() {
    return this.featureMask;
  }

  public void setDevice(VirtualMachineDeviceRuntimeInfo[] device) {
    this.device=device;
  }

  public void setHost(ManagedObjectReference host) {
    this.host=host;
  }

  public void setConnectionState(VirtualMachineConnectionState connectionState) {
    this.connectionState=connectionState;
  }

  public void setPowerState(VirtualMachinePowerState powerState) {
    this.powerState=powerState;
  }

  public void setFaultToleranceState(VirtualMachineFaultToleranceState faultToleranceState) {
    this.faultToleranceState=faultToleranceState;
  }

  public void setDasVmProtection(VirtualMachineRuntimeInfoDasProtectionState dasVmProtection) {
    this.dasVmProtection=dasVmProtection;
  }

  public void setToolsInstallerMounted(boolean toolsInstallerMounted) {
    this.toolsInstallerMounted=toolsInstallerMounted;
  }

  public void setSuspendTime(Calendar suspendTime) {
    this.suspendTime=suspendTime;
  }

  public void setBootTime(Calendar bootTime) {
    this.bootTime=bootTime;
  }

  public void setSuspendInterval(Long suspendInterval) {
    this.suspendInterval=suspendInterval;
  }

  public void setQuestion(VirtualMachineQuestionInfo question) {
    this.question=question;
  }

  public void setMemoryOverhead(Long memoryOverhead) {
    this.memoryOverhead=memoryOverhead;
  }

  public void setMaxCpuUsage(Integer maxCpuUsage) {
    this.maxCpuUsage=maxCpuUsage;
  }

  public void setMaxMemoryUsage(Integer maxMemoryUsage) {
    this.maxMemoryUsage=maxMemoryUsage;
  }

  public void setNumMksConnections(int numMksConnections) {
    this.numMksConnections=numMksConnections;
  }

  public void setRecordReplayState(VirtualMachineRecordReplayState recordReplayState) {
    this.recordReplayState=recordReplayState;
  }

  public void setCleanPowerOff(Boolean cleanPowerOff) {
    this.cleanPowerOff=cleanPowerOff;
  }

  public void setNeedSecondaryReason(String needSecondaryReason) {
    this.needSecondaryReason=needSecondaryReason;
  }

  public void setOnlineStandby(Boolean onlineStandby) {
    this.onlineStandby=onlineStandby;
  }

  public void setMinRequiredEVCModeKey(String minRequiredEVCModeKey) {
    this.minRequiredEVCModeKey=minRequiredEVCModeKey;
  }

  public void setConsolidationNeeded(Boolean consolidationNeeded) {
    this.consolidationNeeded=consolidationNeeded;
  }

  public void setOfflineFeatureRequirement(VirtualMachineFeatureRequirement[] offlineFeatureRequirement) {
    this.offlineFeatureRequirement=offlineFeatureRequirement;
  }

  public void setFeatureRequirement(VirtualMachineFeatureRequirement[] featureRequirement) {
    this.featureRequirement=featureRequirement;
  }

  public void setFeatureMask(HostFeatureMask[] featureMask) {
    this.featureMask=featureMask;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy