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

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

The 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 ClusterDasFailoverLevelAdvancedRuntimeInfoSlotInfo complex type. * *

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

 * <complexType name="ClusterDasFailoverLevelAdvancedRuntimeInfoSlotInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="numVcpus" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="cpuMHz" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="memoryMB" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClusterDasFailoverLevelAdvancedRuntimeInfoSlotInfo", propOrder = { "numVcpus", "cpuMHz", "memoryMB" }) public class ClusterDasFailoverLevelAdvancedRuntimeInfoSlotInfo extends DynamicData { protected int numVcpus; protected int cpuMHz; protected int memoryMB; /** * Gets the value of the numVcpus property. * */ public int getNumVcpus() { return numVcpus; } /** * Sets the value of the numVcpus property. * */ public void setNumVcpus(int value) { this.numVcpus = value; } /** * Gets the value of the cpuMHz property. * */ public int getCpuMHz() { return cpuMHz; } /** * Sets the value of the cpuMHz property. * */ public void setCpuMHz(int value) { this.cpuMHz = value; } /** * Gets the value of the memoryMB property. * */ public int getMemoryMB() { return memoryMB; } /** * Sets the value of the memoryMB property. * */ public void setMemoryMB(int value) { this.memoryMB = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy