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

com.vmware.vim25.VirtualDiskRawDiskVer2BackingOption 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.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VirtualDiskRawDiskVer2BackingOption complex type. * *

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

 * <complexType name="VirtualDiskRawDiskVer2BackingOption">
 *   <complexContent>
 *     <extension base="{urn:vim25}VirtualDeviceDeviceBackingOption">
 *       <sequence>
 *         <element name="descriptorFileNameExtensions" type="{urn:vim25}ChoiceOption"/>
 *         <element name="uuid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualDiskRawDiskVer2BackingOption", propOrder = { "descriptorFileNameExtensions", "uuid" }) @XmlSeeAlso({ VirtualDiskPartitionedRawDiskVer2BackingOption.class }) public class VirtualDiskRawDiskVer2BackingOption extends VirtualDeviceDeviceBackingOption { @XmlElement(required = true) protected ChoiceOption descriptorFileNameExtensions; 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 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