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

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

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

 * <complexType name="ClusterMigrationAction">
 *   <complexContent>
 *     <extension base="{urn:vim25}ClusterAction">
 *       <sequence>
 *         <element name="drsMigration" type="{urn:vim25}ClusterDrsMigration" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClusterMigrationAction", propOrder = { "drsMigration" }) public class ClusterMigrationAction extends ClusterAction { protected ClusterDrsMigration drsMigration; /** * Gets the value of the drsMigration property. * * @return * possible object is * {@link ClusterDrsMigration } * */ public ClusterDrsMigration getDrsMigration() { return drsMigration; } /** * Sets the value of the drsMigration property. * * @param value * allowed object is * {@link ClusterDrsMigration } * */ public void setDrsMigration(ClusterDrsMigration value) { this.drsMigration = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy