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

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

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

 * <complexType name="VmFaultToleranceTooManyVMsOnHost">
 *   <complexContent>
 *     <extension base="{urn:vim25}InsufficientResourcesFault">
 *       <sequence>
 *         <element name="hostName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="maxNumFtVms" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VmFaultToleranceTooManyVMsOnHost", propOrder = { "hostName", "maxNumFtVms" }) public class VmFaultToleranceTooManyVMsOnHost extends InsufficientResourcesFault { protected String hostName; protected int maxNumFtVms; /** * Gets the value of the hostName property. * * @return * possible object is * {@link String } * */ public String getHostName() { return hostName; } /** * Sets the value of the hostName property. * * @param value * allowed object is * {@link String } * */ public void setHostName(String value) { this.hostName = value; } /** * Gets the value of the maxNumFtVms property. * */ public int getMaxNumFtVms() { return maxNumFtVms; } /** * Sets the value of the maxNumFtVms property. * */ public void setMaxNumFtVms(int value) { this.maxNumFtVms = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy