
com.vmware.vim.VirtualMachineFileInfo 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.XmlType;
/**
* Java class for VirtualMachineFileInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineFileInfo">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="vmPathName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="snapshotDirectory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="suspendDirectory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="logDirectory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineFileInfo", propOrder = {
"vmPathName",
"snapshotDirectory",
"suspendDirectory",
"logDirectory"
})
public class VirtualMachineFileInfo
extends DynamicData
{
protected String vmPathName;
protected String snapshotDirectory;
protected String suspendDirectory;
protected String logDirectory;
/**
* Gets the value of the vmPathName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVmPathName() {
return vmPathName;
}
/**
* Sets the value of the vmPathName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVmPathName(String value) {
this.vmPathName = value;
}
/**
* Gets the value of the snapshotDirectory property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSnapshotDirectory() {
return snapshotDirectory;
}
/**
* Sets the value of the snapshotDirectory property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSnapshotDirectory(String value) {
this.snapshotDirectory = value;
}
/**
* Gets the value of the suspendDirectory property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSuspendDirectory() {
return suspendDirectory;
}
/**
* Sets the value of the suspendDirectory property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSuspendDirectory(String value) {
this.suspendDirectory = value;
}
/**
* Gets the value of the logDirectory property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLogDirectory() {
return logDirectory;
}
/**
* Sets the value of the logDirectory property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLogDirectory(String value) {
this.logDirectory = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy