com.vmware.vim25.ClusterConfigInfoEx Maven / Gradle / Ivy
package com.vmware.vim25;
import java.util.ArrayList;
import java.util.List;
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 ClusterConfigInfoEx complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClusterConfigInfoEx">
* <complexContent>
* <extension base="{urn:vim25}ComputeResourceConfigInfo">
* <sequence>
* <element name="dasConfig" type="{urn:vim25}ClusterDasConfigInfo"/>
* <element name="dasVmConfig" type="{urn:vim25}ClusterDasVmConfigInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="drsConfig" type="{urn:vim25}ClusterDrsConfigInfo"/>
* <element name="drsVmConfig" type="{urn:vim25}ClusterDrsVmConfigInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="rule" type="{urn:vim25}ClusterRuleInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="orchestration" type="{urn:vim25}ClusterOrchestrationInfo" minOccurs="0"/>
* <element name="vmOrchestration" type="{urn:vim25}ClusterVmOrchestrationInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="dpmConfigInfo" type="{urn:vim25}ClusterDpmConfigInfo" minOccurs="0"/>
* <element name="dpmHostConfig" type="{urn:vim25}ClusterDpmHostConfigInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="vsanConfigInfo" type="{urn:vim25}VsanClusterConfigInfo" minOccurs="0"/>
* <element name="vsanHostConfig" type="{urn:vim25}VsanHostConfigInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="group" type="{urn:vim25}ClusterGroupInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="infraUpdateHaConfig" type="{urn:vim25}ClusterInfraUpdateHaConfigInfo" minOccurs="0"/>
* <element name="proactiveDrsConfig" type="{urn:vim25}ClusterProactiveDrsConfigInfo" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClusterConfigInfoEx", propOrder = {
"dasConfig",
"dasVmConfig",
"drsConfig",
"drsVmConfig",
"rule",
"orchestration",
"vmOrchestration",
"dpmConfigInfo",
"dpmHostConfig",
"vsanConfigInfo",
"vsanHostConfig",
"group",
"infraUpdateHaConfig",
"proactiveDrsConfig"
})
public class ClusterConfigInfoEx
extends ComputeResourceConfigInfo
{
@XmlElement(required = true)
protected ClusterDasConfigInfo dasConfig;
protected List dasVmConfig;
@XmlElement(required = true)
protected ClusterDrsConfigInfo drsConfig;
protected List drsVmConfig;
protected List rule;
protected ClusterOrchestrationInfo orchestration;
protected List vmOrchestration;
protected ClusterDpmConfigInfo dpmConfigInfo;
protected List dpmHostConfig;
protected VsanClusterConfigInfo vsanConfigInfo;
protected List vsanHostConfig;
protected List group;
protected ClusterInfraUpdateHaConfigInfo infraUpdateHaConfig;
protected ClusterProactiveDrsConfigInfo proactiveDrsConfig;
/**
* Gets the value of the dasConfig property.
*
* @return
* possible object is
* {@link ClusterDasConfigInfo }
*
*/
public ClusterDasConfigInfo getDasConfig() {
return dasConfig;
}
/**
* Sets the value of the dasConfig property.
*
* @param value
* allowed object is
* {@link ClusterDasConfigInfo }
*
*/
public void setDasConfig(ClusterDasConfigInfo value) {
this.dasConfig = value;
}
/**
* Gets the value of the dasVmConfig property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the dasVmConfig property.
*
*
* For example, to add a new item, do as follows:
*
* getDasVmConfig().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterDasVmConfigInfo }
*
*
*/
public List getDasVmConfig() {
if (dasVmConfig == null) {
dasVmConfig = new ArrayList();
}
return this.dasVmConfig;
}
/**
* Gets the value of the drsConfig property.
*
* @return
* possible object is
* {@link ClusterDrsConfigInfo }
*
*/
public ClusterDrsConfigInfo getDrsConfig() {
return drsConfig;
}
/**
* Sets the value of the drsConfig property.
*
* @param value
* allowed object is
* {@link ClusterDrsConfigInfo }
*
*/
public void setDrsConfig(ClusterDrsConfigInfo value) {
this.drsConfig = value;
}
/**
* Gets the value of the drsVmConfig property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the drsVmConfig property.
*
*
* For example, to add a new item, do as follows:
*
* getDrsVmConfig().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterDrsVmConfigInfo }
*
*
*/
public List getDrsVmConfig() {
if (drsVmConfig == null) {
drsVmConfig = new ArrayList();
}
return this.drsVmConfig;
}
/**
* Gets the value of the rule property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the rule property.
*
*
* For example, to add a new item, do as follows:
*
* getRule().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterRuleInfo }
*
*
*/
public List getRule() {
if (rule == null) {
rule = new ArrayList();
}
return this.rule;
}
/**
* Gets the value of the orchestration property.
*
* @return
* possible object is
* {@link ClusterOrchestrationInfo }
*
*/
public ClusterOrchestrationInfo getOrchestration() {
return orchestration;
}
/**
* Sets the value of the orchestration property.
*
* @param value
* allowed object is
* {@link ClusterOrchestrationInfo }
*
*/
public void setOrchestration(ClusterOrchestrationInfo value) {
this.orchestration = value;
}
/**
* Gets the value of the vmOrchestration property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the vmOrchestration property.
*
*
* For example, to add a new item, do as follows:
*
* getVmOrchestration().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterVmOrchestrationInfo }
*
*
*/
public List getVmOrchestration() {
if (vmOrchestration == null) {
vmOrchestration = new ArrayList();
}
return this.vmOrchestration;
}
/**
* Gets the value of the dpmConfigInfo property.
*
* @return
* possible object is
* {@link ClusterDpmConfigInfo }
*
*/
public ClusterDpmConfigInfo getDpmConfigInfo() {
return dpmConfigInfo;
}
/**
* Sets the value of the dpmConfigInfo property.
*
* @param value
* allowed object is
* {@link ClusterDpmConfigInfo }
*
*/
public void setDpmConfigInfo(ClusterDpmConfigInfo value) {
this.dpmConfigInfo = value;
}
/**
* Gets the value of the dpmHostConfig property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the dpmHostConfig property.
*
*
* For example, to add a new item, do as follows:
*
* getDpmHostConfig().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterDpmHostConfigInfo }
*
*
*/
public List getDpmHostConfig() {
if (dpmHostConfig == null) {
dpmHostConfig = new ArrayList();
}
return this.dpmHostConfig;
}
/**
* Gets the value of the vsanConfigInfo property.
*
* @return
* possible object is
* {@link VsanClusterConfigInfo }
*
*/
public VsanClusterConfigInfo getVsanConfigInfo() {
return vsanConfigInfo;
}
/**
* Sets the value of the vsanConfigInfo property.
*
* @param value
* allowed object is
* {@link VsanClusterConfigInfo }
*
*/
public void setVsanConfigInfo(VsanClusterConfigInfo value) {
this.vsanConfigInfo = value;
}
/**
* Gets the value of the vsanHostConfig property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the vsanHostConfig property.
*
*
* For example, to add a new item, do as follows:
*
* getVsanHostConfig().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VsanHostConfigInfo }
*
*
*/
public List getVsanHostConfig() {
if (vsanHostConfig == null) {
vsanHostConfig = new ArrayList();
}
return this.vsanHostConfig;
}
/**
* Gets the value of the group property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the group property.
*
*
* For example, to add a new item, do as follows:
*
* getGroup().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterGroupInfo }
*
*
*/
public List getGroup() {
if (group == null) {
group = new ArrayList();
}
return this.group;
}
/**
* Gets the value of the infraUpdateHaConfig property.
*
* @return
* possible object is
* {@link ClusterInfraUpdateHaConfigInfo }
*
*/
public ClusterInfraUpdateHaConfigInfo getInfraUpdateHaConfig() {
return infraUpdateHaConfig;
}
/**
* Sets the value of the infraUpdateHaConfig property.
*
* @param value
* allowed object is
* {@link ClusterInfraUpdateHaConfigInfo }
*
*/
public void setInfraUpdateHaConfig(ClusterInfraUpdateHaConfigInfo value) {
this.infraUpdateHaConfig = value;
}
/**
* Gets the value of the proactiveDrsConfig property.
*
* @return
* possible object is
* {@link ClusterProactiveDrsConfigInfo }
*
*/
public ClusterProactiveDrsConfigInfo getProactiveDrsConfig() {
return proactiveDrsConfig;
}
/**
* Sets the value of the proactiveDrsConfig property.
*
* @param value
* allowed object is
* {@link ClusterProactiveDrsConfigInfo }
*
*/
public void setProactiveDrsConfig(ClusterProactiveDrsConfigInfo value) {
this.proactiveDrsConfig = value;
}
}