com.vmware.vim25.VsanUpgradeSystemNotEnoughFreeCapacityIssue Maven / Gradle / Ivy
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 VsanUpgradeSystemNotEnoughFreeCapacityIssue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VsanUpgradeSystemNotEnoughFreeCapacityIssue">
* <complexContent>
* <extension base="{urn:vim25}VsanUpgradeSystemPreflightCheckIssue">
* <sequence>
* <element name="reducedRedundancyUpgradePossible" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VsanUpgradeSystemNotEnoughFreeCapacityIssue", propOrder = {
"reducedRedundancyUpgradePossible"
})
public class VsanUpgradeSystemNotEnoughFreeCapacityIssue
extends VsanUpgradeSystemPreflightCheckIssue
{
protected boolean reducedRedundancyUpgradePossible;
/**
* Gets the value of the reducedRedundancyUpgradePossible property.
*
*/
public boolean isReducedRedundancyUpgradePossible() {
return reducedRedundancyUpgradePossible;
}
/**
* Sets the value of the reducedRedundancyUpgradePossible property.
*
*/
public void setReducedRedundancyUpgradePossible(boolean value) {
this.reducedRedundancyUpgradePossible = value;
}
}