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

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


/**
 * 

Java class for StorageDrsSpaceLoadBalanceConfig complex type. * *

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

 * <complexType name="StorageDrsSpaceLoadBalanceConfig">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="spaceThresholdMode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="spaceUtilizationThreshold" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="freeSpaceThresholdGB" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="minSpaceUtilizationDifference" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StorageDrsSpaceLoadBalanceConfig", propOrder = { "spaceThresholdMode", "spaceUtilizationThreshold", "freeSpaceThresholdGB", "minSpaceUtilizationDifference" }) public class StorageDrsSpaceLoadBalanceConfig extends DynamicData { protected String spaceThresholdMode; protected Integer spaceUtilizationThreshold; protected Integer freeSpaceThresholdGB; protected Integer minSpaceUtilizationDifference; /** * Gets the value of the spaceThresholdMode property. * * @return * possible object is * {@link String } * */ public String getSpaceThresholdMode() { return spaceThresholdMode; } /** * Sets the value of the spaceThresholdMode property. * * @param value * allowed object is * {@link String } * */ public void setSpaceThresholdMode(String value) { this.spaceThresholdMode = value; } /** * Gets the value of the spaceUtilizationThreshold property. * * @return * possible object is * {@link Integer } * */ public Integer getSpaceUtilizationThreshold() { return spaceUtilizationThreshold; } /** * Sets the value of the spaceUtilizationThreshold property. * * @param value * allowed object is * {@link Integer } * */ public void setSpaceUtilizationThreshold(Integer value) { this.spaceUtilizationThreshold = value; } /** * Gets the value of the freeSpaceThresholdGB property. * * @return * possible object is * {@link Integer } * */ public Integer getFreeSpaceThresholdGB() { return freeSpaceThresholdGB; } /** * Sets the value of the freeSpaceThresholdGB property. * * @param value * allowed object is * {@link Integer } * */ public void setFreeSpaceThresholdGB(Integer value) { this.freeSpaceThresholdGB = value; } /** * Gets the value of the minSpaceUtilizationDifference property. * * @return * possible object is * {@link Integer } * */ public Integer getMinSpaceUtilizationDifference() { return minSpaceUtilizationDifference; } /** * Sets the value of the minSpaceUtilizationDifference property. * * @param value * allowed object is * {@link Integer } * */ public void setMinSpaceUtilizationDifference(Integer value) { this.minSpaceUtilizationDifference = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy