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

com.vmware.vim25.ClusterRuleInfo 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.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"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClusterRuleInfo", propOrder = { "key", "status", "enabled", "name" }) @XmlSeeAlso({ ClusterAffinityRuleSpec.class, ClusterAntiAffinityRuleSpec.class }) public class ClusterRuleInfo extends DynamicData { protected Integer key; protected ManagedEntityStatus status; protected Boolean enabled; protected String name; /** * 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy