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

com.vmware.vim25.ClusterVmHostRuleInfo 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 ClusterVmHostRuleInfo complex type. * *

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

 * <complexType name="ClusterVmHostRuleInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}ClusterRuleInfo">
 *       <sequence>
 *         <element name="vmGroupName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="affineHostGroupName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="antiAffineHostGroupName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClusterVmHostRuleInfo", propOrder = { "vmGroupName", "affineHostGroupName", "antiAffineHostGroupName" }) public class ClusterVmHostRuleInfo extends ClusterRuleInfo { protected String vmGroupName; protected String affineHostGroupName; protected String antiAffineHostGroupName; /** * Gets the value of the vmGroupName property. * * @return * possible object is * {@link String } * */ public String getVmGroupName() { return vmGroupName; } /** * Sets the value of the vmGroupName property. * * @param value * allowed object is * {@link String } * */ public void setVmGroupName(String value) { this.vmGroupName = value; } /** * Gets the value of the affineHostGroupName property. * * @return * possible object is * {@link String } * */ public String getAffineHostGroupName() { return affineHostGroupName; } /** * Sets the value of the affineHostGroupName property. * * @param value * allowed object is * {@link String } * */ public void setAffineHostGroupName(String value) { this.affineHostGroupName = value; } /** * Gets the value of the antiAffineHostGroupName property. * * @return * possible object is * {@link String } * */ public String getAntiAffineHostGroupName() { return antiAffineHostGroupName; } /** * Sets the value of the antiAffineHostGroupName property. * * @param value * allowed object is * {@link String } * */ public void setAntiAffineHostGroupName(String value) { this.antiAffineHostGroupName = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy