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

com.vmware.vim25.HostPciPassthruInfo 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for HostPciPassthruInfo complex type. * *

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

 * <complexType name="HostPciPassthruInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="dependentDevice" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="passthruEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="passthruCapable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="passthruActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostPciPassthruInfo", propOrder = { "id", "dependentDevice", "passthruEnabled", "passthruCapable", "passthruActive" }) @XmlSeeAlso({ HostSriovInfo.class }) public class HostPciPassthruInfo extends DynamicData { @XmlElement(required = true) protected String id; @XmlElement(required = true) protected String dependentDevice; protected boolean passthruEnabled; protected boolean passthruCapable; protected boolean passthruActive; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the dependentDevice property. * * @return * possible object is * {@link String } * */ public String getDependentDevice() { return dependentDevice; } /** * Sets the value of the dependentDevice property. * * @param value * allowed object is * {@link String } * */ public void setDependentDevice(String value) { this.dependentDevice = value; } /** * Gets the value of the passthruEnabled property. * */ public boolean isPassthruEnabled() { return passthruEnabled; } /** * Sets the value of the passthruEnabled property. * */ public void setPassthruEnabled(boolean value) { this.passthruEnabled = value; } /** * Gets the value of the passthruCapable property. * */ public boolean isPassthruCapable() { return passthruCapable; } /** * Sets the value of the passthruCapable property. * */ public void setPassthruCapable(boolean value) { this.passthruCapable = value; } /** * Gets the value of the passthruActive property. * */ public boolean isPassthruActive() { return passthruActive; } /** * Sets the value of the passthruActive property. * */ public void setPassthruActive(boolean value) { this.passthruActive = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy