
com.vmware.vim25.ClusterConfigInfoEx Maven / Gradle / Ivy
Show all versions of vi-api Show documentation
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="dpmConfigInfo" type="{urn:vim25}ClusterDpmConfigInfo" minOccurs="0"/>
* <element name="dpmHostConfig" type="{urn:vim25}ClusterDpmHostConfigInfo" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClusterConfigInfoEx", propOrder = {
"dasConfig",
"dasVmConfig",
"drsConfig",
"drsVmConfig",
"rule",
"dpmConfigInfo",
"dpmHostConfig"
})
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 ClusterDpmConfigInfo dpmConfigInfo;
protected List dpmHostConfig;
/**
* 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 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;
}
/**
* Sets the value of the dasVmConfig property.
*
* @param dasVmConfig
* allowed object is
* {@link ClusterDasVmConfigInfo }
*
*/
public void setDasVmConfig(List dasVmConfig) {
this.dasVmConfig = dasVmConfig;
}
/**
* Sets the value of the drsVmConfig property.
*
* @param drsVmConfig
* allowed object is
* {@link ClusterDrsVmConfigInfo }
*
*/
public void setDrsVmConfig(List drsVmConfig) {
this.drsVmConfig = drsVmConfig;
}
/**
* Sets the value of the rule property.
*
* @param rule
* allowed object is
* {@link ClusterRuleInfo }
*
*/
public void setRule(List rule) {
this.rule = rule;
}
/**
* Sets the value of the dpmHostConfig property.
*
* @param dpmHostConfig
* allowed object is
* {@link ClusterDpmHostConfigInfo }
*
*/
public void setDpmHostConfig(List dpmHostConfig) {
this.dpmHostConfig = dpmHostConfig;
}
}