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

com.vmware.vim25.VMwareDvsLacpGroupConfig 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.XmlType;


/**
 * 

Java class for VMwareDvsLacpGroupConfig complex type. * *

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

 * <complexType name="VMwareDvsLacpGroupConfig">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="mode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="uplinkNum" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="loadbalanceAlgorithm" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="vlan" type="{urn:vim25}VMwareDvsLagVlanConfig" minOccurs="0"/>
 *         <element name="ipfix" type="{urn:vim25}VMwareDvsLagIpfixConfig" minOccurs="0"/>
 *         <element name="uplinkName" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="uplinkPortKey" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VMwareDvsLacpGroupConfig", propOrder = { "key", "name", "mode", "uplinkNum", "loadbalanceAlgorithm", "vlan", "ipfix", "uplinkName", "uplinkPortKey" }) public class VMwareDvsLacpGroupConfig extends DynamicData { protected String key; protected String name; protected String mode; protected Integer uplinkNum; protected String loadbalanceAlgorithm; protected VMwareDvsLagVlanConfig vlan; protected VMwareDvsLagIpfixConfig ipfix; protected List uplinkName; protected List uplinkPortKey; /** * Gets the value of the key property. * * @return * possible object is * {@link String } * */ public String getKey() { return key; } /** * Sets the value of the key property. * * @param value * allowed object is * {@link String } * */ public void setKey(String value) { this.key = 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 mode property. * * @return * possible object is * {@link String } * */ public String getMode() { return mode; } /** * Sets the value of the mode property. * * @param value * allowed object is * {@link String } * */ public void setMode(String value) { this.mode = value; } /** * Gets the value of the uplinkNum property. * * @return * possible object is * {@link Integer } * */ public Integer getUplinkNum() { return uplinkNum; } /** * Sets the value of the uplinkNum property. * * @param value * allowed object is * {@link Integer } * */ public void setUplinkNum(Integer value) { this.uplinkNum = value; } /** * Gets the value of the loadbalanceAlgorithm property. * * @return * possible object is * {@link String } * */ public String getLoadbalanceAlgorithm() { return loadbalanceAlgorithm; } /** * Sets the value of the loadbalanceAlgorithm property. * * @param value * allowed object is * {@link String } * */ public void setLoadbalanceAlgorithm(String value) { this.loadbalanceAlgorithm = value; } /** * Gets the value of the vlan property. * * @return * possible object is * {@link VMwareDvsLagVlanConfig } * */ public VMwareDvsLagVlanConfig getVlan() { return vlan; } /** * Sets the value of the vlan property. * * @param value * allowed object is * {@link VMwareDvsLagVlanConfig } * */ public void setVlan(VMwareDvsLagVlanConfig value) { this.vlan = value; } /** * Gets the value of the ipfix property. * * @return * possible object is * {@link VMwareDvsLagIpfixConfig } * */ public VMwareDvsLagIpfixConfig getIpfix() { return ipfix; } /** * Sets the value of the ipfix property. * * @param value * allowed object is * {@link VMwareDvsLagIpfixConfig } * */ public void setIpfix(VMwareDvsLagIpfixConfig value) { this.ipfix = value; } /** * Gets the value of the uplinkName 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 uplinkName property. * *

* For example, to add a new item, do as follows: *

     *    getUplinkName().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getUplinkName() { if (uplinkName == null) { uplinkName = new ArrayList(); } return this.uplinkName; } /** * Gets the value of the uplinkPortKey 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 uplinkPortKey property. * *

* For example, to add a new item, do as follows: *

     *    getUplinkPortKey().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getUplinkPortKey() { if (uplinkPortKey == null) { uplinkPortKey = new ArrayList(); } return this.uplinkPortKey; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy