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

com.vmware.vim.VirtualDiskRawDiskMappingVer1BackingInfo Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VirtualDiskRawDiskMappingVer1BackingInfo complex type. * *

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

 * <complexType name="VirtualDiskRawDiskMappingVer1BackingInfo">
 *   <complexContent>
 *     <extension base="{urn:vim2}VirtualDeviceFileBackingInfo">
 *       <sequence>
 *         <element name="lunUuid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="deviceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="compatibilityMode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="diskMode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualDiskRawDiskMappingVer1BackingInfo", propOrder = { "lunUuid", "deviceName", "compatibilityMode", "diskMode" }) public class VirtualDiskRawDiskMappingVer1BackingInfo extends VirtualDeviceFileBackingInfo { protected String lunUuid; protected String deviceName; protected String compatibilityMode; protected String diskMode; /** * Gets the value of the lunUuid property. * * @return * possible object is * {@link String } * */ public String getLunUuid() { return lunUuid; } /** * Sets the value of the lunUuid property. * * @param value * allowed object is * {@link String } * */ public void setLunUuid(String value) { this.lunUuid = value; } /** * Gets the value of the deviceName property. * * @return * possible object is * {@link String } * */ public String getDeviceName() { return deviceName; } /** * Sets the value of the deviceName property. * * @param value * allowed object is * {@link String } * */ public void setDeviceName(String value) { this.deviceName = value; } /** * Gets the value of the compatibilityMode property. * * @return * possible object is * {@link String } * */ public String getCompatibilityMode() { return compatibilityMode; } /** * Sets the value of the compatibilityMode property. * * @param value * allowed object is * {@link String } * */ public void setCompatibilityMode(String value) { this.compatibilityMode = value; } /** * Gets the value of the diskMode property. * * @return * possible object is * {@link String } * */ public String getDiskMode() { return diskMode; } /** * Sets the value of the diskMode property. * * @param value * allowed object is * {@link String } * */ public void setDiskMode(String value) { this.diskMode = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy