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

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

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ClusterComputeResourceSummary complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ClusterComputeResourceSummary">
 *   <complexContent>
 *     <extension base="{urn:vim25}ComputeResourceSummary">
 *       <sequence>
 *         <element name="currentFailoverLevel" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="admissionControlInfo" type="{urn:vim25}ClusterDasAdmissionControlInfo" minOccurs="0"/>
 *         <element name="numVmotions" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="targetBalance" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="currentBalance" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="usageSummary" type="{urn:vim25}ClusterUsageSummary" minOccurs="0"/>
 *         <element name="currentEVCModeKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="dasData" type="{urn:vim25}ClusterDasData" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClusterComputeResourceSummary", propOrder = { "currentFailoverLevel", "admissionControlInfo", "numVmotions", "targetBalance", "currentBalance", "usageSummary", "currentEVCModeKey", "dasData" }) public class ClusterComputeResourceSummary extends ComputeResourceSummary { protected int currentFailoverLevel; protected ClusterDasAdmissionControlInfo admissionControlInfo; protected int numVmotions; protected Integer targetBalance; protected Integer currentBalance; protected ClusterUsageSummary usageSummary; protected String currentEVCModeKey; protected ClusterDasData dasData; /** * Gets the value of the currentFailoverLevel property. * */ public int getCurrentFailoverLevel() { return currentFailoverLevel; } /** * Sets the value of the currentFailoverLevel property. * */ public void setCurrentFailoverLevel(int value) { this.currentFailoverLevel = value; } /** * Gets the value of the admissionControlInfo property. * * @return * possible object is * {@link ClusterDasAdmissionControlInfo } * */ public ClusterDasAdmissionControlInfo getAdmissionControlInfo() { return admissionControlInfo; } /** * Sets the value of the admissionControlInfo property. * * @param value * allowed object is * {@link ClusterDasAdmissionControlInfo } * */ public void setAdmissionControlInfo(ClusterDasAdmissionControlInfo value) { this.admissionControlInfo = value; } /** * Gets the value of the numVmotions property. * */ public int getNumVmotions() { return numVmotions; } /** * Sets the value of the numVmotions property. * */ public void setNumVmotions(int value) { this.numVmotions = value; } /** * Gets the value of the targetBalance property. * * @return * possible object is * {@link Integer } * */ public Integer getTargetBalance() { return targetBalance; } /** * Sets the value of the targetBalance property. * * @param value * allowed object is * {@link Integer } * */ public void setTargetBalance(Integer value) { this.targetBalance = value; } /** * Gets the value of the currentBalance property. * * @return * possible object is * {@link Integer } * */ public Integer getCurrentBalance() { return currentBalance; } /** * Sets the value of the currentBalance property. * * @param value * allowed object is * {@link Integer } * */ public void setCurrentBalance(Integer value) { this.currentBalance = value; } /** * Gets the value of the usageSummary property. * * @return * possible object is * {@link ClusterUsageSummary } * */ public ClusterUsageSummary getUsageSummary() { return usageSummary; } /** * Sets the value of the usageSummary property. * * @param value * allowed object is * {@link ClusterUsageSummary } * */ public void setUsageSummary(ClusterUsageSummary value) { this.usageSummary = value; } /** * Gets the value of the currentEVCModeKey property. * * @return * possible object is * {@link String } * */ public String getCurrentEVCModeKey() { return currentEVCModeKey; } /** * Sets the value of the currentEVCModeKey property. * * @param value * allowed object is * {@link String } * */ public void setCurrentEVCModeKey(String value) { this.currentEVCModeKey = value; } /** * Gets the value of the dasData property. * * @return * possible object is * {@link ClusterDasData } * */ public ClusterDasData getDasData() { return dasData; } /** * Sets the value of the dasData property. * * @param value * allowed object is * {@link ClusterDasData } * */ public void setDasData(ClusterDasData value) { this.dasData = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy