![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.PodStorageDrsEntry Maven / Gradle / Ivy
package com.vmware.vim25;
import java.util.ArrayList;
import java.util.List;
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 PodStorageDrsEntry complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PodStorageDrsEntry">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="storageDrsConfig" type="{urn:vim25}StorageDrsConfigInfo"/>
* <element name="recommendation" type="{urn:vim25}ClusterRecommendation" maxOccurs="unbounded" minOccurs="0"/>
* <element name="drsFault" type="{urn:vim25}ClusterDrsFaults" maxOccurs="unbounded" minOccurs="0"/>
* <element name="actionHistory" type="{urn:vim25}ClusterActionHistory" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PodStorageDrsEntry", propOrder = {
"storageDrsConfig",
"recommendation",
"drsFault",
"actionHistory"
})
public class PodStorageDrsEntry
extends DynamicData
{
@XmlElement(required = true)
protected StorageDrsConfigInfo storageDrsConfig;
protected List recommendation;
protected List drsFault;
protected List actionHistory;
/**
* Gets the value of the storageDrsConfig property.
*
* @return
* possible object is
* {@link StorageDrsConfigInfo }
*
*/
public StorageDrsConfigInfo getStorageDrsConfig() {
return storageDrsConfig;
}
/**
* Sets the value of the storageDrsConfig property.
*
* @param value
* allowed object is
* {@link StorageDrsConfigInfo }
*
*/
public void setStorageDrsConfig(StorageDrsConfigInfo value) {
this.storageDrsConfig = value;
}
/**
* Gets the value of the recommendation property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the recommendation property.
*
*
* For example, to add a new item, do as follows:
*
* getRecommendation().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterRecommendation }
*
*
*/
public List getRecommendation() {
if (recommendation == null) {
recommendation = new ArrayList();
}
return this.recommendation;
}
/**
* Gets the value of the drsFault property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the drsFault property.
*
*
* For example, to add a new item, do as follows:
*
* getDrsFault().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterDrsFaults }
*
*
*/
public List getDrsFault() {
if (drsFault == null) {
drsFault = new ArrayList();
}
return this.drsFault;
}
/**
* Gets the value of the actionHistory property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the actionHistory property.
*
*
* For example, to add a new item, do as follows:
*
* getActionHistory().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterActionHistory }
*
*
*/
public List getActionHistory() {
if (actionHistory == null) {
actionHistory = new ArrayList();
}
return this.actionHistory;
}
}