![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VirtualPCIPassthroughVmiopBackingInfo Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for VirtualPCIPassthroughVmiopBackingInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualPCIPassthroughVmiopBackingInfo">
* <complexContent>
* <extension base="{urn:vim25}VirtualPCIPassthroughPluginBackingInfo">
* <sequence>
* <element name="vgpu" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualPCIPassthroughVmiopBackingInfo", propOrder = {
"vgpu"
})
public class VirtualPCIPassthroughVmiopBackingInfo
extends VirtualPCIPassthroughPluginBackingInfo
{
protected String vgpu;
/**
* Gets the value of the vgpu property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVgpu() {
return vgpu;
}
/**
* Sets the value of the vgpu property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVgpu(String value) {
this.vgpu = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy