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

com.vmware.vim25.DVSCreateSpec 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 DVSCreateSpec complex type. * *

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

 * <complexType name="DVSCreateSpec">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="configSpec" type="{urn:vim25}DVSConfigSpec"/>
 *         <element name="productInfo" type="{urn:vim25}DistributedVirtualSwitchProductSpec" minOccurs="0"/>
 *         <element name="capability" type="{urn:vim25}DVSCapability" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DVSCreateSpec", propOrder = { "configSpec", "productInfo", "capability" }) public class DVSCreateSpec extends DynamicData { @XmlElement(required = true) protected DVSConfigSpec configSpec; protected DistributedVirtualSwitchProductSpec productInfo; protected DVSCapability capability; /** * Gets the value of the configSpec property. * * @return * possible object is * {@link DVSConfigSpec } * */ public DVSConfigSpec getConfigSpec() { return configSpec; } /** * Sets the value of the configSpec property. * * @param value * allowed object is * {@link DVSConfigSpec } * */ public void setConfigSpec(DVSConfigSpec value) { this.configSpec = value; } /** * Gets the value of the productInfo property. * * @return * possible object is * {@link DistributedVirtualSwitchProductSpec } * */ public DistributedVirtualSwitchProductSpec getProductInfo() { return productInfo; } /** * Sets the value of the productInfo property. * * @param value * allowed object is * {@link DistributedVirtualSwitchProductSpec } * */ public void setProductInfo(DistributedVirtualSwitchProductSpec value) { this.productInfo = value; } /** * Gets the value of the capability property. * * @return * possible object is * {@link DVSCapability } * */ public DVSCapability getCapability() { return capability; } /** * Sets the value of the capability property. * * @param value * allowed object is * {@link DVSCapability } * */ public void setCapability(DVSCapability value) { this.capability = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy