com.vmware.vim25.VsanHostConfigInfoStorageInfo 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.XmlType;
/**
* Java class for VsanHostConfigInfoStorageInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VsanHostConfigInfoStorageInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="autoClaimStorage" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="diskMapping" type="{urn:vim25}VsanHostDiskMapping" maxOccurs="unbounded" minOccurs="0"/>
* <element name="diskMapInfo" type="{urn:vim25}VsanHostDiskMapInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="checksumEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VsanHostConfigInfoStorageInfo", propOrder = {
"autoClaimStorage",
"diskMapping",
"diskMapInfo",
"checksumEnabled"
})
public class VsanHostConfigInfoStorageInfo
extends DynamicData
{
protected Boolean autoClaimStorage;
protected List diskMapping;
protected List diskMapInfo;
protected Boolean checksumEnabled;
/**
* Gets the value of the autoClaimStorage property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAutoClaimStorage() {
return autoClaimStorage;
}
/**
* Sets the value of the autoClaimStorage property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAutoClaimStorage(Boolean value) {
this.autoClaimStorage = value;
}
/**
* Gets the value of the diskMapping 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 diskMapping property.
*
*
* For example, to add a new item, do as follows:
*
* getDiskMapping().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VsanHostDiskMapping }
*
*
*/
public List getDiskMapping() {
if (diskMapping == null) {
diskMapping = new ArrayList();
}
return this.diskMapping;
}
/**
* Gets the value of the diskMapInfo 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 diskMapInfo property.
*
*
* For example, to add a new item, do as follows:
*
* getDiskMapInfo().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VsanHostDiskMapInfo }
*
*
*/
public List getDiskMapInfo() {
if (diskMapInfo == null) {
diskMapInfo = new ArrayList();
}
return this.diskMapInfo;
}
/**
* Gets the value of the checksumEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isChecksumEnabled() {
return checksumEnabled;
}
/**
* Sets the value of the checksumEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setChecksumEnabled(Boolean value) {
this.checksumEnabled = value;
}
}