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

com.vmware.vim.VirtualDeviceConfigSpec Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

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 VirtualDeviceConfigSpec complex type. * *

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

 * <complexType name="VirtualDeviceConfigSpec">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="operation" type="{urn:vim2}VirtualDeviceConfigSpecOperation" minOccurs="0"/>
 *         <element name="fileOperation" type="{urn:vim2}VirtualDeviceConfigSpecFileOperation" minOccurs="0"/>
 *         <element name="device" type="{urn:vim2}VirtualDevice"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualDeviceConfigSpec", propOrder = { "operation", "fileOperation", "device" }) public class VirtualDeviceConfigSpec extends DynamicData { protected VirtualDeviceConfigSpecOperation operation; protected VirtualDeviceConfigSpecFileOperation fileOperation; @XmlElement(required = true) protected VirtualDevice device; /** * Gets the value of the operation property. * * @return * possible object is * {@link VirtualDeviceConfigSpecOperation } * */ public VirtualDeviceConfigSpecOperation getOperation() { return operation; } /** * Sets the value of the operation property. * * @param value * allowed object is * {@link VirtualDeviceConfigSpecOperation } * */ public void setOperation(VirtualDeviceConfigSpecOperation value) { this.operation = value; } /** * Gets the value of the fileOperation property. * * @return * possible object is * {@link VirtualDeviceConfigSpecFileOperation } * */ public VirtualDeviceConfigSpecFileOperation getFileOperation() { return fileOperation; } /** * Sets the value of the fileOperation property. * * @param value * allowed object is * {@link VirtualDeviceConfigSpecFileOperation } * */ public void setFileOperation(VirtualDeviceConfigSpecFileOperation value) { this.fileOperation = value; } /** * Gets the value of the device property. * * @return * possible object is * {@link VirtualDevice } * */ public VirtualDevice getDevice() { return device; } /** * Sets the value of the device property. * * @param value * allowed object is * {@link VirtualDevice } * */ public void setDevice(VirtualDevice value) { this.device = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy