
com.vmware.vim25.ToolsConfigInfo 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.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ToolsConfigInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ToolsConfigInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="toolsVersion" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="afterPowerOn" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="afterResume" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="beforeGuestStandby" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="beforeGuestShutdown" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="beforeGuestReboot" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="toolsUpgradePolicy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="pendingCustomization" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="syncTimeWithHost" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ToolsConfigInfo", propOrder = {
"toolsVersion",
"afterPowerOn",
"afterResume",
"beforeGuestStandby",
"beforeGuestShutdown",
"beforeGuestReboot",
"toolsUpgradePolicy",
"pendingCustomization",
"syncTimeWithHost"
})
public class ToolsConfigInfo
extends DynamicData
{
protected Integer toolsVersion;
protected Boolean afterPowerOn;
protected Boolean afterResume;
protected Boolean beforeGuestStandby;
protected Boolean beforeGuestShutdown;
protected Boolean beforeGuestReboot;
protected String toolsUpgradePolicy;
protected String pendingCustomization;
protected Boolean syncTimeWithHost;
/**
* Gets the value of the toolsVersion property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getToolsVersion() {
return toolsVersion;
}
/**
* Sets the value of the toolsVersion property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setToolsVersion(Integer value) {
this.toolsVersion = value;
}
/**
* Gets the value of the afterPowerOn property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAfterPowerOn() {
return afterPowerOn;
}
/**
* Sets the value of the afterPowerOn property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAfterPowerOn(Boolean value) {
this.afterPowerOn = value;
}
/**
* Gets the value of the afterResume property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAfterResume() {
return afterResume;
}
/**
* Sets the value of the afterResume property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAfterResume(Boolean value) {
this.afterResume = value;
}
/**
* Gets the value of the beforeGuestStandby property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isBeforeGuestStandby() {
return beforeGuestStandby;
}
/**
* Sets the value of the beforeGuestStandby property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setBeforeGuestStandby(Boolean value) {
this.beforeGuestStandby = value;
}
/**
* Gets the value of the beforeGuestShutdown property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isBeforeGuestShutdown() {
return beforeGuestShutdown;
}
/**
* Sets the value of the beforeGuestShutdown property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setBeforeGuestShutdown(Boolean value) {
this.beforeGuestShutdown = value;
}
/**
* Gets the value of the beforeGuestReboot property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isBeforeGuestReboot() {
return beforeGuestReboot;
}
/**
* Sets the value of the beforeGuestReboot property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setBeforeGuestReboot(Boolean value) {
this.beforeGuestReboot = value;
}
/**
* Gets the value of the toolsUpgradePolicy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getToolsUpgradePolicy() {
return toolsUpgradePolicy;
}
/**
* Sets the value of the toolsUpgradePolicy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setToolsUpgradePolicy(String value) {
this.toolsUpgradePolicy = value;
}
/**
* Gets the value of the pendingCustomization property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPendingCustomization() {
return pendingCustomization;
}
/**
* Sets the value of the pendingCustomization property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPendingCustomization(String value) {
this.pendingCustomization = value;
}
/**
* Gets the value of the syncTimeWithHost property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSyncTimeWithHost() {
return syncTimeWithHost;
}
/**
* Sets the value of the syncTimeWithHost property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSyncTimeWithHost(Boolean value) {
this.syncTimeWithHost = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy