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

com.vmware.vim25.VirtualDiskRawDiskMappingVer1BackingOption Maven / Gradle / Ivy

The newest version!

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 VirtualDiskRawDiskMappingVer1BackingOption complex type. * *

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

 * <complexType name="VirtualDiskRawDiskMappingVer1BackingOption">
 *   <complexContent>
 *     <extension base="{urn:vim25}VirtualDeviceDeviceBackingOption">
 *       <sequence>
 *         <element name="descriptorFileNameExtensions" type="{urn:vim25}ChoiceOption" minOccurs="0"/>
 *         <element name="compatibilityMode" type="{urn:vim25}ChoiceOption"/>
 *         <element name="diskMode" type="{urn:vim25}ChoiceOption"/>
 *         <element name="uuid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualDiskRawDiskMappingVer1BackingOption", propOrder = { "descriptorFileNameExtensions", "compatibilityMode", "diskMode", "uuid" }) public class VirtualDiskRawDiskMappingVer1BackingOption extends VirtualDeviceDeviceBackingOption { protected ChoiceOption descriptorFileNameExtensions; @XmlElement(required = true) protected ChoiceOption compatibilityMode; @XmlElement(required = true) protected ChoiceOption diskMode; protected boolean uuid; /** * Gets the value of the descriptorFileNameExtensions property. * * @return * possible object is * {@link ChoiceOption } * */ public ChoiceOption getDescriptorFileNameExtensions() { return descriptorFileNameExtensions; } /** * Sets the value of the descriptorFileNameExtensions property. * * @param value * allowed object is * {@link ChoiceOption } * */ public void setDescriptorFileNameExtensions(ChoiceOption value) { this.descriptorFileNameExtensions = value; } /** * Gets the value of the compatibilityMode property. * * @return * possible object is * {@link ChoiceOption } * */ public ChoiceOption getCompatibilityMode() { return compatibilityMode; } /** * Sets the value of the compatibilityMode property. * * @param value * allowed object is * {@link ChoiceOption } * */ public void setCompatibilityMode(ChoiceOption value) { this.compatibilityMode = value; } /** * Gets the value of the diskMode property. * * @return * possible object is * {@link ChoiceOption } * */ public ChoiceOption getDiskMode() { return diskMode; } /** * Sets the value of the diskMode property. * * @param value * allowed object is * {@link ChoiceOption } * */ public void setDiskMode(ChoiceOption value) { this.diskMode = value; } /** * Gets the value of the uuid property. * */ public boolean isUuid() { return uuid; } /** * Sets the value of the uuid property. * */ public void setUuid(boolean value) { this.uuid = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy