![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.ClusterDrsFaultsFaultsByVirtualDisk 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 ClusterDrsFaultsFaultsByVirtualDisk complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClusterDrsFaultsFaultsByVirtualDisk">
* <complexContent>
* <extension base="{urn:vim25}ClusterDrsFaultsFaultsByVm">
* <sequence>
* <element name="disk" type="{urn:vim25}VirtualDiskId" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClusterDrsFaultsFaultsByVirtualDisk", propOrder = {
"disk"
})
public class ClusterDrsFaultsFaultsByVirtualDisk
extends ClusterDrsFaultsFaultsByVm
{
protected VirtualDiskId disk;
/**
* Gets the value of the disk property.
*
* @return
* possible object is
* {@link VirtualDiskId }
*
*/
public VirtualDiskId getDisk() {
return disk;
}
/**
* Sets the value of the disk property.
*
* @param value
* allowed object is
* {@link VirtualDiskId }
*
*/
public void setDisk(VirtualDiskId value) {
this.disk = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy