
com.vmware.vim.HostSnmpConfig 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 HostSnmpConfig complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostSnmpConfig">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="autoStartMasterSnmpAgentEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="startupScript" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="configFile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="vmwareSubagentEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="vmwareTrapsEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostSnmpConfig", propOrder = {
"autoStartMasterSnmpAgentEnabled",
"startupScript",
"configFile",
"vmwareSubagentEnabled",
"vmwareTrapsEnabled"
})
public class HostSnmpConfig
extends DynamicData
{
protected Boolean autoStartMasterSnmpAgentEnabled;
protected String startupScript;
protected String configFile;
protected Boolean vmwareSubagentEnabled;
protected Boolean vmwareTrapsEnabled;
/**
* Gets the value of the autoStartMasterSnmpAgentEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAutoStartMasterSnmpAgentEnabled() {
return autoStartMasterSnmpAgentEnabled;
}
/**
* Sets the value of the autoStartMasterSnmpAgentEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAutoStartMasterSnmpAgentEnabled(Boolean value) {
this.autoStartMasterSnmpAgentEnabled = value;
}
/**
* Gets the value of the startupScript property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStartupScript() {
return startupScript;
}
/**
* Sets the value of the startupScript property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStartupScript(String value) {
this.startupScript = value;
}
/**
* Gets the value of the configFile property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConfigFile() {
return configFile;
}
/**
* Sets the value of the configFile property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConfigFile(String value) {
this.configFile = value;
}
/**
* Gets the value of the vmwareSubagentEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isVmwareSubagentEnabled() {
return vmwareSubagentEnabled;
}
/**
* Sets the value of the vmwareSubagentEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setVmwareSubagentEnabled(Boolean value) {
this.vmwareSubagentEnabled = value;
}
/**
* Gets the value of the vmwareTrapsEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isVmwareTrapsEnabled() {
return vmwareTrapsEnabled;
}
/**
* Sets the value of the vmwareTrapsEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setVmwareTrapsEnabled(Boolean value) {
this.vmwareTrapsEnabled = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy