com.vmware.vim25.ClusterConfigSpecEx 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.XmlType;
/**
* Java class for ClusterConfigSpecEx complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClusterConfigSpecEx">
* <complexContent>
* <extension base="{urn:vim25}ComputeResourceConfigSpec">
* <sequence>
* <element name="dasConfig" type="{urn:vim25}ClusterDasConfigInfo" minOccurs="0"/>
* <element name="dasVmConfigSpec" type="{urn:vim25}ClusterDasVmConfigSpec" maxOccurs="unbounded" minOccurs="0"/>
* <element name="drsConfig" type="{urn:vim25}ClusterDrsConfigInfo" minOccurs="0"/>
* <element name="drsVmConfigSpec" type="{urn:vim25}ClusterDrsVmConfigSpec" maxOccurs="unbounded" minOccurs="0"/>
* <element name="rulesSpec" type="{urn:vim25}ClusterRuleSpec" maxOccurs="unbounded" minOccurs="0"/>
* <element name="orchestration" type="{urn:vim25}ClusterOrchestrationInfo" minOccurs="0"/>
* <element name="vmOrchestrationSpec" type="{urn:vim25}ClusterVmOrchestrationSpec" maxOccurs="unbounded" minOccurs="0"/>
* <element name="dpmConfig" type="{urn:vim25}ClusterDpmConfigInfo" minOccurs="0"/>
* <element name="dpmHostConfigSpec" type="{urn:vim25}ClusterDpmHostConfigSpec" maxOccurs="unbounded" minOccurs="0"/>
* <element name="vsanConfig" type="{urn:vim25}VsanClusterConfigInfo" minOccurs="0"/>
* <element name="vsanHostConfigSpec" type="{urn:vim25}VsanHostConfigInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="groupSpec" type="{urn:vim25}ClusterGroupSpec" 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 = "ClusterConfigSpecEx", propOrder = {
"dasConfig",
"dasVmConfigSpec",
"drsConfig",
"drsVmConfigSpec",
"rulesSpec",
"orchestration",
"vmOrchestrationSpec",
"dpmConfig",
"dpmHostConfigSpec",
"vsanConfig",
"vsanHostConfigSpec",
"groupSpec",
"infraUpdateHaConfig",
"proactiveDrsConfig"
})
public class ClusterConfigSpecEx
extends ComputeResourceConfigSpec
{
protected ClusterDasConfigInfo dasConfig;
protected List dasVmConfigSpec;
protected ClusterDrsConfigInfo drsConfig;
protected List drsVmConfigSpec;
protected List rulesSpec;
protected ClusterOrchestrationInfo orchestration;
protected List vmOrchestrationSpec;
protected ClusterDpmConfigInfo dpmConfig;
protected List dpmHostConfigSpec;
protected VsanClusterConfigInfo vsanConfig;
protected List vsanHostConfigSpec;
protected List groupSpec;
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 dasVmConfigSpec 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 dasVmConfigSpec property.
*
*
* For example, to add a new item, do as follows:
*
* getDasVmConfigSpec().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterDasVmConfigSpec }
*
*
*/
public List getDasVmConfigSpec() {
if (dasVmConfigSpec == null) {
dasVmConfigSpec = new ArrayList();
}
return this.dasVmConfigSpec;
}
/**
* 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 drsVmConfigSpec 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 drsVmConfigSpec property.
*
*
* For example, to add a new item, do as follows:
*
* getDrsVmConfigSpec().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterDrsVmConfigSpec }
*
*
*/
public List getDrsVmConfigSpec() {
if (drsVmConfigSpec == null) {
drsVmConfigSpec = new ArrayList();
}
return this.drsVmConfigSpec;
}
/**
* Gets the value of the rulesSpec 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 rulesSpec property.
*
*
* For example, to add a new item, do as follows:
*
* getRulesSpec().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterRuleSpec }
*
*
*/
public List getRulesSpec() {
if (rulesSpec == null) {
rulesSpec = new ArrayList();
}
return this.rulesSpec;
}
/**
* 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 vmOrchestrationSpec 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 vmOrchestrationSpec property.
*
*
* For example, to add a new item, do as follows:
*
* getVmOrchestrationSpec().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterVmOrchestrationSpec }
*
*
*/
public List getVmOrchestrationSpec() {
if (vmOrchestrationSpec == null) {
vmOrchestrationSpec = new ArrayList();
}
return this.vmOrchestrationSpec;
}
/**
* Gets the value of the dpmConfig property.
*
* @return
* possible object is
* {@link ClusterDpmConfigInfo }
*
*/
public ClusterDpmConfigInfo getDpmConfig() {
return dpmConfig;
}
/**
* Sets the value of the dpmConfig property.
*
* @param value
* allowed object is
* {@link ClusterDpmConfigInfo }
*
*/
public void setDpmConfig(ClusterDpmConfigInfo value) {
this.dpmConfig = value;
}
/**
* Gets the value of the dpmHostConfigSpec 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 dpmHostConfigSpec property.
*
*
* For example, to add a new item, do as follows:
*
* getDpmHostConfigSpec().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterDpmHostConfigSpec }
*
*
*/
public List getDpmHostConfigSpec() {
if (dpmHostConfigSpec == null) {
dpmHostConfigSpec = new ArrayList();
}
return this.dpmHostConfigSpec;
}
/**
* Gets the value of the vsanConfig property.
*
* @return
* possible object is
* {@link VsanClusterConfigInfo }
*
*/
public VsanClusterConfigInfo getVsanConfig() {
return vsanConfig;
}
/**
* Sets the value of the vsanConfig property.
*
* @param value
* allowed object is
* {@link VsanClusterConfigInfo }
*
*/
public void setVsanConfig(VsanClusterConfigInfo value) {
this.vsanConfig = value;
}
/**
* Gets the value of the vsanHostConfigSpec 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 vsanHostConfigSpec property.
*
*
* For example, to add a new item, do as follows:
*
* getVsanHostConfigSpec().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VsanHostConfigInfo }
*
*
*/
public List getVsanHostConfigSpec() {
if (vsanHostConfigSpec == null) {
vsanHostConfigSpec = new ArrayList();
}
return this.vsanHostConfigSpec;
}
/**
* Gets the value of the groupSpec 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 groupSpec property.
*
*
* For example, to add a new item, do as follows:
*
* getGroupSpec().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterGroupSpec }
*
*
*/
public List getGroupSpec() {
if (groupSpec == null) {
groupSpec = new ArrayList();
}
return this.groupSpec;
}
/**
* 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;
}
}