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

com.vmware.vim25.ClusterHostPowerAction 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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ClusterHostPowerAction complex type. * *

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

 * <complexType name="ClusterHostPowerAction">
 *   <complexContent>
 *     <extension base="{urn:vim25}ClusterAction">
 *       <sequence>
 *         <element name="operationType" type="{urn:vim25}HostPowerOperationType"/>
 *         <element name="powerConsumptionWatt" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="cpuCapacityMHz" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="memCapacityMB" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClusterHostPowerAction", propOrder = { "operationType", "powerConsumptionWatt", "cpuCapacityMHz", "memCapacityMB" }) public class ClusterHostPowerAction extends ClusterAction { @XmlElement(required = true) @XmlSchemaType(name = "string") protected HostPowerOperationType operationType; protected Integer powerConsumptionWatt; protected Integer cpuCapacityMHz; protected Integer memCapacityMB; /** * Gets the value of the operationType property. * * @return * possible object is * {@link HostPowerOperationType } * */ public HostPowerOperationType getOperationType() { return operationType; } /** * Sets the value of the operationType property. * * @param value * allowed object is * {@link HostPowerOperationType } * */ public void setOperationType(HostPowerOperationType value) { this.operationType = value; } /** * Gets the value of the powerConsumptionWatt property. * * @return * possible object is * {@link Integer } * */ public Integer getPowerConsumptionWatt() { return powerConsumptionWatt; } /** * Sets the value of the powerConsumptionWatt property. * * @param value * allowed object is * {@link Integer } * */ public void setPowerConsumptionWatt(Integer value) { this.powerConsumptionWatt = value; } /** * Gets the value of the cpuCapacityMHz property. * * @return * possible object is * {@link Integer } * */ public Integer getCpuCapacityMHz() { return cpuCapacityMHz; } /** * Sets the value of the cpuCapacityMHz property. * * @param value * allowed object is * {@link Integer } * */ public void setCpuCapacityMHz(Integer value) { this.cpuCapacityMHz = value; } /** * Gets the value of the memCapacityMB property. * * @return * possible object is * {@link Integer } * */ public Integer getMemCapacityMB() { return memCapacityMB; } /** * Sets the value of the memCapacityMB property. * * @param value * allowed object is * {@link Integer } * */ public void setMemCapacityMB(Integer value) { this.memCapacityMB = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy