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

com.vmware.vim25.ClusterFailoverResourcesAdmissionControlInfo 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 ClusterFailoverResourcesAdmissionControlInfo complex type. * *

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

 * <complexType name="ClusterFailoverResourcesAdmissionControlInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}ClusterDasAdmissionControlInfo">
 *       <sequence>
 *         <element name="currentCpuFailoverResourcesPercent" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="currentMemoryFailoverResourcesPercent" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClusterFailoverResourcesAdmissionControlInfo", propOrder = { "currentCpuFailoverResourcesPercent", "currentMemoryFailoverResourcesPercent" }) public class ClusterFailoverResourcesAdmissionControlInfo extends ClusterDasAdmissionControlInfo { protected int currentCpuFailoverResourcesPercent; protected int currentMemoryFailoverResourcesPercent; /** * Gets the value of the currentCpuFailoverResourcesPercent property. * */ public int getCurrentCpuFailoverResourcesPercent() { return currentCpuFailoverResourcesPercent; } /** * Sets the value of the currentCpuFailoverResourcesPercent property. * */ public void setCurrentCpuFailoverResourcesPercent(int value) { this.currentCpuFailoverResourcesPercent = value; } /** * Gets the value of the currentMemoryFailoverResourcesPercent property. * */ public int getCurrentMemoryFailoverResourcesPercent() { return currentMemoryFailoverResourcesPercent; } /** * Sets the value of the currentMemoryFailoverResourcesPercent property. * */ public void setCurrentMemoryFailoverResourcesPercent(int value) { this.currentMemoryFailoverResourcesPercent = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy