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

com.vmware.vim25.VAppCloneSpecResourceMap 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VAppCloneSpecResourceMap complex type. * *

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

 * <complexType name="VAppCloneSpecResourceMap">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="source" type="{urn:vim25}ManagedObjectReference"/>
 *         <element name="parent" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
 *         <element name="resourceSpec" type="{urn:vim25}ResourceConfigSpec" minOccurs="0"/>
 *         <element name="location" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VAppCloneSpecResourceMap", propOrder = { "source", "parent", "resourceSpec", "location" }) public class VAppCloneSpecResourceMap extends DynamicData { @XmlElement(required = true) protected ManagedObjectReference source; protected ManagedObjectReference parent; protected ResourceConfigSpec resourceSpec; protected ManagedObjectReference location; /** * Gets the value of the source property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getSource() { return source; } /** * Sets the value of the source property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setSource(ManagedObjectReference value) { this.source = value; } /** * Gets the value of the parent property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getParent() { return parent; } /** * Sets the value of the parent property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setParent(ManagedObjectReference value) { this.parent = value; } /** * Gets the value of the resourceSpec property. * * @return * possible object is * {@link ResourceConfigSpec } * */ public ResourceConfigSpec getResourceSpec() { return resourceSpec; } /** * Sets the value of the resourceSpec property. * * @param value * allowed object is * {@link ResourceConfigSpec } * */ public void setResourceSpec(ResourceConfigSpec value) { this.resourceSpec = value; } /** * Gets the value of the location property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setLocation(ManagedObjectReference value) { this.location = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy