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

com.vmware.vim.VmDiskFileInfo 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 VmDiskFileInfo complex type. * *

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

 * <complexType name="VmDiskFileInfo">
 *   <complexContent>
 *     <extension base="{urn:vim2}FileInfo">
 *       <sequence>
 *         <element name="diskType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="capacityKb" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="hardwareVersion" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VmDiskFileInfo", propOrder = { "diskType", "capacityKb", "hardwareVersion" }) public class VmDiskFileInfo extends FileInfo { protected String diskType; protected Long capacityKb; protected Integer hardwareVersion; /** * Gets the value of the diskType property. * * @return * possible object is * {@link String } * */ public String getDiskType() { return diskType; } /** * Sets the value of the diskType property. * * @param value * allowed object is * {@link String } * */ public void setDiskType(String value) { this.diskType = value; } /** * Gets the value of the capacityKb property. * * @return * possible object is * {@link Long } * */ public Long getCapacityKb() { return capacityKb; } /** * Sets the value of the capacityKb property. * * @param value * allowed object is * {@link Long } * */ public void setCapacityKb(Long value) { this.capacityKb = value; } /** * Gets the value of the hardwareVersion property. * * @return * possible object is * {@link Integer } * */ public Integer getHardwareVersion() { return hardwareVersion; } /** * Sets the value of the hardwareVersion property. * * @param value * allowed object is * {@link Integer } * */ public void setHardwareVersion(Integer value) { this.hardwareVersion = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy