![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VirtualMachineScsiPassthroughInfo 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.XmlType;
/**
* Java class for VirtualMachineScsiPassthroughInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineScsiPassthroughInfo">
* <complexContent>
* <extension base="{urn:vim25}VirtualMachineTargetInfo">
* <sequence>
* <element name="scsiClass" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="vendor" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="physicalUnitNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineScsiPassthroughInfo", propOrder = {
"scsiClass",
"vendor",
"physicalUnitNumber"
})
public class VirtualMachineScsiPassthroughInfo
extends VirtualMachineTargetInfo
{
@XmlElement(required = true)
protected String scsiClass;
@XmlElement(required = true)
protected String vendor;
protected int physicalUnitNumber;
/**
* Gets the value of the scsiClass property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getScsiClass() {
return scsiClass;
}
/**
* Sets the value of the scsiClass property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setScsiClass(String value) {
this.scsiClass = value;
}
/**
* Gets the value of the vendor property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVendor() {
return vendor;
}
/**
* Sets the value of the vendor property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVendor(String value) {
this.vendor = value;
}
/**
* Gets the value of the physicalUnitNumber property.
*
*/
public int getPhysicalUnitNumber() {
return physicalUnitNumber;
}
/**
* Sets the value of the physicalUnitNumber property.
*
*/
public void setPhysicalUnitNumber(int value) {
this.physicalUnitNumber = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy