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

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


/**
 * 

Java class for VirtualDiskRawDiskVer2BackingInfo complex type. * *

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

 * <complexType name="VirtualDiskRawDiskVer2BackingInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}VirtualDeviceDeviceBackingInfo">
 *       <sequence>
 *         <element name="descriptorFileName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="uuid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="changeId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualDiskRawDiskVer2BackingInfo", propOrder = { "descriptorFileName", "uuid", "changeId" }) @XmlSeeAlso({ VirtualDiskPartitionedRawDiskVer2BackingInfo.class }) public class VirtualDiskRawDiskVer2BackingInfo extends VirtualDeviceDeviceBackingInfo { @XmlElement(required = true) protected String descriptorFileName; protected String uuid; protected String changeId; /** * Gets the value of the descriptorFileName property. * * @return * possible object is * {@link String } * */ public String getDescriptorFileName() { return descriptorFileName; } /** * Sets the value of the descriptorFileName property. * * @param value * allowed object is * {@link String } * */ public void setDescriptorFileName(String value) { this.descriptorFileName = value; } /** * Gets the value of the uuid property. * * @return * possible object is * {@link String } * */ public String getUuid() { return uuid; } /** * Sets the value of the uuid property. * * @param value * allowed object is * {@link String } * */ public void setUuid(String value) { this.uuid = value; } /** * Gets the value of the changeId property. * * @return * possible object is * {@link String } * */ public String getChangeId() { return changeId; } /** * Sets the value of the changeId property. * * @param value * allowed object is * {@link String } * */ public void setChangeId(String value) { this.changeId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy