![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostSriovConfig 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 HostSriovConfig complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostSriovConfig">
* <complexContent>
* <extension base="{urn:vim25}HostPciPassthruConfig">
* <sequence>
* <element name="sriovEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="numVirtualFunction" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostSriovConfig", propOrder = {
"sriovEnabled",
"numVirtualFunction"
})
public class HostSriovConfig
extends HostPciPassthruConfig
{
protected boolean sriovEnabled;
protected int numVirtualFunction;
/**
* Gets the value of the sriovEnabled property.
*
*/
public boolean isSriovEnabled() {
return sriovEnabled;
}
/**
* Sets the value of the sriovEnabled property.
*
*/
public void setSriovEnabled(boolean value) {
this.sriovEnabled = value;
}
/**
* Gets the value of the numVirtualFunction property.
*
*/
public int getNumVirtualFunction() {
return numVirtualFunction;
}
/**
* Sets the value of the numVirtualFunction property.
*
*/
public void setNumVirtualFunction(int value) {
this.numVirtualFunction = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy