![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.DvsHealthStatusChangeEvent 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DvsHealthStatusChangeEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DvsHealthStatusChangeEvent">
* <complexContent>
* <extension base="{urn:vim25}HostEvent">
* <sequence>
* <element name="switchUuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="healthResult" type="{urn:vim25}HostMemberHealthCheckResult" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DvsHealthStatusChangeEvent", propOrder = {
"switchUuid",
"healthResult"
})
@XmlSeeAlso({
UplinkPortVlanTrunkedEvent.class,
UplinkPortVlanUntrunkedEvent.class,
MtuMatchEvent.class,
MtuMismatchEvent.class,
UplinkPortMtuNotSupportEvent.class,
UplinkPortMtuSupportEvent.class,
TeamingMatchEvent.class,
TeamingMisMatchEvent.class
})
public class DvsHealthStatusChangeEvent
extends HostEvent
{
@XmlElement(required = true)
protected String switchUuid;
protected HostMemberHealthCheckResult healthResult;
/**
* Gets the value of the switchUuid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSwitchUuid() {
return switchUuid;
}
/**
* Sets the value of the switchUuid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSwitchUuid(String value) {
this.switchUuid = value;
}
/**
* Gets the value of the healthResult property.
*
* @return
* possible object is
* {@link HostMemberHealthCheckResult }
*
*/
public HostMemberHealthCheckResult getHealthResult() {
return healthResult;
}
/**
* Sets the value of the healthResult property.
*
* @param value
* allowed object is
* {@link HostMemberHealthCheckResult }
*
*/
public void setHealthResult(HostMemberHealthCheckResult value) {
this.healthResult = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy