com.vmware.vim25.HostPciPassthruConfig Maven / Gradle / Ivy
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 HostPciPassthruConfig complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostPciPassthruConfig">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="passthruEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostPciPassthruConfig", propOrder = {
"id",
"passthruEnabled"
})
@XmlSeeAlso({
HostSriovConfig.class
})
public class HostPciPassthruConfig
extends DynamicData
{
@XmlElement(required = true)
protected String id;
protected boolean passthruEnabled;
/**
* 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 passthruEnabled property.
*
*/
public boolean isPassthruEnabled() {
return passthruEnabled;
}
/**
* Sets the value of the passthruEnabled property.
*
*/
public void setPassthruEnabled(boolean value) {
this.passthruEnabled = value;
}
}