com.vmware.vim25.VmFailedMigrateEvent 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 VmFailedMigrateEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VmFailedMigrateEvent">
* <complexContent>
* <extension base="{urn:vim25}VmEvent">
* <sequence>
* <element name="destHost" type="{urn:vim25}HostEventArgument"/>
* <element name="reason" type="{urn:vim25}LocalizedMethodFault"/>
* <element name="destDatacenter" type="{urn:vim25}DatacenterEventArgument" minOccurs="0"/>
* <element name="destDatastore" type="{urn:vim25}DatastoreEventArgument" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VmFailedMigrateEvent", propOrder = {
"destHost",
"reason",
"destDatacenter",
"destDatastore"
})
public class VmFailedMigrateEvent
extends VmEvent
{
@XmlElement(required = true)
protected HostEventArgument destHost;
@XmlElement(required = true)
protected LocalizedMethodFault reason;
protected DatacenterEventArgument destDatacenter;
protected DatastoreEventArgument destDatastore;
/**
* Gets the value of the destHost property.
*
* @return
* possible object is
* {@link HostEventArgument }
*
*/
public HostEventArgument getDestHost() {
return destHost;
}
/**
* Sets the value of the destHost property.
*
* @param value
* allowed object is
* {@link HostEventArgument }
*
*/
public void setDestHost(HostEventArgument value) {
this.destHost = value;
}
/**
* Gets the value of the reason property.
*
* @return
* possible object is
* {@link LocalizedMethodFault }
*
*/
public LocalizedMethodFault getReason() {
return reason;
}
/**
* Sets the value of the reason property.
*
* @param value
* allowed object is
* {@link LocalizedMethodFault }
*
*/
public void setReason(LocalizedMethodFault value) {
this.reason = value;
}
/**
* Gets the value of the destDatacenter property.
*
* @return
* possible object is
* {@link DatacenterEventArgument }
*
*/
public DatacenterEventArgument getDestDatacenter() {
return destDatacenter;
}
/**
* Sets the value of the destDatacenter property.
*
* @param value
* allowed object is
* {@link DatacenterEventArgument }
*
*/
public void setDestDatacenter(DatacenterEventArgument value) {
this.destDatacenter = value;
}
/**
* Gets the value of the destDatastore property.
*
* @return
* possible object is
* {@link DatastoreEventArgument }
*
*/
public DatastoreEventArgument getDestDatastore() {
return destDatastore;
}
/**
* Sets the value of the destDatastore property.
*
* @param value
* allowed object is
* {@link DatastoreEventArgument }
*
*/
public void setDestDatastore(DatastoreEventArgument value) {
this.destDatastore = value;
}
}