![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.ClusterRuleInfo Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ClusterRuleInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClusterRuleInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="key" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="status" type="{urn:vim25}ManagedEntityStatus" minOccurs="0"/>
* <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="mandatory" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="userCreated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="inCompliance" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="ruleUuid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClusterRuleInfo", propOrder = {
"key",
"status",
"enabled",
"name",
"mandatory",
"userCreated",
"inCompliance",
"ruleUuid"
})
@XmlSeeAlso({
ClusterAffinityRuleSpec.class,
ClusterAntiAffinityRuleSpec.class,
ClusterDependencyRuleInfo.class,
ClusterVmHostRuleInfo.class,
VirtualDiskAntiAffinityRuleSpec.class
})
public class ClusterRuleInfo
extends DynamicData
{
protected Integer key;
@XmlSchemaType(name = "string")
protected ManagedEntityStatus status;
protected Boolean enabled;
protected String name;
protected Boolean mandatory;
protected Boolean userCreated;
protected Boolean inCompliance;
protected String ruleUuid;
/**
* Gets the value of the key property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getKey() {
return key;
}
/**
* Sets the value of the key property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setKey(Integer value) {
this.key = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link ManagedEntityStatus }
*
*/
public ManagedEntityStatus getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link ManagedEntityStatus }
*
*/
public void setStatus(ManagedEntityStatus value) {
this.status = value;
}
/**
* Gets the value of the enabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEnabled() {
return enabled;
}
/**
* Sets the value of the enabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEnabled(Boolean value) {
this.enabled = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the mandatory property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isMandatory() {
return mandatory;
}
/**
* Sets the value of the mandatory property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setMandatory(Boolean value) {
this.mandatory = value;
}
/**
* Gets the value of the userCreated property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isUserCreated() {
return userCreated;
}
/**
* Sets the value of the userCreated property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUserCreated(Boolean value) {
this.userCreated = value;
}
/**
* Gets the value of the inCompliance property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isInCompliance() {
return inCompliance;
}
/**
* Sets the value of the inCompliance property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setInCompliance(Boolean value) {
this.inCompliance = value;
}
/**
* Gets the value of the ruleUuid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRuleUuid() {
return ruleUuid;
}
/**
* Sets the value of the ruleUuid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRuleUuid(String value) {
this.ruleUuid = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy