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

com.vmware.vim25.FaultToleranceSecondaryOpResult 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.XmlType;


/**
 * 

Java class for FaultToleranceSecondaryOpResult complex type. * *

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

 * <complexType name="FaultToleranceSecondaryOpResult">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="vm" type="{urn:vim25}ManagedObjectReference"/>
 *         <element name="powerOnAttempted" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="powerOnResult" type="{urn:vim25}ClusterPowerOnVmResult" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FaultToleranceSecondaryOpResult", propOrder = { "vm", "powerOnAttempted", "powerOnResult" }) public class FaultToleranceSecondaryOpResult extends DynamicData { @XmlElement(required = true) protected ManagedObjectReference vm; protected boolean powerOnAttempted; protected ClusterPowerOnVmResult powerOnResult; /** * Gets the value of the vm property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getVm() { return vm; } /** * Sets the value of the vm property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setVm(ManagedObjectReference value) { this.vm = value; } /** * Gets the value of the powerOnAttempted property. * */ public boolean isPowerOnAttempted() { return powerOnAttempted; } /** * Sets the value of the powerOnAttempted property. * */ public void setPowerOnAttempted(boolean value) { this.powerOnAttempted = value; } /** * Gets the value of the powerOnResult property. * * @return * possible object is * {@link ClusterPowerOnVmResult } * */ public ClusterPowerOnVmResult getPowerOnResult() { return powerOnResult; } /** * Sets the value of the powerOnResult property. * * @param value * allowed object is * {@link ClusterPowerOnVmResult } * */ public void setPowerOnResult(ClusterPowerOnVmResult value) { this.powerOnResult = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy