com.vmware.vim25.SecondaryVmAlreadyEnabled Maven / Gradle / Ivy
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 SecondaryVmAlreadyEnabled complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SecondaryVmAlreadyEnabled">
* <complexContent>
* <extension base="{urn:vim25}VmFaultToleranceIssue">
* <sequence>
* <element name="instanceUuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SecondaryVmAlreadyEnabled", propOrder = {
"instanceUuid"
})
public class SecondaryVmAlreadyEnabled
extends VmFaultToleranceIssue
{
@XmlElement(required = true)
protected String instanceUuid;
/**
* Gets the value of the instanceUuid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstanceUuid() {
return instanceUuid;
}
/**
* Sets the value of the instanceUuid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInstanceUuid(String value) {
this.instanceUuid = value;
}
}