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

com.vmware.vim.VirtualPCIControllerOption Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

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

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

 * <complexType name="VirtualPCIControllerOption">
 *   <complexContent>
 *     <extension base="{urn:vim2}VirtualControllerOption">
 *       <sequence>
 *         <element name="numSCSIControllers" type="{urn:vim2}IntOption"/>
 *         <element name="numEthernetCards" type="{urn:vim2}IntOption"/>
 *         <element name="numVideoCards" type="{urn:vim2}IntOption"/>
 *         <element name="numSoundCards" type="{urn:vim2}IntOption"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualPCIControllerOption", propOrder = { "numSCSIControllers", "numEthernetCards", "numVideoCards", "numSoundCards" }) public class VirtualPCIControllerOption extends VirtualControllerOption { @XmlElement(required = true) protected IntOption numSCSIControllers; @XmlElement(required = true) protected IntOption numEthernetCards; @XmlElement(required = true) protected IntOption numVideoCards; @XmlElement(required = true) protected IntOption numSoundCards; /** * Gets the value of the numSCSIControllers property. * * @return * possible object is * {@link IntOption } * */ public IntOption getNumSCSIControllers() { return numSCSIControllers; } /** * Sets the value of the numSCSIControllers property. * * @param value * allowed object is * {@link IntOption } * */ public void setNumSCSIControllers(IntOption value) { this.numSCSIControllers = value; } /** * Gets the value of the numEthernetCards property. * * @return * possible object is * {@link IntOption } * */ public IntOption getNumEthernetCards() { return numEthernetCards; } /** * Sets the value of the numEthernetCards property. * * @param value * allowed object is * {@link IntOption } * */ public void setNumEthernetCards(IntOption value) { this.numEthernetCards = value; } /** * Gets the value of the numVideoCards property. * * @return * possible object is * {@link IntOption } * */ public IntOption getNumVideoCards() { return numVideoCards; } /** * Sets the value of the numVideoCards property. * * @param value * allowed object is * {@link IntOption } * */ public void setNumVideoCards(IntOption value) { this.numVideoCards = value; } /** * Gets the value of the numSoundCards property. * * @return * possible object is * {@link IntOption } * */ public IntOption getNumSoundCards() { return numSoundCards; } /** * Sets the value of the numSoundCards property. * * @param value * allowed object is * {@link IntOption } * */ public void setNumSoundCards(IntOption value) { this.numSoundCards = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy