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

com.vmware.vim.VirtualDiskOption 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VirtualDiskOption complex type. * *

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

 * <complexType name="VirtualDiskOption">
 *   <complexContent>
 *     <extension base="{urn:vim2}VirtualDeviceOption">
 *       <sequence>
 *         <element name="capacityInKB" type="{urn:vim2}LongOption"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualDiskOption", propOrder = { "capacityInKB" }) public class VirtualDiskOption extends VirtualDeviceOption { @XmlElement(required = true) protected LongOption capacityInKB; /** * Gets the value of the capacityInKB property. * * @return * possible object is * {@link LongOption } * */ public LongOption getCapacityInKB() { return capacityInKB; } /** * Sets the value of the capacityInKB property. * * @param value * allowed object is * {@link LongOption } * */ public void setCapacityInKB(LongOption value) { this.capacityInKB = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy