![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.DatastoreSummary Maven / Gradle / Ivy
package com.vmware.vim25;
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 DatastoreSummary complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DatastoreSummary">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="datastore" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="capacity" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="freeSpace" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="uncommitted" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="accessible" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="multipleHostAccess" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="maintenanceMode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DatastoreSummary", propOrder = {
"datastore",
"name",
"url",
"capacity",
"freeSpace",
"uncommitted",
"accessible",
"multipleHostAccess",
"type",
"maintenanceMode"
})
public class DatastoreSummary
extends DynamicData
{
protected ManagedObjectReference datastore;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String url;
protected long capacity;
protected long freeSpace;
protected Long uncommitted;
protected boolean accessible;
protected Boolean multipleHostAccess;
@XmlElement(required = true)
protected String type;
protected String maintenanceMode;
/**
* Gets the value of the datastore property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getDatastore() {
return datastore;
}
/**
* Sets the value of the datastore property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setDatastore(ManagedObjectReference value) {
this.datastore = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the url property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrl() {
return url;
}
/**
* Sets the value of the url property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrl(String value) {
this.url = value;
}
/**
* Gets the value of the capacity property.
*
*/
public long getCapacity() {
return capacity;
}
/**
* Sets the value of the capacity property.
*
*/
public void setCapacity(long value) {
this.capacity = value;
}
/**
* Gets the value of the freeSpace property.
*
*/
public long getFreeSpace() {
return freeSpace;
}
/**
* Sets the value of the freeSpace property.
*
*/
public void setFreeSpace(long value) {
this.freeSpace = value;
}
/**
* Gets the value of the uncommitted property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getUncommitted() {
return uncommitted;
}
/**
* Sets the value of the uncommitted property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setUncommitted(Long value) {
this.uncommitted = value;
}
/**
* Gets the value of the accessible property.
*
*/
public boolean isAccessible() {
return accessible;
}
/**
* Sets the value of the accessible property.
*
*/
public void setAccessible(boolean value) {
this.accessible = value;
}
/**
* Gets the value of the multipleHostAccess property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isMultipleHostAccess() {
return multipleHostAccess;
}
/**
* Sets the value of the multipleHostAccess property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setMultipleHostAccess(Boolean value) {
this.multipleHostAccess = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the maintenanceMode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMaintenanceMode() {
return maintenanceMode;
}
/**
* Sets the value of the maintenanceMode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMaintenanceMode(String value) {
this.maintenanceMode = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy