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

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

The 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VirtualMachinePciPassthroughInfo complex type. * *

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

 * <complexType name="VirtualMachinePciPassthroughInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}VirtualMachineTargetInfo">
 *       <sequence>
 *         <element name="pciDevice" type="{urn:vim25}HostPciDevice"/>
 *         <element name="systemId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualMachinePciPassthroughInfo", propOrder = { "pciDevice", "systemId" }) @XmlSeeAlso({ VirtualMachineSriovInfo.class }) public class VirtualMachinePciPassthroughInfo extends VirtualMachineTargetInfo { @XmlElement(required = true) protected HostPciDevice pciDevice; @XmlElement(required = true) protected String systemId; /** * Gets the value of the pciDevice property. * * @return * possible object is * {@link HostPciDevice } * */ public HostPciDevice getPciDevice() { return pciDevice; } /** * Sets the value of the pciDevice property. * * @param value * allowed object is * {@link HostPciDevice } * */ public void setPciDevice(HostPciDevice value) { this.pciDevice = value; } /** * Gets the value of the systemId property. * * @return * possible object is * {@link String } * */ public String getSystemId() { return systemId; } /** * Sets the value of the systemId property. * * @param value * allowed object is * {@link String } * */ public void setSystemId(String value) { this.systemId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy