com.vmware.vim25.ClusterDasAamNodeState 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 ClusterDasAamNodeState complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClusterDasAamNodeState">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="host" type="{urn:vim25}ManagedObjectReference"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="configState" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="runtimeState" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClusterDasAamNodeState", propOrder = {
"host",
"name",
"configState",
"runtimeState"
})
public class ClusterDasAamNodeState
extends DynamicData
{
@XmlElement(required = true)
protected ManagedObjectReference host;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String configState;
@XmlElement(required = true)
protected String runtimeState;
/**
* Gets the value of the host property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getHost() {
return host;
}
/**
* Sets the value of the host property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setHost(ManagedObjectReference value) {
this.host = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the configState property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConfigState() {
return configState;
}
/**
* Sets the value of the configState property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConfigState(String value) {
this.configState = value;
}
/**
* Gets the value of the runtimeState property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRuntimeState() {
return runtimeState;
}
/**
* Sets the value of the runtimeState property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRuntimeState(String value) {
this.runtimeState = value;
}
}