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

com.vmware.vim25.HostDiagnosticPartition 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.XmlType;


/**
 * 

Java class for HostDiagnosticPartition complex type. * *

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

 * <complexType name="HostDiagnosticPartition">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="storageType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="diagnosticType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="slots" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="id" type="{urn:vim25}HostScsiDiskPartition"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostDiagnosticPartition", propOrder = { "storageType", "diagnosticType", "slots", "id" }) public class HostDiagnosticPartition extends DynamicData { @XmlElement(required = true) protected String storageType; @XmlElement(required = true) protected String diagnosticType; protected int slots; @XmlElement(required = true) protected HostScsiDiskPartition id; /** * Gets the value of the storageType property. * * @return * possible object is * {@link String } * */ public String getStorageType() { return storageType; } /** * Sets the value of the storageType property. * * @param value * allowed object is * {@link String } * */ public void setStorageType(String value) { this.storageType = value; } /** * Gets the value of the diagnosticType property. * * @return * possible object is * {@link String } * */ public String getDiagnosticType() { return diagnosticType; } /** * Sets the value of the diagnosticType property. * * @param value * allowed object is * {@link String } * */ public void setDiagnosticType(String value) { this.diagnosticType = value; } /** * Gets the value of the slots property. * */ public int getSlots() { return slots; } /** * Sets the value of the slots property. * */ public void setSlots(int value) { this.slots = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link HostScsiDiskPartition } * */ public HostScsiDiskPartition getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link HostScsiDiskPartition } * */ public void setId(HostScsiDiskPartition value) { this.id = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy