All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.ClusterConfigInfo Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

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 ClusterConfigInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ClusterConfigInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <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"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClusterConfigInfo", propOrder = { "dasConfig", "dasVmConfig", "drsConfig", "drsVmConfig", "rule" }) public class ClusterConfigInfo extends DynamicData { @XmlElement(required = true) protected ClusterDasConfigInfo dasConfig; protected List dasVmConfig; @XmlElement(required = true) protected ClusterDrsConfigInfo drsConfig; protected List drsVmConfig; protected List rule; /** * 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; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy