
com.vmware.vim.InvalidDeviceSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for InvalidDeviceSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InvalidDeviceSpec">
* <complexContent>
* <extension base="{urn:vim2}InvalidVmConfig">
* <sequence>
* <element name="deviceIndex" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InvalidDeviceSpec", propOrder = {
"deviceIndex"
})
@XmlSeeAlso({
InvalidDeviceOperation.class,
InvalidDeviceBacking.class,
InvalidController.class,
DeviceNotFound.class,
MissingController.class,
DisallowedDiskModeChange.class
})
public class InvalidDeviceSpec
extends InvalidVmConfig
{
protected int deviceIndex;
/**
* Gets the value of the deviceIndex property.
*
*/
public int getDeviceIndex() {
return deviceIndex;
}
/**
* Sets the value of the deviceIndex property.
*
*/
public void setDeviceIndex(int value) {
this.deviceIndex = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy