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

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

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

 * <complexType name="HostScsiDiskPartition">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="diskName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="partition" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostScsiDiskPartition", propOrder = { "diskName", "partition" }) public class HostScsiDiskPartition extends DynamicData { @XmlElement(required = true) protected String diskName; protected int partition; /** * Gets the value of the diskName property. * * @return * possible object is * {@link String } * */ public String getDiskName() { return diskName; } /** * Sets the value of the diskName property. * * @param value * allowed object is * {@link String } * */ public void setDiskName(String value) { this.diskName = value; } /** * Gets the value of the partition property. * */ public int getPartition() { return partition; } /** * Sets the value of the partition property. * */ public void setPartition(int value) { this.partition = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy