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

com.vmware.vim25.VirtualMachineScsiDiskDeviceInfo 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.XmlType;


/**
 * 

Java class for VirtualMachineScsiDiskDeviceInfo complex type. * *

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

 * <complexType name="VirtualMachineScsiDiskDeviceInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}VirtualMachineDiskDeviceInfo">
 *       <sequence>
 *         <element name="disk" type="{urn:vim25}HostScsiDisk" minOccurs="0"/>
 *         <element name="transportHint" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="lunNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualMachineScsiDiskDeviceInfo", propOrder = { "disk", "transportHint", "lunNumber" }) public class VirtualMachineScsiDiskDeviceInfo extends VirtualMachineDiskDeviceInfo { protected HostScsiDisk disk; protected String transportHint; protected Integer lunNumber; /** * Gets the value of the disk property. * * @return * possible object is * {@link HostScsiDisk } * */ public HostScsiDisk getDisk() { return disk; } /** * Sets the value of the disk property. * * @param value * allowed object is * {@link HostScsiDisk } * */ public void setDisk(HostScsiDisk value) { this.disk = value; } /** * Gets the value of the transportHint property. * * @return * possible object is * {@link String } * */ public String getTransportHint() { return transportHint; } /** * Sets the value of the transportHint property. * * @param value * allowed object is * {@link String } * */ public void setTransportHint(String value) { this.transportHint = value; } /** * Gets the value of the lunNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getLunNumber() { return lunNumber; } /** * Sets the value of the lunNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setLunNumber(Integer value) { this.lunNumber = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy