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

com.vmware.vim25.StorageDrsVmConfigSpec 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.XmlType;


/**
 * 

Java class for StorageDrsVmConfigSpec complex type. * *

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy