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

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

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

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

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

 * <complexType name="DvsVmVnicResourcePoolConfigSpec">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="operation" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="configVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="allocationInfo" type="{urn:vim25}DvsVmVnicResourceAllocation" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DvsVmVnicResourcePoolConfigSpec", propOrder = { "operation", "key", "configVersion", "allocationInfo", "name", "description" }) public class DvsVmVnicResourcePoolConfigSpec extends DynamicData { @XmlElement(required = true) protected String operation; protected String key; protected String configVersion; protected DvsVmVnicResourceAllocation allocationInfo; protected String name; protected String description; /** * Gets the value of the operation property. * * @return * possible object is * {@link String } * */ public String getOperation() { return operation; } /** * Sets the value of the operation property. * * @param value * allowed object is * {@link String } * */ public void setOperation(String value) { this.operation = value; } /** * 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 configVersion property. * * @return * possible object is * {@link String } * */ public String getConfigVersion() { return configVersion; } /** * Sets the value of the configVersion property. * * @param value * allowed object is * {@link String } * */ public void setConfigVersion(String value) { this.configVersion = value; } /** * Gets the value of the allocationInfo property. * * @return * possible object is * {@link DvsVmVnicResourceAllocation } * */ public DvsVmVnicResourceAllocation getAllocationInfo() { return allocationInfo; } /** * Sets the value of the allocationInfo property. * * @param value * allowed object is * {@link DvsVmVnicResourceAllocation } * */ public void setAllocationInfo(DvsVmVnicResourceAllocation value) { this.allocationInfo = 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 description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy