
com.vmware.vim.VirtualMachineDatastoreInfo 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for VirtualMachineDatastoreInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineDatastoreInfo">
* <complexContent>
* <extension base="{urn:vim2}VirtualMachineTargetInfo">
* <sequence>
* <element name="datastore" type="{urn:vim2}DatastoreSummary"/>
* <element name="capability" type="{urn:vim2}DatastoreCapability"/>
* <element name="maxFileSize" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="mode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineDatastoreInfo", propOrder = {
"datastore",
"capability",
"maxFileSize",
"mode"
})
public class VirtualMachineDatastoreInfo
extends VirtualMachineTargetInfo
{
@XmlElement(required = true)
protected DatastoreSummary datastore;
@XmlElement(required = true)
protected DatastoreCapability capability;
protected long maxFileSize;
@XmlElement(required = true)
protected String mode;
/**
* Gets the value of the datastore property.
*
* @return
* possible object is
* {@link DatastoreSummary }
*
*/
public DatastoreSummary getDatastore() {
return datastore;
}
/**
* Sets the value of the datastore property.
*
* @param value
* allowed object is
* {@link DatastoreSummary }
*
*/
public void setDatastore(DatastoreSummary value) {
this.datastore = value;
}
/**
* Gets the value of the capability property.
*
* @return
* possible object is
* {@link DatastoreCapability }
*
*/
public DatastoreCapability getCapability() {
return capability;
}
/**
* Sets the value of the capability property.
*
* @param value
* allowed object is
* {@link DatastoreCapability }
*
*/
public void setCapability(DatastoreCapability value) {
this.capability = value;
}
/**
* Gets the value of the maxFileSize property.
*
*/
public long getMaxFileSize() {
return maxFileSize;
}
/**
* Sets the value of the maxFileSize property.
*
*/
public void setMaxFileSize(long value) {
this.maxFileSize = value;
}
/**
* Gets the value of the mode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMode() {
return mode;
}
/**
* Sets the value of the mode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMode(String value) {
this.mode = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy