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

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


/**
 * 

Java class for DatabaseSizeParam complex type. * *

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

 * <complexType name="DatabaseSizeParam">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="inventoryDesc" type="{urn:vim25}InventoryDescription"/>
 *         <element name="perfStatsDesc" type="{urn:vim25}PerformanceStatisticsDescription" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DatabaseSizeParam", propOrder = { "inventoryDesc", "perfStatsDesc" }) public class DatabaseSizeParam extends DynamicData { @XmlElement(required = true) protected InventoryDescription inventoryDesc; protected PerformanceStatisticsDescription perfStatsDesc; /** * Gets the value of the inventoryDesc property. * * @return * possible object is * {@link InventoryDescription } * */ public InventoryDescription getInventoryDesc() { return inventoryDesc; } /** * Sets the value of the inventoryDesc property. * * @param value * allowed object is * {@link InventoryDescription } * */ public void setInventoryDesc(InventoryDescription value) { this.inventoryDesc = value; } /** * Gets the value of the perfStatsDesc property. * * @return * possible object is * {@link PerformanceStatisticsDescription } * */ public PerformanceStatisticsDescription getPerfStatsDesc() { return perfStatsDesc; } /** * Sets the value of the perfStatsDesc property. * * @param value * allowed object is * {@link PerformanceStatisticsDescription } * */ public void setPerfStatsDesc(PerformanceStatisticsDescription value) { this.perfStatsDesc = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy