f5-icontrol 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (253) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/.travis.yml +5 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE +9 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +55 -0
  8. data/Rakefile +7 -0
  9. data/bin/f5 +6 -0
  10. data/f5-icontrol.gemspec +30 -0
  11. data/lib/f5/cli/application.rb +102 -0
  12. data/lib/f5/cli/config.rb +21 -0
  13. data/lib/f5/icontrol.rb +40 -0
  14. data/lib/f5/icontrol/local_lb/node_address_v2.rb +27 -0
  15. data/lib/f5/icontrol/local_lb/pool.rb +27 -0
  16. data/lib/f5/icontrol/system/system_info.rb +27 -0
  17. data/lib/f5/icontrol/version.rb +5 -0
  18. data/lib/wsdl/ASM.LoggingProfile.wsdl +1467 -0
  19. data/lib/wsdl/ASM.ObjectParams.wsdl +198 -0
  20. data/lib/wsdl/ASM.PSMProfile.wsdl +228 -0
  21. data/lib/wsdl/ASM.Policy.wsdl +3504 -0
  22. data/lib/wsdl/ASM.PolicyGroup.wsdl +389 -0
  23. data/lib/wsdl/ASM.SystemConfiguration.wsdl +730 -0
  24. data/lib/wsdl/ASM.WebApplication.wsdl +1138 -0
  25. data/lib/wsdl/ASM.WebApplicationGroup.wsdl +393 -0
  26. data/lib/wsdl/Classification.Application.wsdl +517 -0
  27. data/lib/wsdl/Classification.Category.wsdl +519 -0
  28. data/lib/wsdl/Classification.SignatureDefinition.wsdl +541 -0
  29. data/lib/wsdl/Classification.SignatureUpdateSchedule.wsdl +382 -0
  30. data/lib/wsdl/Classification.SignatureVersion.wsdl +233 -0
  31. data/lib/wsdl/GlobalLB.Application.wsdl +963 -0
  32. data/lib/wsdl/GlobalLB.DNSSECKey.wsdl +1642 -0
  33. data/lib/wsdl/GlobalLB.DNSSECZone.wsdl +825 -0
  34. data/lib/wsdl/GlobalLB.DataCenter.wsdl +7144 -0
  35. data/lib/wsdl/GlobalLB.Globals.wsdl +5513 -0
  36. data/lib/wsdl/GlobalLB.Link.wsdl +7654 -0
  37. data/lib/wsdl/GlobalLB.Monitor.wsdl +2228 -0
  38. data/lib/wsdl/GlobalLB.Pool.wsdl +9949 -0
  39. data/lib/wsdl/GlobalLB.PoolMember.wsdl +6939 -0
  40. data/lib/wsdl/GlobalLB.ProberPool.wsdl +7026 -0
  41. data/lib/wsdl/GlobalLB.Region.wsdl +560 -0
  42. data/lib/wsdl/GlobalLB.Rule.wsdl +6632 -0
  43. data/lib/wsdl/GlobalLB.Server.wsdl +8234 -0
  44. data/lib/wsdl/GlobalLB.Topology.wsdl +548 -0
  45. data/lib/wsdl/GlobalLB.VirtualServer.wsdl +6916 -0
  46. data/lib/wsdl/GlobalLB.VirtualServerV2.wsdl +7016 -0
  47. data/lib/wsdl/GlobalLB.WideIP.wsdl +8154 -0
  48. data/lib/wsdl/LTConfig.Class.wsdl +656 -0
  49. data/lib/wsdl/LTConfig.Field.wsdl +679 -0
  50. data/lib/wsdl/LocalLB.Class.wsdl +2153 -0
  51. data/lib/wsdl/LocalLB.DNSCache.wsdl +8380 -0
  52. data/lib/wsdl/LocalLB.DNSExpress.wsdl +6972 -0
  53. data/lib/wsdl/LocalLB.DNSGlobals.wsdl +457 -0
  54. data/lib/wsdl/LocalLB.DataGroupFile.wsdl +971 -0
  55. data/lib/wsdl/LocalLB.LSNPool.wsdl +7461 -0
  56. data/lib/wsdl/LocalLB.Monitor.wsdl +2214 -0
  57. data/lib/wsdl/LocalLB.NAT.wsdl +6413 -0
  58. data/lib/wsdl/LocalLB.NATV2.wsdl +6748 -0
  59. data/lib/wsdl/LocalLB.NodeAddress.wsdl +7143 -0
  60. data/lib/wsdl/LocalLB.NodeAddressV2.wsdl +7754 -0
  61. data/lib/wsdl/LocalLB.Pool.wsdl +11328 -0
  62. data/lib/wsdl/LocalLB.PoolMember.wsdl +7156 -0
  63. data/lib/wsdl/LocalLB.ProfileAnalytics.wsdl +5756 -0
  64. data/lib/wsdl/LocalLB.ProfileAuth.wsdl +6957 -0
  65. data/lib/wsdl/LocalLB.ProfileClassification.wsdl +370 -0
  66. data/lib/wsdl/LocalLB.ProfileClientSSL.wsdl +10232 -0
  67. data/lib/wsdl/LocalLB.ProfileDNS.wsdl +7723 -0
  68. data/lib/wsdl/LocalLB.ProfileDNSLogging.wsdl +852 -0
  69. data/lib/wsdl/LocalLB.ProfileDiameter.wsdl +8070 -0
  70. data/lib/wsdl/LocalLB.ProfileDiameterEndpoint.wsdl +7199 -0
  71. data/lib/wsdl/LocalLB.ProfileFTP.wsdl +6564 -0
  72. data/lib/wsdl/LocalLB.ProfileFastHttp.wsdl +7944 -0
  73. data/lib/wsdl/LocalLB.ProfileFastL4.wsdl +8235 -0
  74. data/lib/wsdl/LocalLB.ProfileHttp.wsdl +12256 -0
  75. data/lib/wsdl/LocalLB.ProfileHttpClass.wsdl +7414 -0
  76. data/lib/wsdl/LocalLB.ProfileHttpCompression.wsdl +8166 -0
  77. data/lib/wsdl/LocalLB.ProfileICAP.wsdl +6917 -0
  78. data/lib/wsdl/LocalLB.ProfileIIOP.wsdl +6726 -0
  79. data/lib/wsdl/LocalLB.ProfileOneConnect.wsdl +6784 -0
  80. data/lib/wsdl/LocalLB.ProfilePersistence.wsdl +2740 -0
  81. data/lib/wsdl/LocalLB.ProfileRADIUS.wsdl +6696 -0
  82. data/lib/wsdl/LocalLB.ProfileRTSP.wsdl +7424 -0
  83. data/lib/wsdl/LocalLB.ProfileRequestAdapt.wsdl +7041 -0
  84. data/lib/wsdl/LocalLB.ProfileRequestLogging.wsdl +2042 -0
  85. data/lib/wsdl/LocalLB.ProfileResponseAdapt.wsdl +7041 -0
  86. data/lib/wsdl/LocalLB.ProfileSCTP.wsdl +7887 -0
  87. data/lib/wsdl/LocalLB.ProfileSIP.wsdl +7866 -0
  88. data/lib/wsdl/LocalLB.ProfileSPDY.wsdl +7489 -0
  89. data/lib/wsdl/LocalLB.ProfileSPM.wsdl +953 -0
  90. data/lib/wsdl/LocalLB.ProfileServerSSL.wsdl +9566 -0
  91. data/lib/wsdl/LocalLB.ProfileStream.wsdl +6561 -0
  92. data/lib/wsdl/LocalLB.ProfileTCP.wsdl +9869 -0
  93. data/lib/wsdl/LocalLB.ProfileUDP.wsdl +6948 -0
  94. data/lib/wsdl/LocalLB.ProfileUserStatistic.wsdl +916 -0
  95. data/lib/wsdl/LocalLB.ProfileWebAcceleration.wsdl +8213 -0
  96. data/lib/wsdl/LocalLB.ProfileXML.wsdl +7022 -0
  97. data/lib/wsdl/LocalLB.RAMCacheInformation.wsdl +372 -0
  98. data/lib/wsdl/LocalLB.RateClass.wsdl +9480 -0
  99. data/lib/wsdl/LocalLB.Rule.wsdl +7033 -0
  100. data/lib/wsdl/LocalLB.SNAT.wsdl +7262 -0
  101. data/lib/wsdl/LocalLB.SNATPool.wsdl +6606 -0
  102. data/lib/wsdl/LocalLB.SNATPoolMember.wsdl +5960 -0
  103. data/lib/wsdl/LocalLB.SNATTranslationAddress.wsdl +6599 -0
  104. data/lib/wsdl/LocalLB.SNATTranslationAddressV2.wsdl +6760 -0
  105. data/lib/wsdl/LocalLB.VirtualAddress.wsdl +6676 -0
  106. data/lib/wsdl/LocalLB.VirtualAddressV2.wsdl +7539 -0
  107. data/lib/wsdl/LocalLB.VirtualServer.wsdl +14758 -0
  108. data/lib/wsdl/LocalLB.iFile.wsdl +302 -0
  109. data/lib/wsdl/LocalLB.iFileFile.wsdl +712 -0
  110. data/lib/wsdl/Log.DestinationArcSight.wsdl +377 -0
  111. data/lib/wsdl/Log.DestinationLocalSyslog.wsdl +469 -0
  112. data/lib/wsdl/Log.DestinationRemoteHighSpeedLog.wsdl +486 -0
  113. data/lib/wsdl/Log.DestinationRemoteSyslog.wsdl +751 -0
  114. data/lib/wsdl/Log.DestinationSplunk.wsdl +377 -0
  115. data/lib/wsdl/Log.Filter.wsdl +1175 -0
  116. data/lib/wsdl/Log.Publisher.wsdl +448 -0
  117. data/lib/wsdl/Management.ApplicationPresentationScript.wsdl +698 -0
  118. data/lib/wsdl/Management.ApplicationService.wsdl +1804 -0
  119. data/lib/wsdl/Management.ApplicationTemplate.wsdl +1323 -0
  120. data/lib/wsdl/Management.CCLDAPConfiguration.wsdl +1637 -0
  121. data/lib/wsdl/Management.CLIScript.wsdl +684 -0
  122. data/lib/wsdl/Management.CRLDPConfiguration.wsdl +763 -0
  123. data/lib/wsdl/Management.CRLDPServer.wsdl +626 -0
  124. data/lib/wsdl/Management.CertLDAPConfiguration.wsdl +2453 -0
  125. data/lib/wsdl/Management.ChangeControl.wsdl +735 -0
  126. data/lib/wsdl/Management.DBVariable.wsdl +352 -0
  127. data/lib/wsdl/Management.Device.wsdl +1697 -0
  128. data/lib/wsdl/Management.DeviceGroup.wsdl +1241 -0
  129. data/lib/wsdl/Management.EM.wsdl +456 -0
  130. data/lib/wsdl/Management.EventNotification.wsdl +1031 -0
  131. data/lib/wsdl/Management.EventSubscription.wsdl +1542 -0
  132. data/lib/wsdl/Management.FeatureModule.wsdl +424 -0
  133. data/lib/wsdl/Management.Folder.wsdl +635 -0
  134. data/lib/wsdl/Management.Globals.wsdl +166 -0
  135. data/lib/wsdl/Management.KeyCertificate.wsdl +2027 -0
  136. data/lib/wsdl/Management.LDAPConfiguration.wsdl +2645 -0
  137. data/lib/wsdl/Management.LicenseAdministration.wsdl +906 -0
  138. data/lib/wsdl/Management.Named.wsdl +740 -0
  139. data/lib/wsdl/Management.OCSPConfiguration.wsdl +447 -0
  140. data/lib/wsdl/Management.OCSPResponder.wsdl +2370 -0
  141. data/lib/wsdl/Management.Partition.wsdl +545 -0
  142. data/lib/wsdl/Management.Provision.wsdl +743 -0
  143. data/lib/wsdl/Management.RADIUSConfiguration.wsdl +951 -0
  144. data/lib/wsdl/Management.RADIUSServer.wsdl +602 -0
  145. data/lib/wsdl/Management.ResourceRecord.wsdl +2168 -0
  146. data/lib/wsdl/Management.SFlowDataSource.wsdl +776 -0
  147. data/lib/wsdl/Management.SFlowGlobals.wsdl +826 -0
  148. data/lib/wsdl/Management.SFlowReceiver.wsdl +694 -0
  149. data/lib/wsdl/Management.SMTPConfiguration.wsdl +854 -0
  150. data/lib/wsdl/Management.SNMPConfiguration.wsdl +4672 -0
  151. data/lib/wsdl/Management.TACACSConfiguration.wsdl +943 -0
  152. data/lib/wsdl/Management.TMOSModule.wsdl +309 -0
  153. data/lib/wsdl/Management.TrafficGroup.wsdl +953 -0
  154. data/lib/wsdl/Management.Trust.wsdl +703 -0
  155. data/lib/wsdl/Management.UserManagement.wsdl +1693 -0
  156. data/lib/wsdl/Management.View.wsdl +381 -0
  157. data/lib/wsdl/Management.Zone.wsdl +528 -0
  158. data/lib/wsdl/Management.ZoneRunner.wsdl +206 -0
  159. data/lib/wsdl/Networking.ARP.wsdl +776 -0
  160. data/lib/wsdl/Networking.AdminIP.wsdl +864 -0
  161. data/lib/wsdl/Networking.BWControllerPolicy.wsdl +1107 -0
  162. data/lib/wsdl/Networking.IPsecIkeDaemon.wsdl +368 -0
  163. data/lib/wsdl/Networking.IPsecIkePeer.wsdl +2701 -0
  164. data/lib/wsdl/Networking.IPsecManualSecurityAssociation.wsdl +1146 -0
  165. data/lib/wsdl/Networking.IPsecPolicy.wsdl +1380 -0
  166. data/lib/wsdl/Networking.IPsecTrafficSelector.wsdl +1104 -0
  167. data/lib/wsdl/Networking.Interfaces.wsdl +8359 -0
  168. data/lib/wsdl/Networking.LLDPGlobals.wsdl +590 -0
  169. data/lib/wsdl/Networking.PacketFilter.wsdl +6728 -0
  170. data/lib/wsdl/Networking.PacketFilterGlobals.wsdl +926 -0
  171. data/lib/wsdl/Networking.PortMirror.wsdl +373 -0
  172. data/lib/wsdl/Networking.ProfileFEC.wsdl +1350 -0
  173. data/lib/wsdl/Networking.ProfileGRE.wsdl +645 -0
  174. data/lib/wsdl/Networking.ProfileIPIP.wsdl +695 -0
  175. data/lib/wsdl/Networking.ProfileVXLAN.wsdl +563 -0
  176. data/lib/wsdl/Networking.ProfileWCCPGRE.wsdl +841 -0
  177. data/lib/wsdl/Networking.RouteDomain.wsdl +646 -0
  178. data/lib/wsdl/Networking.RouteDomainV2.wsdl +10056 -0
  179. data/lib/wsdl/Networking.RouteTable.wsdl +1209 -0
  180. data/lib/wsdl/Networking.RouteTableV2.wsdl +1531 -0
  181. data/lib/wsdl/Networking.RouterAdvertisement.wsdl +1067 -0
  182. data/lib/wsdl/Networking.STPGlobals.wsdl +796 -0
  183. data/lib/wsdl/Networking.STPInstance.wsdl +1147 -0
  184. data/lib/wsdl/Networking.STPInstanceV2.wsdl +1232 -0
  185. data/lib/wsdl/Networking.SelfIP.wsdl +557 -0
  186. data/lib/wsdl/Networking.SelfIPPortLockdown.wsdl +421 -0
  187. data/lib/wsdl/Networking.SelfIPV2.wsdl +10077 -0
  188. data/lib/wsdl/Networking.Trunk.wsdl +7133 -0
  189. data/lib/wsdl/Networking.Tunnel.wsdl +1354 -0
  190. data/lib/wsdl/Networking.VLAN.wsdl +2215 -0
  191. data/lib/wsdl/Networking.VLANGroup.wsdl +1441 -0
  192. data/lib/wsdl/Networking.iSessionAdvertisedRoute.wsdl +491 -0
  193. data/lib/wsdl/Networking.iSessionAdvertisedRouteV2.wsdl +619 -0
  194. data/lib/wsdl/Networking.iSessionDatastor.wsdl +459 -0
  195. data/lib/wsdl/Networking.iSessionDeduplication.wsdl +401 -0
  196. data/lib/wsdl/Networking.iSessionLocalInterface.wsdl +922 -0
  197. data/lib/wsdl/Networking.iSessionPeerDiscovery.wsdl +818 -0
  198. data/lib/wsdl/Networking.iSessionRemoteInterface.wsdl +1100 -0
  199. data/lib/wsdl/Networking.iSessionRemoteInterfaceV2.wsdl +1307 -0
  200. data/lib/wsdl/PEM.FormatScript.wsdl +542 -0
  201. data/lib/wsdl/PEM.ForwardingEndpoint.wsdl +849 -0
  202. data/lib/wsdl/PEM.InterceptionEndpoint.wsdl +414 -0
  203. data/lib/wsdl/PEM.Listener.wsdl +495 -0
  204. data/lib/wsdl/PEM.Policy.wsdl +4097 -0
  205. data/lib/wsdl/PEM.ServiceChainEndpoint.wsdl +762 -0
  206. data/lib/wsdl/PEM.Subscriber.wsdl +6527 -0
  207. data/lib/wsdl/Security.DoSDevice.wsdl +6670 -0
  208. data/lib/wsdl/Security.FirewallAddressList.wsdl +542 -0
  209. data/lib/wsdl/Security.FirewallGlobalAdminIPRuleList.wsdl +8891 -0
  210. data/lib/wsdl/Security.FirewallGlobalRuleList.wsdl +9171 -0
  211. data/lib/wsdl/Security.FirewallPolicy.wsdl +9355 -0
  212. data/lib/wsdl/Security.FirewallPortList.wsdl +544 -0
  213. data/lib/wsdl/Security.FirewallRuleList.wsdl +3360 -0
  214. data/lib/wsdl/Security.FirewallWeeklySchedule.wsdl +825 -0
  215. data/lib/wsdl/Security.LogProfile.wsdl +6927 -0
  216. data/lib/wsdl/Security.ProfileDNSSecurity.wsdl +6881 -0
  217. data/lib/wsdl/Security.ProfileDoS.wsdl +10389 -0
  218. data/lib/wsdl/Security.ProfileIPIntelligence.wsdl +7154 -0
  219. data/lib/wsdl/System.CertificateRevocationListFile.wsdl +840 -0
  220. data/lib/wsdl/System.Cluster.wsdl +956 -0
  221. data/lib/wsdl/System.ConfigSync.wsdl +1289 -0
  222. data/lib/wsdl/System.Connections.wsdl +497 -0
  223. data/lib/wsdl/System.Disk.wsdl +1442 -0
  224. data/lib/wsdl/System.ExternalMonitorFile.wsdl +834 -0
  225. data/lib/wsdl/System.Failover.wsdl +539 -0
  226. data/lib/wsdl/System.GeoIP.wsdl +181 -0
  227. data/lib/wsdl/System.HAGroup.wsdl +1983 -0
  228. data/lib/wsdl/System.HAStatus.wsdl +695 -0
  229. data/lib/wsdl/System.Inet.wsdl +438 -0
  230. data/lib/wsdl/System.Internal.wsdl +279 -0
  231. data/lib/wsdl/System.PerformanceSFlow.wsdl +722 -0
  232. data/lib/wsdl/System.Services.wsdl +1054 -0
  233. data/lib/wsdl/System.Session.wsdl +1023 -0
  234. data/lib/wsdl/System.SoftwareManagement.wsdl +1073 -0
  235. data/lib/wsdl/System.Statistics.wsdl +9469 -0
  236. data/lib/wsdl/System.SystemInfo.wsdl +7493 -0
  237. data/lib/wsdl/System.VCMP.wsdl +7766 -0
  238. data/lib/wsdl/WebAccelerator.Applications.wsdl +7765 -0
  239. data/lib/wsdl/WebAccelerator.Policies.wsdl +570 -0
  240. data/lib/wsdl/WebAccelerator.ProxyMessage.wsdl +157 -0
  241. data/lib/wsdl/iCall.PeriodicHandler.wsdl +751 -0
  242. data/lib/wsdl/iCall.PerpetualHandler.wsdl +1081 -0
  243. data/lib/wsdl/iCall.Script.wsdl +372 -0
  244. data/lib/wsdl/iCall.TriggeredHandler.wsdl +1071 -0
  245. data/metadata +323 -0
  246. data/spec/cassettes/F5_Icontrol_LocalLB_Pool/creates_a_pool.yml +49 -0
  247. data/spec/cassettes/F5_Icontrol_System_SystemInfo/retrieves_something_with_a_complex_return_type_and_input.yml +49 -0
  248. data/spec/cassettes/F5_Icontrol_System_SystemInfo/retrieves_the_uptime.yml +96 -0
  249. data/spec/cassettes/F5_Icontrol_System_SystemInfo/retrieves_the_version.yml +99 -0
  250. data/spec/models/local_lb/pool_spec.rb +26 -0
  251. data/spec/models/system/system_info_spec.rb +31 -0
  252. data/spec/spec_helper.rb +13 -0
  253. metadata +415 -0
@@ -0,0 +1,4672 @@
1
+ <?xml version="1.0" ?>
2
+ <!--
3
+ Copyright (c) 1996-2013, F5 Networks, Inc., Seattle, Washington. All rights reserved.
4
+
5
+ F5, F5 Networks, the F5 logo, BIG-IP, 3-DNS, iControl, GLOBAL-SITE, SEE-IT, EDGE-FX, FireGuard, Internet Control Architecture, IP Application Switch, iRules, PACKET VELOCITY, SYN Check, CONTROL YOUR WORLD, OneConnect, ZoneRunner, uRoam, FirePass, and TrafficShield are registered trademarks or trademarks of F5 Networks, Inc., in the U.S. and certain other countries.
6
+
7
+ All other trademarks mentioned in this document are the property of their respective owners. F5 Networks' trademarks may not be used in connection with any product or service except as permitted in writing by F5.
8
+
9
+ -->
10
+ <definitions name="Management.SNMPConfiguration"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:complexType name="Management.SNMPConfiguration.SecurityInformation">
25
+ <xsd:sequence>
26
+ <xsd:element name="security_name" type="xsd:string"/>
27
+ <xsd:element name="source" type="xsd:string"/>
28
+ <xsd:element name="community_name" type="xsd:string"/>
29
+ <xsd:element name="ipv6" type="xsd:boolean"/>
30
+ </xsd:sequence>
31
+ </xsd:complexType>
32
+ <xsd:complexType name="Management.SNMPConfiguration.DiskCheckInformation">
33
+ <xsd:sequence>
34
+ <xsd:element name="disk_path" type="xsd:string"/>
35
+ <xsd:element name="check_type" type="tns:Management.SNMPConfiguration.DiskCheckType"/>
36
+ <xsd:element name="minimum_space" type="xsd:long"/>
37
+ </xsd:sequence>
38
+ </xsd:complexType>
39
+ <xsd:complexType name="Management.SNMPConfiguration.ProcessInformation">
40
+ <xsd:sequence>
41
+ <xsd:element name="process_name" type="xsd:string"/>
42
+ <xsd:element name="max" type="xsd:long"/>
43
+ <xsd:element name="min" type="xsd:long"/>
44
+ </xsd:sequence>
45
+ </xsd:complexType>
46
+ <xsd:complexType name="Management.SNMPConfiguration.UserInformationSequence">
47
+ <xsd:complexContent>
48
+ <xsd:restriction base='SOAP-ENC:Array'>
49
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.UserInformation[]'/>
50
+ </xsd:restriction>
51
+ </xsd:complexContent>
52
+ </xsd:complexType>
53
+ <xsd:complexType name="Management.SNMPConfiguration.AccessInformationSequence">
54
+ <xsd:complexContent>
55
+ <xsd:restriction base='SOAP-ENC:Array'>
56
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.AccessInformation[]'/>
57
+ </xsd:restriction>
58
+ </xsd:complexContent>
59
+ </xsd:complexType>
60
+ <xsd:complexType name="Management.SNMPConfiguration.SystemInformation">
61
+ <xsd:sequence>
62
+ <xsd:element name="sys_name" type="xsd:string"/>
63
+ <xsd:element name="sys_location" type="xsd:string"/>
64
+ <xsd:element name="sys_contact" type="xsd:string"/>
65
+ <xsd:element name="sys_description" type="xsd:string"/>
66
+ <xsd:element name="sys_object_id" type="xsd:string"/>
67
+ <xsd:element name="sys_services" type="xsd:long"/>
68
+ </xsd:sequence>
69
+ </xsd:complexType>
70
+ <xsd:complexType name="Management.SNMPConfiguration.AgentInterface">
71
+ <xsd:sequence>
72
+ <xsd:element name="intf_name" type="xsd:string"/>
73
+ <xsd:element name="intf_type" type="xsd:string"/>
74
+ <xsd:element name="intf_speed" type="xsd:string"/>
75
+ </xsd:sequence>
76
+ </xsd:complexType>
77
+ <xsd:complexType name="Management.SNMPConfiguration.WrapperUserInformationSequence">
78
+ <xsd:complexContent>
79
+ <xsd:restriction base='SOAP-ENC:Array'>
80
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.WrapperUserInformation[]'/>
81
+ </xsd:restriction>
82
+ </xsd:complexContent>
83
+ </xsd:complexType>
84
+ <xsd:complexType name="Management.SNMPConfiguration.GenericSinkInformation2Sequence">
85
+ <xsd:complexContent>
86
+ <xsd:restriction base='SOAP-ENC:Array'>
87
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.GenericSinkInformation2[]'/>
88
+ </xsd:restriction>
89
+ </xsd:complexContent>
90
+ </xsd:complexType>
91
+ <xsd:complexType name="Management.SNMPConfiguration.ProcessInformationSequence">
92
+ <xsd:complexContent>
93
+ <xsd:restriction base='SOAP-ENC:Array'>
94
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.ProcessInformation[]'/>
95
+ </xsd:restriction>
96
+ </xsd:complexContent>
97
+ </xsd:complexType>
98
+ <xsd:simpleType name="Common.EnabledState">
99
+ <xsd:restriction base="xsd:string">
100
+ <xsd:enumeration value="STATE_DISABLED">
101
+ <xsd:annotation>
102
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
103
+ </xsd:annotation>
104
+ </xsd:enumeration>
105
+ <xsd:enumeration value="STATE_ENABLED">
106
+ <xsd:annotation>
107
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
108
+ </xsd:annotation>
109
+ </xsd:enumeration>
110
+ </xsd:restriction>
111
+ </xsd:simpleType>
112
+ <xsd:simpleType name="Management.SNMPConfiguration.PrivacyProtocolType">
113
+ <xsd:restriction base="xsd:string">
114
+ <xsd:enumeration value="PRIV_PROTOCOL_DES">
115
+ <xsd:annotation>
116
+ <xsd:documentation>PRIV_PROTOCOL_DES</xsd:documentation>
117
+ </xsd:annotation>
118
+ </xsd:enumeration>
119
+ <xsd:enumeration value="PRIV_PROTOCOL_NONE">
120
+ <xsd:annotation>
121
+ <xsd:documentation>PRIV_PROTOCOL_NONE</xsd:documentation>
122
+ </xsd:annotation>
123
+ </xsd:enumeration>
124
+ <xsd:enumeration value="PRIV_PROTOCOL_AES">
125
+ <xsd:annotation>
126
+ <xsd:documentation>PRIV_PROTOCOL_AES</xsd:documentation>
127
+ </xsd:annotation>
128
+ </xsd:enumeration>
129
+ </xsd:restriction>
130
+ </xsd:simpleType>
131
+ <xsd:complexType name="Management.SNMPConfiguration.WrapperSecurityInformation">
132
+ <xsd:sequence>
133
+ <xsd:element name="community" type="xsd:string"/>
134
+ <xsd:element name="source" type="xsd:string"/>
135
+ <xsd:element name="oid" type="xsd:string"/>
136
+ <xsd:element name="ipv6" type="xsd:boolean"/>
137
+ </xsd:sequence>
138
+ </xsd:complexType>
139
+ <xsd:complexType name="Management.SNMPConfiguration.NameProgArgs">
140
+ <xsd:sequence>
141
+ <xsd:element name="process_name" type="xsd:string"/>
142
+ <xsd:element name="program_name" type="xsd:string"/>
143
+ <xsd:element name="program_args" type="xsd:string"/>
144
+ </xsd:sequence>
145
+ </xsd:complexType>
146
+ <xsd:simpleType name="Management.SNMPConfiguration.PrefixType">
147
+ <xsd:restriction base="xsd:string">
148
+ <xsd:enumeration value="PREFIX_EXACT">
149
+ <xsd:annotation>
150
+ <xsd:documentation>PREFIX_EXACT</xsd:documentation>
151
+ </xsd:annotation>
152
+ </xsd:enumeration>
153
+ <xsd:enumeration value="PREFIX_PREFIX">
154
+ <xsd:annotation>
155
+ <xsd:documentation>PREFIX_PREFIX</xsd:documentation>
156
+ </xsd:annotation>
157
+ </xsd:enumeration>
158
+ </xsd:restriction>
159
+ </xsd:simpleType>
160
+ <xsd:complexType name="Management.SNMPConfiguration.GenericSinkInformationSequence">
161
+ <xsd:complexContent>
162
+ <xsd:restriction base='SOAP-ENC:Array'>
163
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.GenericSinkInformation[]'/>
164
+ </xsd:restriction>
165
+ </xsd:complexContent>
166
+ </xsd:complexType>
167
+ <xsd:complexType name="Management.SNMPConfiguration.UserInformation">
168
+ <xsd:sequence>
169
+ <xsd:element name="user_name" type="xsd:string"/>
170
+ <xsd:element name="auth_type" type="tns:Management.SNMPConfiguration.AuthType"/>
171
+ <xsd:element name="auth_pass_phrase" type="xsd:string"/>
172
+ <xsd:element name="priv_protocol" type="tns:Management.SNMPConfiguration.PrivacyProtocolType"/>
173
+ <xsd:element name="priv_pass_phrase" type="xsd:string"/>
174
+ </xsd:sequence>
175
+ </xsd:complexType>
176
+ <xsd:simpleType name="Management.SNMPConfiguration.DiskCheckType">
177
+ <xsd:restriction base="xsd:string">
178
+ <xsd:enumeration value="DISKCHECK_SIZE">
179
+ <xsd:annotation>
180
+ <xsd:documentation>DISKCHECK_SIZE</xsd:documentation>
181
+ </xsd:annotation>
182
+ </xsd:enumeration>
183
+ <xsd:enumeration value="DISKCHECK_PERCENT">
184
+ <xsd:annotation>
185
+ <xsd:documentation>DISKCHECK_PERCENT</xsd:documentation>
186
+ </xsd:annotation>
187
+ </xsd:enumeration>
188
+ </xsd:restriction>
189
+ </xsd:simpleType>
190
+ <xsd:complexType name="Management.SNMPConfiguration.SmuxSubAgentInformation">
191
+ <xsd:sequence>
192
+ <xsd:element name="oid" type="xsd:string"/>
193
+ <xsd:element name="password" type="xsd:string"/>
194
+ </xsd:sequence>
195
+ </xsd:complexType>
196
+ <xsd:complexType name="Management.SNMPConfiguration.PassThroughInformationSequence">
197
+ <xsd:complexContent>
198
+ <xsd:restriction base='SOAP-ENC:Array'>
199
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.PassThroughInformation[]'/>
200
+ </xsd:restriction>
201
+ </xsd:complexContent>
202
+ </xsd:complexType>
203
+ <xsd:complexType name="Management.SNMPConfiguration.AgentListenAddressPortSequence">
204
+ <xsd:complexContent>
205
+ <xsd:restriction base='SOAP-ENC:Array'>
206
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.AgentListenAddressPort[]'/>
207
+ </xsd:restriction>
208
+ </xsd:complexContent>
209
+ </xsd:complexType>
210
+ <xsd:complexType name="Common.StringSequence">
211
+ <xsd:complexContent>
212
+ <xsd:restriction base='SOAP-ENC:Array'>
213
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
214
+ </xsd:restriction>
215
+ </xsd:complexContent>
216
+ </xsd:complexType>
217
+ <xsd:simpleType name="Management.SNMPConfiguration.LevelType">
218
+ <xsd:restriction base="xsd:string">
219
+ <xsd:enumeration value="LEVEL_NOAUTH">
220
+ <xsd:annotation>
221
+ <xsd:documentation>LEVEL_NOAUTH</xsd:documentation>
222
+ </xsd:annotation>
223
+ </xsd:enumeration>
224
+ <xsd:enumeration value="LEVEL_AUTH">
225
+ <xsd:annotation>
226
+ <xsd:documentation>LEVEL_AUTH</xsd:documentation>
227
+ </xsd:annotation>
228
+ </xsd:enumeration>
229
+ <xsd:enumeration value="LEVEL_PRIV">
230
+ <xsd:annotation>
231
+ <xsd:documentation>LEVEL_PRIV</xsd:documentation>
232
+ </xsd:annotation>
233
+ </xsd:enumeration>
234
+ </xsd:restriction>
235
+ </xsd:simpleType>
236
+ <xsd:simpleType name="Management.SNMPConfiguration.SinkType">
237
+ <xsd:restriction base="xsd:string">
238
+ <xsd:enumeration value="SINK_TRAPSINK">
239
+ <xsd:annotation>
240
+ <xsd:documentation>SINK_TRAPSINK</xsd:documentation>
241
+ </xsd:annotation>
242
+ </xsd:enumeration>
243
+ <xsd:enumeration value="SINK_TRAP2SINK">
244
+ <xsd:annotation>
245
+ <xsd:documentation>SINK_TRAP2SINK</xsd:documentation>
246
+ </xsd:annotation>
247
+ </xsd:enumeration>
248
+ <xsd:enumeration value="SINK_INFORMSINK">
249
+ <xsd:annotation>
250
+ <xsd:documentation>SINK_INFORMSINK</xsd:documentation>
251
+ </xsd:annotation>
252
+ </xsd:enumeration>
253
+ </xsd:restriction>
254
+ </xsd:simpleType>
255
+ <xsd:complexType name="Management.SNMPConfiguration.FileCheckInformation">
256
+ <xsd:sequence>
257
+ <xsd:element name="file_name" type="xsd:string"/>
258
+ <xsd:element name="maximum_size" type="xsd:long"/>
259
+ </xsd:sequence>
260
+ </xsd:complexType>
261
+ <xsd:complexType name="Management.SNMPConfiguration.WrapperUserInformation">
262
+ <xsd:sequence>
263
+ <xsd:element name="user" type="xsd:string"/>
264
+ <xsd:element name="level" type="tns:Management.SNMPConfiguration.LevelType"/>
265
+ <xsd:element name="oid" type="xsd:string"/>
266
+ </xsd:sequence>
267
+ </xsd:complexType>
268
+ <xsd:complexType name="Management.SNMPConfiguration.AccessInformation">
269
+ <xsd:sequence>
270
+ <xsd:element name="access_name" type="xsd:string"/>
271
+ <xsd:element name="access_context" type="xsd:string"/>
272
+ <xsd:element name="model" type="tns:Management.SNMPConfiguration.ModelType"/>
273
+ <xsd:element name="level" type="tns:Management.SNMPConfiguration.LevelType"/>
274
+ <xsd:element name="prefix" type="tns:Management.SNMPConfiguration.PrefixType"/>
275
+ <xsd:element name="read_access" type="xsd:string"/>
276
+ <xsd:element name="write_access" type="xsd:string"/>
277
+ <xsd:element name="notify_access" type="xsd:string"/>
278
+ </xsd:sequence>
279
+ </xsd:complexType>
280
+ <xsd:complexType name="Management.SNMPConfiguration.PassThroughInformation">
281
+ <xsd:sequence>
282
+ <xsd:element name="mib_oid" type="xsd:string"/>
283
+ <xsd:element name="exec_name" type="xsd:string"/>
284
+ </xsd:sequence>
285
+ </xsd:complexType>
286
+ <xsd:complexType name="Management.SNMPConfiguration.ViewInformationSequence">
287
+ <xsd:complexContent>
288
+ <xsd:restriction base='SOAP-ENC:Array'>
289
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.ViewInformation[]'/>
290
+ </xsd:restriction>
291
+ </xsd:complexContent>
292
+ </xsd:complexType>
293
+ <xsd:complexType name="Management.SNMPConfiguration.SmuxSubAgentInformationSequence">
294
+ <xsd:complexContent>
295
+ <xsd:restriction base='SOAP-ENC:Array'>
296
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.SmuxSubAgentInformation[]'/>
297
+ </xsd:restriction>
298
+ </xsd:complexContent>
299
+ </xsd:complexType>
300
+ <xsd:complexType name="Management.SNMPConfiguration.SinkInformation">
301
+ <xsd:sequence>
302
+ <xsd:element name="sink_host" type="xsd:string"/>
303
+ <xsd:element name="sink_community" type="xsd:string"/>
304
+ <xsd:element name="sink_port" type="xsd:long"/>
305
+ </xsd:sequence>
306
+ </xsd:complexType>
307
+ <xsd:complexType name="Management.SNMPConfiguration.GenericSinkInformation2">
308
+ <xsd:sequence>
309
+ <xsd:element name="snmpcmd_args" type="xsd:string"/>
310
+ <xsd:element name="sink_host" type="xsd:string"/>
311
+ <xsd:element name="sink_port" type="xsd:long"/>
312
+ </xsd:sequence>
313
+ </xsd:complexType>
314
+ <xsd:complexType name="Management.SNMPConfiguration.LoadAverageInformation">
315
+ <xsd:sequence>
316
+ <xsd:element name="max_1_minute_load" type="xsd:long"/>
317
+ <xsd:element name="max_5_minute_load" type="xsd:long"/>
318
+ <xsd:element name="max_15_minute_load" type="xsd:long"/>
319
+ </xsd:sequence>
320
+ </xsd:complexType>
321
+ <xsd:complexType name="Management.SNMPConfiguration.DynamicLoadableModuleSequence">
322
+ <xsd:complexContent>
323
+ <xsd:restriction base='SOAP-ENC:Array'>
324
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.DynamicLoadableModule[]'/>
325
+ </xsd:restriction>
326
+ </xsd:complexContent>
327
+ </xsd:complexType>
328
+ <xsd:simpleType name="Common.ULong">
329
+ <xsd:restriction base="xsd:long"/>
330
+ </xsd:simpleType>
331
+ <xsd:complexType name="Management.SNMPConfiguration.DynamicLoadableModule">
332
+ <xsd:sequence>
333
+ <xsd:element name="module_name" type="xsd:string"/>
334
+ <xsd:element name="module_path" type="xsd:string"/>
335
+ </xsd:sequence>
336
+ </xsd:complexType>
337
+ <xsd:complexType name="Management.SNMPConfiguration.ClientAccessSequence">
338
+ <xsd:complexContent>
339
+ <xsd:restriction base='SOAP-ENC:Array'>
340
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.ClientAccess[]'/>
341
+ </xsd:restriction>
342
+ </xsd:complexContent>
343
+ </xsd:complexType>
344
+ <xsd:simpleType name="Management.SNMPConfiguration.AuthType">
345
+ <xsd:restriction base="xsd:string">
346
+ <xsd:enumeration value="AUTH_MD5">
347
+ <xsd:annotation>
348
+ <xsd:documentation>AUTH_MD5</xsd:documentation>
349
+ </xsd:annotation>
350
+ </xsd:enumeration>
351
+ <xsd:enumeration value="AUTH_SHA">
352
+ <xsd:annotation>
353
+ <xsd:documentation>AUTH_SHA</xsd:documentation>
354
+ </xsd:annotation>
355
+ </xsd:enumeration>
356
+ <xsd:enumeration value="AUTH_NONE">
357
+ <xsd:annotation>
358
+ <xsd:documentation>AUTH_NONE</xsd:documentation>
359
+ </xsd:annotation>
360
+ </xsd:enumeration>
361
+ </xsd:restriction>
362
+ </xsd:simpleType>
363
+ <xsd:complexType name="Management.SNMPConfiguration.AgentXInformation">
364
+ <xsd:sequence>
365
+ <xsd:element name="address" type="xsd:string"/>
366
+ <xsd:element name="timeout" type="xsd:long"/>
367
+ <xsd:element name="retries" type="xsd:long"/>
368
+ </xsd:sequence>
369
+ </xsd:complexType>
370
+ <xsd:complexType name="Management.SNMPConfiguration.MibnumNameProgArgsSequence">
371
+ <xsd:complexContent>
372
+ <xsd:restriction base='SOAP-ENC:Array'>
373
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.MibnumNameProgArgs[]'/>
374
+ </xsd:restriction>
375
+ </xsd:complexContent>
376
+ </xsd:complexType>
377
+ <xsd:complexType name="Management.SNMPConfiguration.ViewInformation">
378
+ <xsd:sequence>
379
+ <xsd:element name="view_name" type="xsd:string"/>
380
+ <xsd:element name="type" type="tns:Management.SNMPConfiguration.ViewType"/>
381
+ <xsd:element name="subtree" type="xsd:string"/>
382
+ <xsd:element name="masks" type="xsd:string"/>
383
+ </xsd:sequence>
384
+ </xsd:complexType>
385
+ <xsd:simpleType name="Management.SNMPConfiguration.ModelType">
386
+ <xsd:restriction base="xsd:string">
387
+ <xsd:enumeration value="MODEL_ANY">
388
+ <xsd:annotation>
389
+ <xsd:documentation>MODEL_ANY</xsd:documentation>
390
+ </xsd:annotation>
391
+ </xsd:enumeration>
392
+ <xsd:enumeration value="MODEL_V1">
393
+ <xsd:annotation>
394
+ <xsd:documentation>MODEL_V1</xsd:documentation>
395
+ </xsd:annotation>
396
+ </xsd:enumeration>
397
+ <xsd:enumeration value="MODEL_V2C">
398
+ <xsd:annotation>
399
+ <xsd:documentation>MODEL_V2C</xsd:documentation>
400
+ </xsd:annotation>
401
+ </xsd:enumeration>
402
+ <xsd:enumeration value="MODEL_USM">
403
+ <xsd:annotation>
404
+ <xsd:documentation>MODEL_USM</xsd:documentation>
405
+ </xsd:annotation>
406
+ </xsd:enumeration>
407
+ </xsd:restriction>
408
+ </xsd:simpleType>
409
+ <xsd:complexType name="Management.SNMPConfiguration.ClientAccess">
410
+ <xsd:sequence>
411
+ <xsd:element name="address" type="xsd:string"/>
412
+ <xsd:element name="netmask" type="xsd:string"/>
413
+ </xsd:sequence>
414
+ </xsd:complexType>
415
+ <xsd:complexType name="Management.SNMPConfiguration.DiskCheckInformationSequence">
416
+ <xsd:complexContent>
417
+ <xsd:restriction base='SOAP-ENC:Array'>
418
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.DiskCheckInformation[]'/>
419
+ </xsd:restriction>
420
+ </xsd:complexContent>
421
+ </xsd:complexType>
422
+ <xsd:complexType name="Management.SNMPConfiguration.WrapperSecurityInformationSequence">
423
+ <xsd:complexContent>
424
+ <xsd:restriction base='SOAP-ENC:Array'>
425
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.WrapperSecurityInformation[]'/>
426
+ </xsd:restriction>
427
+ </xsd:complexContent>
428
+ </xsd:complexType>
429
+ <xsd:complexType name="Management.SNMPConfiguration.SinkInformationSequence">
430
+ <xsd:complexContent>
431
+ <xsd:restriction base='SOAP-ENC:Array'>
432
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.SinkInformation[]'/>
433
+ </xsd:restriction>
434
+ </xsd:complexContent>
435
+ </xsd:complexType>
436
+ <xsd:complexType name="Management.SNMPConfiguration.GroupInformationSequence">
437
+ <xsd:complexContent>
438
+ <xsd:restriction base='SOAP-ENC:Array'>
439
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.GroupInformation[]'/>
440
+ </xsd:restriction>
441
+ </xsd:complexContent>
442
+ </xsd:complexType>
443
+ <xsd:complexType name="Management.SNMPConfiguration.GroupInformation">
444
+ <xsd:sequence>
445
+ <xsd:element name="group_name" type="xsd:string"/>
446
+ <xsd:element name="model" type="tns:Management.SNMPConfiguration.ModelType"/>
447
+ <xsd:element name="security_name" type="xsd:string"/>
448
+ </xsd:sequence>
449
+ </xsd:complexType>
450
+ <xsd:complexType name="Management.SNMPConfiguration.NameProgArgsSequence">
451
+ <xsd:complexContent>
452
+ <xsd:restriction base='SOAP-ENC:Array'>
453
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.NameProgArgs[]'/>
454
+ </xsd:restriction>
455
+ </xsd:complexContent>
456
+ </xsd:complexType>
457
+ <xsd:complexType name="Common.IPPortDefinition">
458
+ <xsd:sequence>
459
+ <xsd:element name="address" type="xsd:string"/>
460
+ <xsd:element name="port" type="xsd:long"/>
461
+ </xsd:sequence>
462
+ </xsd:complexType>
463
+ <xsd:simpleType name="Management.SNMPConfiguration.ViewType">
464
+ <xsd:restriction base="xsd:string">
465
+ <xsd:enumeration value="VIEW_INCLUDED">
466
+ <xsd:annotation>
467
+ <xsd:documentation>VIEW_INCLUDED</xsd:documentation>
468
+ </xsd:annotation>
469
+ </xsd:enumeration>
470
+ <xsd:enumeration value="VIEW_EXCLUDED">
471
+ <xsd:annotation>
472
+ <xsd:documentation>VIEW_EXCLUDED</xsd:documentation>
473
+ </xsd:annotation>
474
+ </xsd:enumeration>
475
+ </xsd:restriction>
476
+ </xsd:simpleType>
477
+ <xsd:complexType name="Management.SNMPConfiguration.GenericSinkInformation">
478
+ <xsd:sequence>
479
+ <xsd:element name="snmpcmd_args" type="xsd:string"/>
480
+ <xsd:element name="sink_host" type="xsd:string"/>
481
+ <xsd:element name="sink_community" type="xsd:string"/>
482
+ </xsd:sequence>
483
+ </xsd:complexType>
484
+ <xsd:complexType name="Management.SNMPConfiguration.SecurityInformationSequence">
485
+ <xsd:complexContent>
486
+ <xsd:restriction base='SOAP-ENC:Array'>
487
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.SecurityInformation[]'/>
488
+ </xsd:restriction>
489
+ </xsd:complexContent>
490
+ </xsd:complexType>
491
+ <xsd:complexType name="Management.SNMPConfiguration.FileCheckInformationSequence">
492
+ <xsd:complexContent>
493
+ <xsd:restriction base='SOAP-ENC:Array'>
494
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SNMPConfiguration.FileCheckInformation[]'/>
495
+ </xsd:restriction>
496
+ </xsd:complexContent>
497
+ </xsd:complexType>
498
+ <xsd:simpleType name="Management.SNMPConfiguration.TransportType">
499
+ <xsd:restriction base="xsd:string">
500
+ <xsd:enumeration value="TRANSPORT_UDP">
501
+ <xsd:annotation>
502
+ <xsd:documentation>TRANSPORT_UDP</xsd:documentation>
503
+ </xsd:annotation>
504
+ </xsd:enumeration>
505
+ <xsd:enumeration value="TRANSPORT_TCP">
506
+ <xsd:annotation>
507
+ <xsd:documentation>TRANSPORT_TCP</xsd:documentation>
508
+ </xsd:annotation>
509
+ </xsd:enumeration>
510
+ <xsd:enumeration value="TRANSPORT_UDP6">
511
+ <xsd:annotation>
512
+ <xsd:documentation>TRANSPORT_UDP6</xsd:documentation>
513
+ </xsd:annotation>
514
+ </xsd:enumeration>
515
+ <xsd:enumeration value="TRANSPORT_TCP6">
516
+ <xsd:annotation>
517
+ <xsd:documentation>TRANSPORT_TCP6</xsd:documentation>
518
+ </xsd:annotation>
519
+ </xsd:enumeration>
520
+ </xsd:restriction>
521
+ </xsd:simpleType>
522
+ <xsd:complexType name="Management.SNMPConfiguration.AgentListenAddressPort">
523
+ <xsd:sequence>
524
+ <xsd:element name="transport" type="tns:Management.SNMPConfiguration.TransportType"/>
525
+ <xsd:element name="ipport" type="tns:Common.IPPortDefinition"/>
526
+ </xsd:sequence>
527
+ </xsd:complexType>
528
+ <xsd:complexType name="Management.SNMPConfiguration.MibnumNameProgArgs">
529
+ <xsd:sequence>
530
+ <xsd:element name="mib_num" type="xsd:string"/>
531
+ <xsd:element name="name_prog_args" type="tns:Management.SNMPConfiguration.NameProgArgs"/>
532
+ </xsd:sequence>
533
+ </xsd:complexType>
534
+ </xsd:schema>
535
+ </types>
536
+
537
+ <!-- message -->
538
+
539
+ <message name="Management.SNMPConfiguration.set_check_processRequest">
540
+ <part name="proc_info" type="tns:Management.SNMPConfiguration.ProcessInformationSequence"/>
541
+ </message>
542
+ <message name="Management.SNMPConfiguration.set_check_processResponse">
543
+ </message>
544
+
545
+ <message name="Management.SNMPConfiguration.get_check_processRequest">
546
+ </message>
547
+ <message name="Management.SNMPConfiguration.get_check_processResponse">
548
+ <part name="return" type="tns:Management.SNMPConfiguration.ProcessInformationSequence"/>
549
+ </message>
550
+
551
+ <message name="Management.SNMPConfiguration.remove_check_processRequest">
552
+ <part name="proc_info" type="tns:Management.SNMPConfiguration.ProcessInformationSequence"/>
553
+ </message>
554
+ <message name="Management.SNMPConfiguration.remove_check_processResponse">
555
+ </message>
556
+
557
+ <message name="Management.SNMPConfiguration.set_process_fixRequest">
558
+ <part name="fix_info" type="tns:Management.SNMPConfiguration.NameProgArgsSequence"/>
559
+ </message>
560
+ <message name="Management.SNMPConfiguration.set_process_fixResponse">
561
+ </message>
562
+
563
+ <message name="Management.SNMPConfiguration.get_process_fixRequest">
564
+ </message>
565
+ <message name="Management.SNMPConfiguration.get_process_fixResponse">
566
+ <part name="return" type="tns:Management.SNMPConfiguration.NameProgArgsSequence"/>
567
+ </message>
568
+
569
+ <message name="Management.SNMPConfiguration.remove_process_fixRequest">
570
+ <part name="fix_info" type="tns:Management.SNMPConfiguration.NameProgArgsSequence"/>
571
+ </message>
572
+ <message name="Management.SNMPConfiguration.remove_process_fixResponse">
573
+ </message>
574
+
575
+ <message name="Management.SNMPConfiguration.set_execRequest">
576
+ <part name="exec_info" type="tns:Management.SNMPConfiguration.MibnumNameProgArgsSequence"/>
577
+ </message>
578
+ <message name="Management.SNMPConfiguration.set_execResponse">
579
+ </message>
580
+
581
+ <message name="Management.SNMPConfiguration.get_execRequest">
582
+ </message>
583
+ <message name="Management.SNMPConfiguration.get_execResponse">
584
+ <part name="return" type="tns:Management.SNMPConfiguration.MibnumNameProgArgsSequence"/>
585
+ </message>
586
+
587
+ <message name="Management.SNMPConfiguration.remove_execRequest">
588
+ <part name="exec_info" type="tns:Management.SNMPConfiguration.MibnumNameProgArgsSequence"/>
589
+ </message>
590
+ <message name="Management.SNMPConfiguration.remove_execResponse">
591
+ </message>
592
+
593
+ <message name="Management.SNMPConfiguration.set_exec_fixRequest">
594
+ <part name="exec_info" type="tns:Management.SNMPConfiguration.NameProgArgsSequence"/>
595
+ </message>
596
+ <message name="Management.SNMPConfiguration.set_exec_fixResponse">
597
+ </message>
598
+
599
+ <message name="Management.SNMPConfiguration.get_exec_fixRequest">
600
+ </message>
601
+ <message name="Management.SNMPConfiguration.get_exec_fixResponse">
602
+ <part name="return" type="tns:Management.SNMPConfiguration.NameProgArgsSequence"/>
603
+ </message>
604
+
605
+ <message name="Management.SNMPConfiguration.remove_exec_fixRequest">
606
+ <part name="exec_info" type="tns:Management.SNMPConfiguration.NameProgArgsSequence"/>
607
+ </message>
608
+ <message name="Management.SNMPConfiguration.remove_exec_fixResponse">
609
+ </message>
610
+
611
+ <message name="Management.SNMPConfiguration.set_check_diskRequest">
612
+ <part name="disk_info" type="tns:Management.SNMPConfiguration.DiskCheckInformationSequence"/>
613
+ </message>
614
+ <message name="Management.SNMPConfiguration.set_check_diskResponse">
615
+ </message>
616
+
617
+ <message name="Management.SNMPConfiguration.get_check_diskRequest">
618
+ </message>
619
+ <message name="Management.SNMPConfiguration.get_check_diskResponse">
620
+ <part name="return" type="tns:Management.SNMPConfiguration.DiskCheckInformationSequence"/>
621
+ </message>
622
+
623
+ <message name="Management.SNMPConfiguration.remove_check_diskRequest">
624
+ <part name="disk_info" type="tns:Management.SNMPConfiguration.DiskCheckInformationSequence"/>
625
+ </message>
626
+ <message name="Management.SNMPConfiguration.remove_check_diskResponse">
627
+ </message>
628
+
629
+ <message name="Management.SNMPConfiguration.set_ignore_diskRequest">
630
+ <part name="ignore_disk" type="tns:Common.StringSequence"/>
631
+ </message>
632
+ <message name="Management.SNMPConfiguration.set_ignore_diskResponse">
633
+ </message>
634
+
635
+ <message name="Management.SNMPConfiguration.get_ignore_diskRequest">
636
+ </message>
637
+ <message name="Management.SNMPConfiguration.get_ignore_diskResponse">
638
+ <part name="return" type="tns:Common.StringSequence"/>
639
+ </message>
640
+
641
+ <message name="Management.SNMPConfiguration.remove_ignore_diskRequest">
642
+ <part name="ignore_disk" type="tns:Common.StringSequence"/>
643
+ </message>
644
+ <message name="Management.SNMPConfiguration.remove_ignore_diskResponse">
645
+ </message>
646
+
647
+ <message name="Management.SNMPConfiguration.set_storage_use_nfsRequest">
648
+ <part name="usage" type="xsd:long"/>
649
+ </message>
650
+ <message name="Management.SNMPConfiguration.set_storage_use_nfsResponse">
651
+ </message>
652
+
653
+ <message name="Management.SNMPConfiguration.get_storage_use_nfsRequest">
654
+ </message>
655
+ <message name="Management.SNMPConfiguration.get_storage_use_nfsResponse">
656
+ <part name="return" type="xsd:long"/>
657
+ </message>
658
+
659
+ <message name="Management.SNMPConfiguration.remove_storage_use_nfsRequest">
660
+ <part name="usage" type="xsd:long"/>
661
+ </message>
662
+ <message name="Management.SNMPConfiguration.remove_storage_use_nfsResponse">
663
+ </message>
664
+
665
+ <message name="Management.SNMPConfiguration.set_check_fileRequest">
666
+ <part name="file_info" type="tns:Management.SNMPConfiguration.FileCheckInformationSequence"/>
667
+ </message>
668
+ <message name="Management.SNMPConfiguration.set_check_fileResponse">
669
+ </message>
670
+
671
+ <message name="Management.SNMPConfiguration.get_check_fileRequest">
672
+ </message>
673
+ <message name="Management.SNMPConfiguration.get_check_fileResponse">
674
+ <part name="return" type="tns:Management.SNMPConfiguration.FileCheckInformationSequence"/>
675
+ </message>
676
+
677
+ <message name="Management.SNMPConfiguration.remove_check_fileRequest">
678
+ <part name="file_info" type="tns:Management.SNMPConfiguration.FileCheckInformationSequence"/>
679
+ </message>
680
+ <message name="Management.SNMPConfiguration.remove_check_fileResponse">
681
+ </message>
682
+
683
+ <message name="Management.SNMPConfiguration.set_check_loadRequest">
684
+ <part name="load_info" type="tns:Management.SNMPConfiguration.LoadAverageInformation"/>
685
+ </message>
686
+ <message name="Management.SNMPConfiguration.set_check_loadResponse">
687
+ </message>
688
+
689
+ <message name="Management.SNMPConfiguration.get_check_loadRequest">
690
+ </message>
691
+ <message name="Management.SNMPConfiguration.get_check_loadResponse">
692
+ <part name="return" type="tns:Management.SNMPConfiguration.LoadAverageInformation"/>
693
+ </message>
694
+
695
+ <message name="Management.SNMPConfiguration.remove_check_loadRequest">
696
+ <part name="load_info" type="tns:Management.SNMPConfiguration.LoadAverageInformation"/>
697
+ </message>
698
+ <message name="Management.SNMPConfiguration.remove_check_loadResponse">
699
+ </message>
700
+
701
+ <message name="Management.SNMPConfiguration.set_agentx_informationRequest">
702
+ <part name="agentx_info" type="tns:Management.SNMPConfiguration.AgentXInformation"/>
703
+ </message>
704
+ <message name="Management.SNMPConfiguration.set_agentx_informationResponse">
705
+ </message>
706
+
707
+ <message name="Management.SNMPConfiguration.get_agentx_informationRequest">
708
+ </message>
709
+ <message name="Management.SNMPConfiguration.get_agentx_informationResponse">
710
+ <part name="return" type="tns:Management.SNMPConfiguration.AgentXInformation"/>
711
+ </message>
712
+
713
+ <message name="Management.SNMPConfiguration.remove_agentx_informationRequest">
714
+ <part name="agentx_info" type="tns:Management.SNMPConfiguration.AgentXInformation"/>
715
+ </message>
716
+ <message name="Management.SNMPConfiguration.remove_agentx_informationResponse">
717
+ </message>
718
+
719
+ <message name="Management.SNMPConfiguration.set_smux_subagentRequest">
720
+ <part name="subagent_info" type="tns:Management.SNMPConfiguration.SmuxSubAgentInformationSequence"/>
721
+ </message>
722
+ <message name="Management.SNMPConfiguration.set_smux_subagentResponse">
723
+ </message>
724
+
725
+ <message name="Management.SNMPConfiguration.get_smux_subagentRequest">
726
+ </message>
727
+ <message name="Management.SNMPConfiguration.get_smux_subagentResponse">
728
+ <part name="return" type="tns:Management.SNMPConfiguration.SmuxSubAgentInformationSequence"/>
729
+ </message>
730
+
731
+ <message name="Management.SNMPConfiguration.remove_smux_subagentRequest">
732
+ <part name="subagent_info" type="tns:Management.SNMPConfiguration.SmuxSubAgentInformationSequence"/>
733
+ </message>
734
+ <message name="Management.SNMPConfiguration.remove_smux_subagentResponse">
735
+ </message>
736
+
737
+ <message name="Management.SNMPConfiguration.set_dynamic_loadable_moduleRequest">
738
+ <part name="mod_info" type="tns:Management.SNMPConfiguration.DynamicLoadableModuleSequence"/>
739
+ </message>
740
+ <message name="Management.SNMPConfiguration.set_dynamic_loadable_moduleResponse">
741
+ </message>
742
+
743
+ <message name="Management.SNMPConfiguration.get_dynamic_loadable_moduleRequest">
744
+ </message>
745
+ <message name="Management.SNMPConfiguration.get_dynamic_loadable_moduleResponse">
746
+ <part name="return" type="tns:Management.SNMPConfiguration.DynamicLoadableModuleSequence"/>
747
+ </message>
748
+
749
+ <message name="Management.SNMPConfiguration.remove_dynamic_loadable_moduleRequest">
750
+ <part name="mod_info" type="tns:Management.SNMPConfiguration.DynamicLoadableModuleSequence"/>
751
+ </message>
752
+ <message name="Management.SNMPConfiguration.remove_dynamic_loadable_moduleResponse">
753
+ </message>
754
+
755
+ <message name="Management.SNMPConfiguration.set_readonly_communityRequest">
756
+ <part name="ro_community_info" type="tns:Management.SNMPConfiguration.WrapperSecurityInformationSequence"/>
757
+ </message>
758
+ <message name="Management.SNMPConfiguration.set_readonly_communityResponse">
759
+ </message>
760
+
761
+ <message name="Management.SNMPConfiguration.get_readonly_communityRequest">
762
+ </message>
763
+ <message name="Management.SNMPConfiguration.get_readonly_communityResponse">
764
+ <part name="return" type="tns:Management.SNMPConfiguration.WrapperSecurityInformationSequence"/>
765
+ </message>
766
+
767
+ <message name="Management.SNMPConfiguration.remove_readonly_communityRequest">
768
+ <part name="ro_community_info" type="tns:Management.SNMPConfiguration.WrapperSecurityInformationSequence"/>
769
+ </message>
770
+ <message name="Management.SNMPConfiguration.remove_readonly_communityResponse">
771
+ </message>
772
+
773
+ <message name="Management.SNMPConfiguration.set_readwrite_communityRequest">
774
+ <part name="rw_community_info" type="tns:Management.SNMPConfiguration.WrapperSecurityInformationSequence"/>
775
+ </message>
776
+ <message name="Management.SNMPConfiguration.set_readwrite_communityResponse">
777
+ </message>
778
+
779
+ <message name="Management.SNMPConfiguration.get_readwrite_communityRequest">
780
+ </message>
781
+ <message name="Management.SNMPConfiguration.get_readwrite_communityResponse">
782
+ <part name="return" type="tns:Management.SNMPConfiguration.WrapperSecurityInformationSequence"/>
783
+ </message>
784
+
785
+ <message name="Management.SNMPConfiguration.remove_readwrite_communityRequest">
786
+ <part name="rw_community_info" type="tns:Management.SNMPConfiguration.WrapperSecurityInformationSequence"/>
787
+ </message>
788
+ <message name="Management.SNMPConfiguration.remove_readwrite_communityResponse">
789
+ </message>
790
+
791
+ <message name="Management.SNMPConfiguration.set_readonly_userRequest">
792
+ <part name="ro_user_info" type="tns:Management.SNMPConfiguration.WrapperUserInformationSequence"/>
793
+ </message>
794
+ <message name="Management.SNMPConfiguration.set_readonly_userResponse">
795
+ </message>
796
+
797
+ <message name="Management.SNMPConfiguration.get_readonly_userRequest">
798
+ </message>
799
+ <message name="Management.SNMPConfiguration.get_readonly_userResponse">
800
+ <part name="return" type="tns:Management.SNMPConfiguration.WrapperUserInformationSequence"/>
801
+ </message>
802
+
803
+ <message name="Management.SNMPConfiguration.remove_readonly_userRequest">
804
+ <part name="ro_user_info" type="tns:Management.SNMPConfiguration.WrapperUserInformationSequence"/>
805
+ </message>
806
+ <message name="Management.SNMPConfiguration.remove_readonly_userResponse">
807
+ </message>
808
+
809
+ <message name="Management.SNMPConfiguration.set_readwrite_userRequest">
810
+ <part name="rw_user_info" type="tns:Management.SNMPConfiguration.WrapperUserInformationSequence"/>
811
+ </message>
812
+ <message name="Management.SNMPConfiguration.set_readwrite_userResponse">
813
+ </message>
814
+
815
+ <message name="Management.SNMPConfiguration.get_readwrite_userRequest">
816
+ </message>
817
+ <message name="Management.SNMPConfiguration.get_readwrite_userResponse">
818
+ <part name="return" type="tns:Management.SNMPConfiguration.WrapperUserInformationSequence"/>
819
+ </message>
820
+
821
+ <message name="Management.SNMPConfiguration.remove_readwrite_userRequest">
822
+ <part name="rw_user_info" type="tns:Management.SNMPConfiguration.WrapperUserInformationSequence"/>
823
+ </message>
824
+ <message name="Management.SNMPConfiguration.remove_readwrite_userResponse">
825
+ </message>
826
+
827
+ <message name="Management.SNMPConfiguration.set_community_to_security_infoRequest">
828
+ <part name="security_info" type="tns:Management.SNMPConfiguration.SecurityInformationSequence"/>
829
+ </message>
830
+ <message name="Management.SNMPConfiguration.set_community_to_security_infoResponse">
831
+ </message>
832
+
833
+ <message name="Management.SNMPConfiguration.get_community_to_security_infoRequest">
834
+ </message>
835
+ <message name="Management.SNMPConfiguration.get_community_to_security_infoResponse">
836
+ <part name="return" type="tns:Management.SNMPConfiguration.SecurityInformationSequence"/>
837
+ </message>
838
+
839
+ <message name="Management.SNMPConfiguration.remove_community_to_security_infoRequest">
840
+ <part name="security_info" type="tns:Management.SNMPConfiguration.SecurityInformationSequence"/>
841
+ </message>
842
+ <message name="Management.SNMPConfiguration.remove_community_to_security_infoResponse">
843
+ </message>
844
+
845
+ <message name="Management.SNMPConfiguration.set_group_infoRequest">
846
+ <part name="group_info" type="tns:Management.SNMPConfiguration.GroupInformationSequence"/>
847
+ </message>
848
+ <message name="Management.SNMPConfiguration.set_group_infoResponse">
849
+ </message>
850
+
851
+ <message name="Management.SNMPConfiguration.get_group_infoRequest">
852
+ </message>
853
+ <message name="Management.SNMPConfiguration.get_group_infoResponse">
854
+ <part name="return" type="tns:Management.SNMPConfiguration.GroupInformationSequence"/>
855
+ </message>
856
+
857
+ <message name="Management.SNMPConfiguration.remove_group_infoRequest">
858
+ <part name="group_info" type="tns:Management.SNMPConfiguration.GroupInformationSequence"/>
859
+ </message>
860
+ <message name="Management.SNMPConfiguration.remove_group_infoResponse">
861
+ </message>
862
+
863
+ <message name="Management.SNMPConfiguration.set_view_infoRequest">
864
+ <part name="view_info" type="tns:Management.SNMPConfiguration.ViewInformationSequence"/>
865
+ </message>
866
+ <message name="Management.SNMPConfiguration.set_view_infoResponse">
867
+ </message>
868
+
869
+ <message name="Management.SNMPConfiguration.get_view_infoRequest">
870
+ </message>
871
+ <message name="Management.SNMPConfiguration.get_view_infoResponse">
872
+ <part name="return" type="tns:Management.SNMPConfiguration.ViewInformationSequence"/>
873
+ </message>
874
+
875
+ <message name="Management.SNMPConfiguration.remove_view_infoRequest">
876
+ <part name="view_info" type="tns:Management.SNMPConfiguration.ViewInformationSequence"/>
877
+ </message>
878
+ <message name="Management.SNMPConfiguration.remove_view_infoResponse">
879
+ </message>
880
+
881
+ <message name="Management.SNMPConfiguration.set_access_infoRequest">
882
+ <part name="access_info" type="tns:Management.SNMPConfiguration.AccessInformationSequence"/>
883
+ </message>
884
+ <message name="Management.SNMPConfiguration.set_access_infoResponse">
885
+ </message>
886
+
887
+ <message name="Management.SNMPConfiguration.get_access_infoRequest">
888
+ </message>
889
+ <message name="Management.SNMPConfiguration.get_access_infoResponse">
890
+ <part name="return" type="tns:Management.SNMPConfiguration.AccessInformationSequence"/>
891
+ </message>
892
+
893
+ <message name="Management.SNMPConfiguration.remove_access_infoRequest">
894
+ <part name="access_info" type="tns:Management.SNMPConfiguration.AccessInformationSequence"/>
895
+ </message>
896
+ <message name="Management.SNMPConfiguration.remove_access_infoResponse">
897
+ </message>
898
+
899
+ <message name="Management.SNMPConfiguration.set_engine_idRequest">
900
+ <part name="engine_id" type="xsd:string"/>
901
+ </message>
902
+ <message name="Management.SNMPConfiguration.set_engine_idResponse">
903
+ </message>
904
+
905
+ <message name="Management.SNMPConfiguration.get_engine_idRequest">
906
+ </message>
907
+ <message name="Management.SNMPConfiguration.get_engine_idResponse">
908
+ <part name="return" type="xsd:string"/>
909
+ </message>
910
+
911
+ <message name="Management.SNMPConfiguration.remove_engine_idRequest">
912
+ <part name="engine_id" type="xsd:string"/>
913
+ </message>
914
+ <message name="Management.SNMPConfiguration.remove_engine_idResponse">
915
+ </message>
916
+
917
+ <message name="Management.SNMPConfiguration.set_create_userRequest">
918
+ <part name="user_info" type="tns:Management.SNMPConfiguration.UserInformationSequence"/>
919
+ </message>
920
+ <message name="Management.SNMPConfiguration.set_create_userResponse">
921
+ </message>
922
+
923
+ <message name="Management.SNMPConfiguration.get_create_userRequest">
924
+ </message>
925
+ <message name="Management.SNMPConfiguration.get_create_userResponse">
926
+ <part name="return" type="tns:Management.SNMPConfiguration.UserInformationSequence"/>
927
+ </message>
928
+
929
+ <message name="Management.SNMPConfiguration.remove_create_userRequest">
930
+ <part name="user_info" type="tns:Management.SNMPConfiguration.UserInformationSequence"/>
931
+ </message>
932
+ <message name="Management.SNMPConfiguration.remove_create_userResponse">
933
+ </message>
934
+
935
+ <message name="Management.SNMPConfiguration.set_system_informationRequest">
936
+ <part name="system_info" type="tns:Management.SNMPConfiguration.SystemInformation"/>
937
+ </message>
938
+ <message name="Management.SNMPConfiguration.set_system_informationResponse">
939
+ </message>
940
+
941
+ <message name="Management.SNMPConfiguration.get_system_informationRequest">
942
+ </message>
943
+ <message name="Management.SNMPConfiguration.get_system_informationResponse">
944
+ <part name="return" type="tns:Management.SNMPConfiguration.SystemInformation"/>
945
+ </message>
946
+
947
+ <message name="Management.SNMPConfiguration.remove_system_informationRequest">
948
+ <part name="system_info" type="tns:Management.SNMPConfiguration.SystemInformation"/>
949
+ </message>
950
+ <message name="Management.SNMPConfiguration.remove_system_informationResponse">
951
+ </message>
952
+
953
+ <message name="Management.SNMPConfiguration.set_agent_listen_addressRequest">
954
+ <part name="agent_listen_addresses" type="tns:Management.SNMPConfiguration.AgentListenAddressPortSequence"/>
955
+ </message>
956
+ <message name="Management.SNMPConfiguration.set_agent_listen_addressResponse">
957
+ </message>
958
+
959
+ <message name="Management.SNMPConfiguration.get_agent_listen_addressRequest">
960
+ </message>
961
+ <message name="Management.SNMPConfiguration.get_agent_listen_addressResponse">
962
+ <part name="return" type="tns:Management.SNMPConfiguration.AgentListenAddressPortSequence"/>
963
+ </message>
964
+
965
+ <message name="Management.SNMPConfiguration.remove_agent_listen_addressRequest">
966
+ <part name="agent_listen_addresses" type="tns:Management.SNMPConfiguration.AgentListenAddressPortSequence"/>
967
+ </message>
968
+ <message name="Management.SNMPConfiguration.remove_agent_listen_addressResponse">
969
+ </message>
970
+
971
+ <message name="Management.SNMPConfiguration.set_agent_group_idRequest">
972
+ <part name="group_id" type="xsd:string"/>
973
+ </message>
974
+ <message name="Management.SNMPConfiguration.set_agent_group_idResponse">
975
+ </message>
976
+
977
+ <message name="Management.SNMPConfiguration.get_agent_group_idRequest">
978
+ </message>
979
+ <message name="Management.SNMPConfiguration.get_agent_group_idResponse">
980
+ <part name="return" type="xsd:string"/>
981
+ </message>
982
+
983
+ <message name="Management.SNMPConfiguration.remove_agent_group_idRequest">
984
+ <part name="group_id" type="xsd:string"/>
985
+ </message>
986
+ <message name="Management.SNMPConfiguration.remove_agent_group_idResponse">
987
+ </message>
988
+
989
+ <message name="Management.SNMPConfiguration.set_agent_user_idRequest">
990
+ <part name="user_id" type="xsd:string"/>
991
+ </message>
992
+ <message name="Management.SNMPConfiguration.set_agent_user_idResponse">
993
+ </message>
994
+
995
+ <message name="Management.SNMPConfiguration.get_agent_user_idRequest">
996
+ </message>
997
+ <message name="Management.SNMPConfiguration.get_agent_user_idResponse">
998
+ <part name="return" type="xsd:string"/>
999
+ </message>
1000
+
1001
+ <message name="Management.SNMPConfiguration.remove_agent_user_idRequest">
1002
+ <part name="user_id" type="xsd:string"/>
1003
+ </message>
1004
+ <message name="Management.SNMPConfiguration.remove_agent_user_idResponse">
1005
+ </message>
1006
+
1007
+ <message name="Management.SNMPConfiguration.set_agent_interfaceRequest">
1008
+ <part name="agent_intf" type="tns:Management.SNMPConfiguration.AgentInterface"/>
1009
+ </message>
1010
+ <message name="Management.SNMPConfiguration.set_agent_interfaceResponse">
1011
+ </message>
1012
+
1013
+ <message name="Management.SNMPConfiguration.get_agent_interfaceRequest">
1014
+ </message>
1015
+ <message name="Management.SNMPConfiguration.get_agent_interfaceResponse">
1016
+ <part name="return" type="tns:Management.SNMPConfiguration.AgentInterface"/>
1017
+ </message>
1018
+
1019
+ <message name="Management.SNMPConfiguration.remove_agent_interfaceRequest">
1020
+ <part name="agent_intf" type="tns:Management.SNMPConfiguration.AgentInterface"/>
1021
+ </message>
1022
+ <message name="Management.SNMPConfiguration.remove_agent_interfaceResponse">
1023
+ </message>
1024
+
1025
+ <message name="Management.SNMPConfiguration.set_auth_trap_stateRequest">
1026
+ <part name="state" type="tns:Common.EnabledState"/>
1027
+ </message>
1028
+ <message name="Management.SNMPConfiguration.set_auth_trap_stateResponse">
1029
+ </message>
1030
+
1031
+ <message name="Management.SNMPConfiguration.get_auth_trap_stateRequest">
1032
+ </message>
1033
+ <message name="Management.SNMPConfiguration.get_auth_trap_stateResponse">
1034
+ <part name="return" type="tns:Common.EnabledState"/>
1035
+ </message>
1036
+
1037
+ <message name="Management.SNMPConfiguration.remove_auth_trap_stateRequest">
1038
+ <part name="state" type="tns:Common.EnabledState"/>
1039
+ </message>
1040
+ <message name="Management.SNMPConfiguration.remove_auth_trap_stateResponse">
1041
+ </message>
1042
+
1043
+ <message name="Management.SNMPConfiguration.set_agent_trap_stateRequest">
1044
+ <part name="state" type="tns:Common.EnabledState"/>
1045
+ </message>
1046
+ <message name="Management.SNMPConfiguration.set_agent_trap_stateResponse">
1047
+ </message>
1048
+
1049
+ <message name="Management.SNMPConfiguration.get_agent_trap_stateRequest">
1050
+ </message>
1051
+ <message name="Management.SNMPConfiguration.get_agent_trap_stateResponse">
1052
+ <part name="return" type="tns:Common.EnabledState"/>
1053
+ </message>
1054
+
1055
+ <message name="Management.SNMPConfiguration.remove_agent_trap_stateRequest">
1056
+ <part name="state" type="tns:Common.EnabledState"/>
1057
+ </message>
1058
+ <message name="Management.SNMPConfiguration.remove_agent_trap_stateResponse">
1059
+ </message>
1060
+
1061
+ <message name="Management.SNMPConfiguration.set_trap_communityRequest">
1062
+ <part name="community" type="xsd:string"/>
1063
+ </message>
1064
+ <message name="Management.SNMPConfiguration.set_trap_communityResponse">
1065
+ </message>
1066
+
1067
+ <message name="Management.SNMPConfiguration.get_trap_communityRequest">
1068
+ </message>
1069
+ <message name="Management.SNMPConfiguration.get_trap_communityResponse">
1070
+ <part name="return" type="xsd:string"/>
1071
+ </message>
1072
+
1073
+ <message name="Management.SNMPConfiguration.remove_trap_communityRequest">
1074
+ <part name="community" type="xsd:string"/>
1075
+ </message>
1076
+ <message name="Management.SNMPConfiguration.remove_trap_communityResponse">
1077
+ </message>
1078
+
1079
+ <message name="Management.SNMPConfiguration.set_trap_sinksRequest">
1080
+ <part name="sink_type" type="tns:Management.SNMPConfiguration.SinkType"/>
1081
+ <part name="sink_info" type="tns:Management.SNMPConfiguration.SinkInformationSequence"/>
1082
+ </message>
1083
+ <message name="Management.SNMPConfiguration.set_trap_sinksResponse">
1084
+ </message>
1085
+
1086
+ <message name="Management.SNMPConfiguration.get_trap_sinksRequest">
1087
+ <part name="sink_type" type="tns:Management.SNMPConfiguration.SinkType"/>
1088
+ </message>
1089
+ <message name="Management.SNMPConfiguration.get_trap_sinksResponse">
1090
+ <part name="return" type="tns:Management.SNMPConfiguration.SinkInformationSequence"/>
1091
+ </message>
1092
+
1093
+ <message name="Management.SNMPConfiguration.remove_trap_sinksRequest">
1094
+ <part name="sink_type" type="tns:Management.SNMPConfiguration.SinkType"/>
1095
+ <part name="sink_info" type="tns:Management.SNMPConfiguration.SinkInformationSequence"/>
1096
+ </message>
1097
+ <message name="Management.SNMPConfiguration.remove_trap_sinksResponse">
1098
+ </message>
1099
+
1100
+ <message name="Management.SNMPConfiguration.set_generic_trapsRequest">
1101
+ <part name="sink_info" type="tns:Management.SNMPConfiguration.GenericSinkInformationSequence"/>
1102
+ </message>
1103
+ <message name="Management.SNMPConfiguration.set_generic_trapsResponse">
1104
+ </message>
1105
+
1106
+ <message name="Management.SNMPConfiguration.get_generic_trapsRequest">
1107
+ </message>
1108
+ <message name="Management.SNMPConfiguration.get_generic_trapsResponse">
1109
+ <part name="return" type="tns:Management.SNMPConfiguration.GenericSinkInformationSequence"/>
1110
+ </message>
1111
+
1112
+ <message name="Management.SNMPConfiguration.remove_generic_trapsRequest">
1113
+ <part name="sink_info" type="tns:Management.SNMPConfiguration.GenericSinkInformationSequence"/>
1114
+ </message>
1115
+ <message name="Management.SNMPConfiguration.remove_generic_trapsResponse">
1116
+ </message>
1117
+
1118
+ <message name="Management.SNMPConfiguration.set_generic_traps_v2Request">
1119
+ <part name="sink_info" type="tns:Management.SNMPConfiguration.GenericSinkInformation2Sequence"/>
1120
+ </message>
1121
+ <message name="Management.SNMPConfiguration.set_generic_traps_v2Response">
1122
+ </message>
1123
+
1124
+ <message name="Management.SNMPConfiguration.get_generic_traps_v2Request">
1125
+ </message>
1126
+ <message name="Management.SNMPConfiguration.get_generic_traps_v2Response">
1127
+ <part name="return" type="tns:Management.SNMPConfiguration.GenericSinkInformation2Sequence"/>
1128
+ </message>
1129
+
1130
+ <message name="Management.SNMPConfiguration.remove_generic_traps_v2Request">
1131
+ <part name="sink_info" type="tns:Management.SNMPConfiguration.GenericSinkInformation2Sequence"/>
1132
+ </message>
1133
+ <message name="Management.SNMPConfiguration.remove_generic_traps_v2Response">
1134
+ </message>
1135
+
1136
+ <message name="Management.SNMPConfiguration.set_proxyRequest">
1137
+ <part name="proxy_info" type="tns:Common.StringSequence"/>
1138
+ </message>
1139
+ <message name="Management.SNMPConfiguration.set_proxyResponse">
1140
+ </message>
1141
+
1142
+ <message name="Management.SNMPConfiguration.get_proxyRequest">
1143
+ </message>
1144
+ <message name="Management.SNMPConfiguration.get_proxyResponse">
1145
+ <part name="return" type="tns:Common.StringSequence"/>
1146
+ </message>
1147
+
1148
+ <message name="Management.SNMPConfiguration.remove_proxyRequest">
1149
+ <part name="proxy_info" type="tns:Common.StringSequence"/>
1150
+ </message>
1151
+ <message name="Management.SNMPConfiguration.remove_proxyResponse">
1152
+ </message>
1153
+
1154
+ <message name="Management.SNMPConfiguration.set_pass_throughRequest">
1155
+ <part name="passthru_info" type="tns:Management.SNMPConfiguration.PassThroughInformationSequence"/>
1156
+ </message>
1157
+ <message name="Management.SNMPConfiguration.set_pass_throughResponse">
1158
+ </message>
1159
+
1160
+ <message name="Management.SNMPConfiguration.get_pass_throughRequest">
1161
+ </message>
1162
+ <message name="Management.SNMPConfiguration.get_pass_throughResponse">
1163
+ <part name="return" type="tns:Management.SNMPConfiguration.PassThroughInformationSequence"/>
1164
+ </message>
1165
+
1166
+ <message name="Management.SNMPConfiguration.remove_pass_throughRequest">
1167
+ <part name="passthru_info" type="tns:Management.SNMPConfiguration.PassThroughInformationSequence"/>
1168
+ </message>
1169
+ <message name="Management.SNMPConfiguration.remove_pass_throughResponse">
1170
+ </message>
1171
+
1172
+ <message name="Management.SNMPConfiguration.set_pass_through_persistRequest">
1173
+ <part name="passthru_info" type="tns:Management.SNMPConfiguration.PassThroughInformationSequence"/>
1174
+ </message>
1175
+ <message name="Management.SNMPConfiguration.set_pass_through_persistResponse">
1176
+ </message>
1177
+
1178
+ <message name="Management.SNMPConfiguration.get_pass_through_persistRequest">
1179
+ </message>
1180
+ <message name="Management.SNMPConfiguration.get_pass_through_persistResponse">
1181
+ <part name="return" type="tns:Management.SNMPConfiguration.PassThroughInformationSequence"/>
1182
+ </message>
1183
+
1184
+ <message name="Management.SNMPConfiguration.remove_pass_through_persistRequest">
1185
+ <part name="passthru_info" type="tns:Management.SNMPConfiguration.PassThroughInformationSequence"/>
1186
+ </message>
1187
+ <message name="Management.SNMPConfiguration.remove_pass_through_persistResponse">
1188
+ </message>
1189
+
1190
+ <message name="Management.SNMPConfiguration.set_client_accessRequest">
1191
+ <part name="client_access_info" type="tns:Management.SNMPConfiguration.ClientAccessSequence"/>
1192
+ </message>
1193
+ <message name="Management.SNMPConfiguration.set_client_accessResponse">
1194
+ </message>
1195
+
1196
+ <message name="Management.SNMPConfiguration.get_client_accessRequest">
1197
+ </message>
1198
+ <message name="Management.SNMPConfiguration.get_client_accessResponse">
1199
+ <part name="return" type="tns:Management.SNMPConfiguration.ClientAccessSequence"/>
1200
+ </message>
1201
+
1202
+ <message name="Management.SNMPConfiguration.remove_client_accessRequest">
1203
+ <part name="client_access_info" type="tns:Management.SNMPConfiguration.ClientAccessSequence"/>
1204
+ </message>
1205
+ <message name="Management.SNMPConfiguration.remove_client_accessResponse">
1206
+ </message>
1207
+
1208
+ <message name="Management.SNMPConfiguration.get_versionRequest">
1209
+ </message>
1210
+ <message name="Management.SNMPConfiguration.get_versionResponse">
1211
+ <part name="return" type="xsd:string"/>
1212
+ </message>
1213
+
1214
+ <!-- portType -->
1215
+
1216
+ <portType name="Management.SNMPConfigurationPortType">
1217
+ <operation name="set_check_process">
1218
+ <documentation>
1219
+ Creates a process check. A process check is used to check to see if the
1220
+ process_name's processes are running on the agent's machine. An error flag(1)
1221
+ and a description message are then passed to the EXTENSIBLEDOTMIB.PROCMIBNUM.1.ERRORFLAG
1222
+ and EXTENSIBLEDOTMIB.PROCMIBNUM.1.ERRORMSG mib columns if the process_name'd program
1223
+ is not found on the process table as reported by PSCMD.
1224
+
1225
+ </documentation>
1226
+ <input message="tns:Management.SNMPConfiguration.set_check_processRequest"/>
1227
+ <output message="tns:Management.SNMPConfiguration.set_check_processResponse"/>
1228
+ </operation>
1229
+ <operation name="get_check_process">
1230
+ <documentation>
1231
+ Gets a list of process checks. A process check is used to check to see if the
1232
+ process_name'd processes are running on the agent's machine. An error flag(1) and
1233
+ a description message are then passed to the EXTENSIBLEDOTMIB.PROCMIBNUM.1.ERRORFLAG
1234
+ and EXTENSIBLEDOTMIB.PROCMIBNUM.1.ERRORMSG mib columns if the process_name'd program
1235
+ is not found on the process table as reported by PSCMD.
1236
+
1237
+ </documentation>
1238
+ <input message="tns:Management.SNMPConfiguration.get_check_processRequest"/>
1239
+ <output message="tns:Management.SNMPConfiguration.get_check_processResponse"/>
1240
+ </operation>
1241
+ <operation name="remove_check_process">
1242
+ <documentation>
1243
+ Removes a process check. A process check is used to check to see if the
1244
+ process_name's processes are running on the agent's machine. An error flag(1)
1245
+ and a description message are then passed to the EXTENSIBLEDOTMIB.PROCMIBNUM.1.ERRORFLAG
1246
+ and EXTENSIBLEDOTMIB.PROCMIBNUM.1.ERRORMSG mib columns if the process_name's program
1247
+ is not found on the process table as reported by PSCMD.
1248
+
1249
+ </documentation>
1250
+ <input message="tns:Management.SNMPConfiguration.remove_check_processRequest"/>
1251
+ <output message="tns:Management.SNMPConfiguration.remove_check_processResponse"/>
1252
+ </operation>
1253
+ <operation name="set_process_fix">
1254
+ <documentation>
1255
+ Sets a process fix instance that registers a command that knows how to fix
1256
+ errors with the given process.
1257
+
1258
+ </documentation>
1259
+ <input message="tns:Management.SNMPConfiguration.set_process_fixRequest"/>
1260
+ <output message="tns:Management.SNMPConfiguration.set_process_fixResponse"/>
1261
+ </operation>
1262
+ <operation name="get_process_fix">
1263
+ <documentation>
1264
+ Retrieves a list of the current process fix instances.
1265
+
1266
+ </documentation>
1267
+ <input message="tns:Management.SNMPConfiguration.get_process_fixRequest"/>
1268
+ <output message="tns:Management.SNMPConfiguration.get_process_fixResponse"/>
1269
+ </operation>
1270
+ <operation name="remove_process_fix">
1271
+ <documentation>
1272
+ Removes a process fix instance.
1273
+
1274
+ </documentation>
1275
+ <input message="tns:Management.SNMPConfiguration.remove_process_fixRequest"/>
1276
+ <output message="tns:Management.SNMPConfiguration.remove_process_fixResponse"/>
1277
+ </operation>
1278
+ <operation name="set_exec">
1279
+ <documentation>
1280
+ Creates a program instance, used to signal the agent to execute the named
1281
+ program with the given arguments and returns the exit status and the first
1282
+ line of the STDOUT output of the program to queries of the EXTENSIBLEDOTMIB.SHELLMIBNUM.mib_num.ERRORFLAG
1283
+ and EXTENSIBLEDOTMIB.SHELLMIBNUM.mib_num.ERRORMSG mib columns. The mib_num.ERRORMSG
1284
+ mib contains the entire STDOUT output, one mib table entry per line of output.
1285
+
1286
+ </documentation>
1287
+ <input message="tns:Management.SNMPConfiguration.set_execRequest"/>
1288
+ <output message="tns:Management.SNMPConfiguration.set_execResponse"/>
1289
+ </operation>
1290
+ <operation name="get_exec">
1291
+ <documentation>
1292
+ Gets a list of program instances.
1293
+
1294
+ </documentation>
1295
+ <input message="tns:Management.SNMPConfiguration.get_execRequest"/>
1296
+ <output message="tns:Management.SNMPConfiguration.get_execResponse"/>
1297
+ </operation>
1298
+ <operation name="remove_exec">
1299
+ <documentation>
1300
+ Removes a program instance.
1301
+
1302
+ </documentation>
1303
+ <input message="tns:Management.SNMPConfiguration.remove_execRequest"/>
1304
+ <output message="tns:Management.SNMPConfiguration.remove_execResponse"/>
1305
+ </operation>
1306
+ <operation name="set_exec_fix">
1307
+ <documentation>
1308
+ Sets an exec fix instance that registers a command that knows how to fix
1309
+ errors with the given program.
1310
+
1311
+ </documentation>
1312
+ <input message="tns:Management.SNMPConfiguration.set_exec_fixRequest"/>
1313
+ <output message="tns:Management.SNMPConfiguration.set_exec_fixResponse"/>
1314
+ </operation>
1315
+ <operation name="get_exec_fix">
1316
+ <documentation>
1317
+ Gets a list of exec fix instances.
1318
+
1319
+ </documentation>
1320
+ <input message="tns:Management.SNMPConfiguration.get_exec_fixRequest"/>
1321
+ <output message="tns:Management.SNMPConfiguration.get_exec_fixResponse"/>
1322
+ </operation>
1323
+ <operation name="remove_exec_fix">
1324
+ <documentation>
1325
+ Removes an exec fix instance.
1326
+
1327
+ </documentation>
1328
+ <input message="tns:Management.SNMPConfiguration.remove_exec_fixRequest"/>
1329
+ <output message="tns:Management.SNMPConfiguration.remove_exec_fixResponse"/>
1330
+ </operation>
1331
+ <operation name="set_check_disk">
1332
+ <documentation>
1333
+ Creates a disk check instance. This is used to check the named disks mounted
1334
+ on path for available disk space. If the disk space is less than minimum_space
1335
+ (kb or %), the associated entry in the EXTENSIBLEDOTMIB.DISKMIBNUM.1.ERRORFLAG mib
1336
+ table will be set to (1) and a descriptive error message will be returned to queries
1337
+ of EXTENSIBLEDOTMIB.DISKMIBNUM.1.ERRORMSG.
1338
+
1339
+ </documentation>
1340
+ <input message="tns:Management.SNMPConfiguration.set_check_diskRequest"/>
1341
+ <output message="tns:Management.SNMPConfiguration.set_check_diskResponse"/>
1342
+ </operation>
1343
+ <operation name="get_check_disk">
1344
+ <documentation>
1345
+ Gets a list of disk check instances.
1346
+
1347
+ </documentation>
1348
+ <input message="tns:Management.SNMPConfiguration.get_check_diskRequest"/>
1349
+ <output message="tns:Management.SNMPConfiguration.get_check_diskResponse"/>
1350
+ </operation>
1351
+ <operation name="remove_check_disk">
1352
+ <documentation>
1353
+ Removes a disk check instance.
1354
+
1355
+ </documentation>
1356
+ <input message="tns:Management.SNMPConfiguration.remove_check_diskRequest"/>
1357
+ <output message="tns:Management.SNMPConfiguration.remove_check_diskResponse"/>
1358
+ </operation>
1359
+ <operation name="set_ignore_disk">
1360
+ <documentation>
1361
+ Adds disk devices to the ignore list. When scanning for available disk
1362
+ devices the agent might block in trying to open all possible disk devices.
1363
+ This might lead to a timeout wheen walking the device tree. Sometimes it will
1364
+ timeout every time you try it. Adding a ignore disk directive will specify
1365
+ device names not to be checked (i.e. opened).
1366
+
1367
+ </documentation>
1368
+ <input message="tns:Management.SNMPConfiguration.set_ignore_diskRequest"/>
1369
+ <output message="tns:Management.SNMPConfiguration.set_ignore_diskResponse"/>
1370
+ </operation>
1371
+ <operation name="get_ignore_disk">
1372
+ <documentation>
1373
+ Return a list of disk devices currently ignored.
1374
+
1375
+ </documentation>
1376
+ <input message="tns:Management.SNMPConfiguration.get_ignore_diskRequest"/>
1377
+ <output message="tns:Management.SNMPConfiguration.get_ignore_diskResponse"/>
1378
+ </operation>
1379
+ <operation name="remove_ignore_disk">
1380
+ <documentation>
1381
+ Removes a disk device from the ignore list.
1382
+
1383
+ </documentation>
1384
+ <input message="tns:Management.SNMPConfiguration.remove_ignore_diskRequest"/>
1385
+ <output message="tns:Management.SNMPConfiguration.remove_ignore_diskResponse"/>
1386
+ </operation>
1387
+ <operation name="set_storage_use_nfs">
1388
+ <documentation>
1389
+ This method is deprecated (immediately) and should not be
1390
+ used, in order to ensure proper operation of the system.
1391
+
1392
+ Adds a directive to indicate how file systems are marked by SNMP.
1393
+ Setting this directive to 1 causes all NFS and NFS-like file systems
1394
+ to be marked as 'Network Disks' in the hrStorageTable. This is according
1395
+ to RFC 2790. Not setting storageUseNFS or setting it to 2 causes NFS
1396
+ and NFS-like file systems to be marked as 'Fixed Disks' as it has been
1397
+ in previous versions of the ucd-snmp SNMP agent.
1398
+
1399
+ </documentation>
1400
+ <input message="tns:Management.SNMPConfiguration.set_storage_use_nfsRequest"/>
1401
+ <output message="tns:Management.SNMPConfiguration.set_storage_use_nfsResponse"/>
1402
+ </operation>
1403
+ <operation name="get_storage_use_nfs">
1404
+ <documentation>
1405
+ This method is deprecated (immediately) and should not be
1406
+ used, in order to ensure proper operation of the system.
1407
+
1408
+ Gets directive to indicate how file systems are marked by SNMP.
1409
+ Setting this directive to 1 causes all NFS and NFS-like file systems
1410
+ to be marked as 'Network Disks' in the hrStorageTable. This is according
1411
+ to RFC 2790. Not setting storageUseNFS or setting it to 2 causes NFS
1412
+ and NFS-like file systems to be marked as 'Fixed Disks' as it has been
1413
+ in previous versions of the ucd-snmp SNMP agent.
1414
+
1415
+ </documentation>
1416
+ <input message="tns:Management.SNMPConfiguration.get_storage_use_nfsRequest"/>
1417
+ <output message="tns:Management.SNMPConfiguration.get_storage_use_nfsResponse"/>
1418
+ </operation>
1419
+ <operation name="remove_storage_use_nfs">
1420
+ <documentation>
1421
+ This method is deprecated (immediately) and should not be
1422
+ used, in order to ensure proper operation of the system.
1423
+
1424
+ Removes directive to indicate how file systems are marked by SNMP.
1425
+ Setting this directive to 1 causes all NFS and NFS-like file systems
1426
+ to be marked as 'Network Disks' in the hrStorageTable. This is according
1427
+ to RFC 2790. Not setting storageUseNFS or setting it to 2 causes NFS
1428
+ and NFS-like file systems to be marked as 'Fixed Disks' as it has been
1429
+ in previous versions of the ucd-snmp SNMP agent.
1430
+
1431
+ </documentation>
1432
+ <input message="tns:Management.SNMPConfiguration.remove_storage_use_nfsRequest"/>
1433
+ <output message="tns:Management.SNMPConfiguration.remove_storage_use_nfsResponse"/>
1434
+ </operation>
1435
+ <operation name="set_check_file">
1436
+ <documentation>
1437
+ Adds a file check used to monitor file sizes and make sure they don't grow
1438
+ beyond a certain size (in kilobytes).
1439
+
1440
+ </documentation>
1441
+ <input message="tns:Management.SNMPConfiguration.set_check_fileRequest"/>
1442
+ <output message="tns:Management.SNMPConfiguration.set_check_fileResponse"/>
1443
+ </operation>
1444
+ <operation name="get_check_file">
1445
+ <documentation>
1446
+ Gets a list of available file checks.
1447
+
1448
+ </documentation>
1449
+ <input message="tns:Management.SNMPConfiguration.get_check_fileRequest"/>
1450
+ <output message="tns:Management.SNMPConfiguration.get_check_fileResponse"/>
1451
+ </operation>
1452
+ <operation name="remove_check_file">
1453
+ <documentation>
1454
+ Removes a file check.
1455
+
1456
+ </documentation>
1457
+ <input message="tns:Management.SNMPConfiguration.remove_check_fileRequest"/>
1458
+ <output message="tns:Management.SNMPConfiguration.remove_check_fileResponse"/>
1459
+ </operation>
1460
+ <operation name="set_check_load">
1461
+ <documentation>
1462
+ Adds a load check used to check the load average of the machine and returns
1463
+ an error flag (1), and a text-string error message to queries of
1464
+ EXTENSIBLEDOTMIB.LOADAVEMIBNUM.1.ERRORFLAG and
1465
+ EXTENSIBLEDOTMIB.LOADAVEMIBNUM.1.ERRORMSG respectively when the 1-minute,
1466
+ 5-minute, or 15-minute averages exceed the associated maximum values.
1467
+
1468
+ </documentation>
1469
+ <input message="tns:Management.SNMPConfiguration.set_check_loadRequest"/>
1470
+ <output message="tns:Management.SNMPConfiguration.set_check_loadResponse"/>
1471
+ </operation>
1472
+ <operation name="get_check_load">
1473
+ <documentation>
1474
+ Gets load check.
1475
+
1476
+ </documentation>
1477
+ <input message="tns:Management.SNMPConfiguration.get_check_loadRequest"/>
1478
+ <output message="tns:Management.SNMPConfiguration.get_check_loadResponse"/>
1479
+ </operation>
1480
+ <operation name="remove_check_load">
1481
+ <documentation>
1482
+ Removes a load check.
1483
+
1484
+ </documentation>
1485
+ <input message="tns:Management.SNMPConfiguration.remove_check_loadRequest"/>
1486
+ <output message="tns:Management.SNMPConfiguration.remove_check_loadResponse"/>
1487
+ </operation>
1488
+ <operation name="set_agentx_information">
1489
+ <documentation>
1490
+ This method is deprecated (immediately) and should not be
1491
+ used, in order to ensure proper operation of the system.
1492
+
1493
+ Sets the AgentX information.
1494
+
1495
+ </documentation>
1496
+ <input message="tns:Management.SNMPConfiguration.set_agentx_informationRequest"/>
1497
+ <output message="tns:Management.SNMPConfiguration.set_agentx_informationResponse"/>
1498
+ </operation>
1499
+ <operation name="get_agentx_information">
1500
+ <documentation>
1501
+ This method is deprecated (immediately) and should not be
1502
+ used, in order to ensure proper operation of the system.
1503
+
1504
+ Gets the AgentX information.
1505
+
1506
+ </documentation>
1507
+ <input message="tns:Management.SNMPConfiguration.get_agentx_informationRequest"/>
1508
+ <output message="tns:Management.SNMPConfiguration.get_agentx_informationResponse"/>
1509
+ </operation>
1510
+ <operation name="remove_agentx_information">
1511
+ <documentation>
1512
+ This method is deprecated (immediately) and should not be
1513
+ used, in order to ensure proper operation of the system.
1514
+
1515
+ Removes the AgentX information.
1516
+
1517
+ </documentation>
1518
+ <input message="tns:Management.SNMPConfiguration.remove_agentx_informationRequest"/>
1519
+ <output message="tns:Management.SNMPConfiguration.remove_agentx_informationResponse"/>
1520
+ </operation>
1521
+ <operation name="set_smux_subagent">
1522
+ <documentation>
1523
+ This method is deprecated (immediately) and should not be
1524
+ used, in order to ensure proper operation of the system.
1525
+
1526
+ Creates a SMUX based sub-agent, such as gated.
1527
+
1528
+ </documentation>
1529
+ <input message="tns:Management.SNMPConfiguration.set_smux_subagentRequest"/>
1530
+ <output message="tns:Management.SNMPConfiguration.set_smux_subagentResponse"/>
1531
+ </operation>
1532
+ <operation name="get_smux_subagent">
1533
+ <documentation>
1534
+ This method is deprecated (immediately) and should not be
1535
+ used, in order to ensure proper operation of the system.
1536
+
1537
+ Gets a list of SMUX based sub-agents.
1538
+
1539
+ </documentation>
1540
+ <input message="tns:Management.SNMPConfiguration.get_smux_subagentRequest"/>
1541
+ <output message="tns:Management.SNMPConfiguration.get_smux_subagentResponse"/>
1542
+ </operation>
1543
+ <operation name="remove_smux_subagent">
1544
+ <documentation>
1545
+ This method is deprecated (immediately) and should not be
1546
+ used, in order to ensure proper operation of the system.
1547
+
1548
+ Removes a SMUX based sub-agent.
1549
+
1550
+ </documentation>
1551
+ <input message="tns:Management.SNMPConfiguration.remove_smux_subagentRequest"/>
1552
+ <output message="tns:Management.SNMPConfiguration.remove_smux_subagentResponse"/>
1553
+ </operation>
1554
+ <operation name="set_dynamic_loadable_module">
1555
+ <documentation>
1556
+ This method is deprecated (immediately) and should not be
1557
+ used, in order to ensure proper operation of the system.
1558
+
1559
+ Creates a dynmically loadable module instance. If the agent is built with
1560
+ support for the UCD-DLMOD-MIB it is cabable of loading agent MIB modules
1561
+ dynamically at startup through the dlmod directive and during runtime through
1562
+ the use of the UCD-DLMOD-MIB. The directive loads the shared object module
1563
+ file path which uses the module name prefix.
1564
+
1565
+ </documentation>
1566
+ <input message="tns:Management.SNMPConfiguration.set_dynamic_loadable_moduleRequest"/>
1567
+ <output message="tns:Management.SNMPConfiguration.set_dynamic_loadable_moduleResponse"/>
1568
+ </operation>
1569
+ <operation name="get_dynamic_loadable_module">
1570
+ <documentation>
1571
+ This method is deprecated (immediately) and should not be
1572
+ used, in order to ensure proper operation of the system.
1573
+
1574
+ Gets a list of dynamically loadable module instances.
1575
+
1576
+ </documentation>
1577
+ <input message="tns:Management.SNMPConfiguration.get_dynamic_loadable_moduleRequest"/>
1578
+ <output message="tns:Management.SNMPConfiguration.get_dynamic_loadable_moduleResponse"/>
1579
+ </operation>
1580
+ <operation name="remove_dynamic_loadable_module">
1581
+ <documentation>
1582
+ This method is deprecated (immediately) and should not be
1583
+ used, in order to ensure proper operation of the system.
1584
+
1585
+ Removes a dynamically loadable module instance.
1586
+
1587
+ </documentation>
1588
+ <input message="tns:Management.SNMPConfiguration.remove_dynamic_loadable_moduleRequest"/>
1589
+ <output message="tns:Management.SNMPConfiguration.remove_dynamic_loadable_moduleResponse"/>
1590
+ </operation>
1591
+ <operation name="set_readonly_community">
1592
+ <documentation>
1593
+ Creates read-only communities that can be used to access the agent.
1594
+ snmpd supports the View-Based Access Control Model (vacm) as defined in RFC 2275.
1595
+
1596
+ </documentation>
1597
+ <input message="tns:Management.SNMPConfiguration.set_readonly_communityRequest"/>
1598
+ <output message="tns:Management.SNMPConfiguration.set_readonly_communityResponse"/>
1599
+ </operation>
1600
+ <operation name="get_readonly_community">
1601
+ <documentation>
1602
+ Gets a list of read-only communities.
1603
+
1604
+ </documentation>
1605
+ <input message="tns:Management.SNMPConfiguration.get_readonly_communityRequest"/>
1606
+ <output message="tns:Management.SNMPConfiguration.get_readonly_communityResponse"/>
1607
+ </operation>
1608
+ <operation name="remove_readonly_community">
1609
+ <documentation>
1610
+ Removes read-only communities.
1611
+
1612
+ </documentation>
1613
+ <input message="tns:Management.SNMPConfiguration.remove_readonly_communityRequest"/>
1614
+ <output message="tns:Management.SNMPConfiguration.remove_readonly_communityResponse"/>
1615
+ </operation>
1616
+ <operation name="set_readwrite_community">
1617
+ <documentation>
1618
+ Creates read-write communities that can be used to access the agent.
1619
+ snmpd supports the View-Based Access Control Model (vacm) as defined in RFC 2275.
1620
+
1621
+ </documentation>
1622
+ <input message="tns:Management.SNMPConfiguration.set_readwrite_communityRequest"/>
1623
+ <output message="tns:Management.SNMPConfiguration.set_readwrite_communityResponse"/>
1624
+ </operation>
1625
+ <operation name="get_readwrite_community">
1626
+ <documentation>
1627
+ Gets a list of read-write communities.
1628
+
1629
+ </documentation>
1630
+ <input message="tns:Management.SNMPConfiguration.get_readwrite_communityRequest"/>
1631
+ <output message="tns:Management.SNMPConfiguration.get_readwrite_communityResponse"/>
1632
+ </operation>
1633
+ <operation name="remove_readwrite_community">
1634
+ <documentation>
1635
+ Removes read-write communities.
1636
+
1637
+ </documentation>
1638
+ <input message="tns:Management.SNMPConfiguration.remove_readwrite_communityRequest"/>
1639
+ <output message="tns:Management.SNMPConfiguration.remove_readwrite_communityResponse"/>
1640
+ </operation>
1641
+ <operation name="set_readonly_user">
1642
+ <documentation>
1643
+ Creates SNMPv3 USM read-only users in the VACM access configuration tables.
1644
+
1645
+ </documentation>
1646
+ <input message="tns:Management.SNMPConfiguration.set_readonly_userRequest"/>
1647
+ <output message="tns:Management.SNMPConfiguration.set_readonly_userResponse"/>
1648
+ </operation>
1649
+ <operation name="get_readonly_user">
1650
+ <documentation>
1651
+ Gets a list of the SNMPv3 USM read-only users in the VACM access configuration tables.
1652
+
1653
+ </documentation>
1654
+ <input message="tns:Management.SNMPConfiguration.get_readonly_userRequest"/>
1655
+ <output message="tns:Management.SNMPConfiguration.get_readonly_userResponse"/>
1656
+ </operation>
1657
+ <operation name="remove_readonly_user">
1658
+ <documentation>
1659
+ Removes SNMPv3 USM read-only users from the VACM access configuration tables.
1660
+
1661
+ </documentation>
1662
+ <input message="tns:Management.SNMPConfiguration.remove_readonly_userRequest"/>
1663
+ <output message="tns:Management.SNMPConfiguration.remove_readonly_userResponse"/>
1664
+ </operation>
1665
+ <operation name="set_readwrite_user">
1666
+ <documentation>
1667
+ Creates SNMPv3 USM read-write users in the VACM access configuration tables.
1668
+
1669
+ </documentation>
1670
+ <input message="tns:Management.SNMPConfiguration.set_readwrite_userRequest"/>
1671
+ <output message="tns:Management.SNMPConfiguration.set_readwrite_userResponse"/>
1672
+ </operation>
1673
+ <operation name="get_readwrite_user">
1674
+ <documentation>
1675
+ Gets a list of the SNMPv3 USM read-write users in the VACM access configuration tables.
1676
+
1677
+ </documentation>
1678
+ <input message="tns:Management.SNMPConfiguration.get_readwrite_userRequest"/>
1679
+ <output message="tns:Management.SNMPConfiguration.get_readwrite_userResponse"/>
1680
+ </operation>
1681
+ <operation name="remove_readwrite_user">
1682
+ <documentation>
1683
+ Removes SNMPv3 USM read-write users from the VACM access configuration tables.
1684
+
1685
+ </documentation>
1686
+ <input message="tns:Management.SNMPConfiguration.remove_readwrite_userRequest"/>
1687
+ <output message="tns:Management.SNMPConfiguration.remove_readwrite_userResponse"/>
1688
+ </operation>
1689
+ <operation name="set_community_to_security_info">
1690
+ <documentation>
1691
+ Creates mappings from a source/community pair to security names. The first
1692
+ source/community combination that matches the incoming packet is selected.
1693
+
1694
+ </documentation>
1695
+ <input message="tns:Management.SNMPConfiguration.set_community_to_security_infoRequest"/>
1696
+ <output message="tns:Management.SNMPConfiguration.set_community_to_security_infoResponse"/>
1697
+ </operation>
1698
+ <operation name="get_community_to_security_info">
1699
+ <documentation>
1700
+ Gets a list of mappings from a source/community pair to security name.
1701
+
1702
+ </documentation>
1703
+ <input message="tns:Management.SNMPConfiguration.get_community_to_security_infoRequest"/>
1704
+ <output message="tns:Management.SNMPConfiguration.get_community_to_security_infoResponse"/>
1705
+ </operation>
1706
+ <operation name="remove_community_to_security_info">
1707
+ <documentation>
1708
+ Removes mappings from a source/community pair to security names.
1709
+
1710
+ </documentation>
1711
+ <input message="tns:Management.SNMPConfiguration.remove_community_to_security_infoRequest"/>
1712
+ <output message="tns:Management.SNMPConfiguration.remove_community_to_security_infoResponse"/>
1713
+ </operation>
1714
+ <operation name="set_group_info">
1715
+ <documentation>
1716
+ Creates mappings from securitymodel/securityname to group.
1717
+
1718
+ </documentation>
1719
+ <input message="tns:Management.SNMPConfiguration.set_group_infoRequest"/>
1720
+ <output message="tns:Management.SNMPConfiguration.set_group_infoResponse"/>
1721
+ </operation>
1722
+ <operation name="get_group_info">
1723
+ <documentation>
1724
+ Gets a list of mappings from securitymodel/securityname to group.
1725
+
1726
+ </documentation>
1727
+ <input message="tns:Management.SNMPConfiguration.get_group_infoRequest"/>
1728
+ <output message="tns:Management.SNMPConfiguration.get_group_infoResponse"/>
1729
+ </operation>
1730
+ <operation name="remove_group_info">
1731
+ <documentation>
1732
+ Removes mappings from securitymodel/securityname to group.
1733
+
1734
+ </documentation>
1735
+ <input message="tns:Management.SNMPConfiguration.remove_group_infoRequest"/>
1736
+ <output message="tns:Management.SNMPConfiguration.remove_group_infoResponse"/>
1737
+ </operation>
1738
+ <operation name="set_view_info">
1739
+ <documentation>
1740
+ Creates named views.
1741
+
1742
+ </documentation>
1743
+ <input message="tns:Management.SNMPConfiguration.set_view_infoRequest"/>
1744
+ <output message="tns:Management.SNMPConfiguration.set_view_infoResponse"/>
1745
+ </operation>
1746
+ <operation name="get_view_info">
1747
+ <documentation>
1748
+ Gets a list of named views.
1749
+
1750
+ </documentation>
1751
+ <input message="tns:Management.SNMPConfiguration.get_view_infoRequest"/>
1752
+ <output message="tns:Management.SNMPConfiguration.get_view_infoResponse"/>
1753
+ </operation>
1754
+ <operation name="remove_view_info">
1755
+ <documentation>
1756
+ Removes a list of named views.
1757
+
1758
+ </documentation>
1759
+ <input message="tns:Management.SNMPConfiguration.remove_view_infoRequest"/>
1760
+ <output message="tns:Management.SNMPConfiguration.remove_view_infoResponse"/>
1761
+ </operation>
1762
+ <operation name="set_access_info">
1763
+ <documentation>
1764
+ Creates access maps from group/securitymodel/security level to a view.
1765
+
1766
+ </documentation>
1767
+ <input message="tns:Management.SNMPConfiguration.set_access_infoRequest"/>
1768
+ <output message="tns:Management.SNMPConfiguration.set_access_infoResponse"/>
1769
+ </operation>
1770
+ <operation name="get_access_info">
1771
+ <documentation>
1772
+ Gets a list of access maps from group/securitymodel/security level to a view.
1773
+
1774
+ </documentation>
1775
+ <input message="tns:Management.SNMPConfiguration.get_access_infoRequest"/>
1776
+ <output message="tns:Management.SNMPConfiguration.get_access_infoResponse"/>
1777
+ </operation>
1778
+ <operation name="remove_access_info">
1779
+ <documentation>
1780
+ Removes access maps from group/securitymodel/security level to a view.
1781
+
1782
+ </documentation>
1783
+ <input message="tns:Management.SNMPConfiguration.remove_access_infoRequest"/>
1784
+ <output message="tns:Management.SNMPConfiguration.remove_access_infoResponse"/>
1785
+ </operation>
1786
+ <operation name="set_engine_id">
1787
+ <documentation>
1788
+ Sets the snmp engine identifier. The snmpd agent needs to be configured with
1789
+ an engine id to be able to respond to SNMPv3 messages.
1790
+
1791
+ </documentation>
1792
+ <input message="tns:Management.SNMPConfiguration.set_engine_idRequest"/>
1793
+ <output message="tns:Management.SNMPConfiguration.set_engine_idResponse"/>
1794
+ </operation>
1795
+ <operation name="get_engine_id">
1796
+ <documentation>
1797
+ Gets the snmp engine identifier.
1798
+
1799
+ </documentation>
1800
+ <input message="tns:Management.SNMPConfiguration.get_engine_idRequest"/>
1801
+ <output message="tns:Management.SNMPConfiguration.get_engine_idResponse"/>
1802
+ </operation>
1803
+ <operation name="remove_engine_id">
1804
+ <documentation>
1805
+ Removes the snmp engine identifier.
1806
+
1807
+ </documentation>
1808
+ <input message="tns:Management.SNMPConfiguration.remove_engine_idRequest"/>
1809
+ <output message="tns:Management.SNMPConfiguration.remove_engine_idResponse"/>
1810
+ </operation>
1811
+ <operation name="set_create_user">
1812
+ <documentation>
1813
+ Creates SNMPv3 users.
1814
+
1815
+ Note: as of v9.4.2, doing this method without having done
1816
+ set_readonly_user or set_readwrite_user first results in a
1817
+ valid (readonly) user rather than silently creating an
1818
+ incomplete but unusable user. However, such behavior is not
1819
+ guaranteed; please do one of the above methods before this
1820
+ method so as to define your new user fully.
1821
+
1822
+ </documentation>
1823
+ <input message="tns:Management.SNMPConfiguration.set_create_userRequest"/>
1824
+ <output message="tns:Management.SNMPConfiguration.set_create_userResponse"/>
1825
+ </operation>
1826
+ <operation name="get_create_user">
1827
+ <documentation>
1828
+ Gets a list of SNMPv3 users. Since the authentication and private passphrases
1829
+ have already been munged by snmpd, this information will not be available in
1830
+ the response. Only the user_name, the auth_type, and priv_protocol fields in
1831
+ the UserInformation structure are available.
1832
+
1833
+ </documentation>
1834
+ <input message="tns:Management.SNMPConfiguration.get_create_userRequest"/>
1835
+ <output message="tns:Management.SNMPConfiguration.get_create_userResponse"/>
1836
+ </operation>
1837
+ <operation name="remove_create_user">
1838
+ <documentation>
1839
+ Removes SNMPv3 users.
1840
+
1841
+ </documentation>
1842
+ <input message="tns:Management.SNMPConfiguration.remove_create_userRequest"/>
1843
+ <output message="tns:Management.SNMPConfiguration.remove_create_userResponse"/>
1844
+ </operation>
1845
+ <operation name="set_system_information">
1846
+ <documentation>
1847
+ Sets the system location, system contact, and system name for the agent. This
1848
+ information is reported in the 'system' group in the mibII tree.
1849
+
1850
+ As has always been the case, this method sets values only for the system
1851
+ information items you provide (non-empty/non-zero).
1852
+
1853
+ </documentation>
1854
+ <input message="tns:Management.SNMPConfiguration.set_system_informationRequest"/>
1855
+ <output message="tns:Management.SNMPConfiguration.set_system_informationResponse"/>
1856
+ </operation>
1857
+ <operation name="get_system_information">
1858
+ <documentation>
1859
+ Gets the system location, system contact, and system name for the agent. This
1860
+ information is reported in the 'system' group in the mibII tree.
1861
+
1862
+ </documentation>
1863
+ <input message="tns:Management.SNMPConfiguration.get_system_informationRequest"/>
1864
+ <output message="tns:Management.SNMPConfiguration.get_system_informationResponse"/>
1865
+ </operation>
1866
+ <operation name="remove_system_information">
1867
+ <documentation>
1868
+ Removes the system location, system contact, and system name for the agent. This
1869
+ information is reported in the 'system' group in the mibII tree.
1870
+
1871
+ Note: As of v9.4.2, this method actually sets the system location and contact
1872
+ parameters and the system services parameter back to the default.
1873
+
1874
+ As has always been the case, this method affects values only for the system
1875
+ information items you provide (non-empty/non-zero).
1876
+
1877
+ </documentation>
1878
+ <input message="tns:Management.SNMPConfiguration.remove_system_informationRequest"/>
1879
+ <output message="tns:Management.SNMPConfiguration.remove_system_informationResponse"/>
1880
+ </operation>
1881
+ <operation name="set_agent_listen_address">
1882
+ <documentation>
1883
+ Sets a list of agent listen addresses. This makes the agent listen on the
1884
+ specified list of sockets instead of the default port, which is 161.
1885
+
1886
+ </documentation>
1887
+ <input message="tns:Management.SNMPConfiguration.set_agent_listen_addressRequest"/>
1888
+ <output message="tns:Management.SNMPConfiguration.set_agent_listen_addressResponse"/>
1889
+ </operation>
1890
+ <operation name="get_agent_listen_address">
1891
+ <documentation>
1892
+ Gets a list of agent listen addresses.
1893
+
1894
+ </documentation>
1895
+ <input message="tns:Management.SNMPConfiguration.get_agent_listen_addressRequest"/>
1896
+ <output message="tns:Management.SNMPConfiguration.get_agent_listen_addressResponse"/>
1897
+ </operation>
1898
+ <operation name="remove_agent_listen_address">
1899
+ <documentation>
1900
+ Removes a list of agent listen addresses.
1901
+
1902
+ Note: As of v9.4.2, this method actually sets the agent
1903
+ listen addresses back to the default.
1904
+
1905
+ </documentation>
1906
+ <input message="tns:Management.SNMPConfiguration.remove_agent_listen_addressRequest"/>
1907
+ <output message="tns:Management.SNMPConfiguration.remove_agent_listen_addressResponse"/>
1908
+ </operation>
1909
+ <operation name="set_agent_group_id">
1910
+ <documentation>
1911
+ Sets the agent group id. Change to this gid after opening port. The group id
1912
+ may refer to a group by name or a number if the group number starts with a #.
1913
+
1914
+ </documentation>
1915
+ <input message="tns:Management.SNMPConfiguration.set_agent_group_idRequest"/>
1916
+ <output message="tns:Management.SNMPConfiguration.set_agent_group_idResponse"/>
1917
+ </operation>
1918
+ <operation name="get_agent_group_id">
1919
+ <documentation>
1920
+ Gets the agent group id.
1921
+
1922
+ </documentation>
1923
+ <input message="tns:Management.SNMPConfiguration.get_agent_group_idRequest"/>
1924
+ <output message="tns:Management.SNMPConfiguration.get_agent_group_idResponse"/>
1925
+ </operation>
1926
+ <operation name="remove_agent_group_id">
1927
+ <documentation>
1928
+ Removes the agent group id.
1929
+
1930
+ </documentation>
1931
+ <input message="tns:Management.SNMPConfiguration.remove_agent_group_idRequest"/>
1932
+ <output message="tns:Management.SNMPConfiguration.remove_agent_group_idResponse"/>
1933
+ </operation>
1934
+ <operation name="set_agent_user_id">
1935
+ <documentation>
1936
+ Sets the agent user id. Change to this uid after opening port. The userid
1937
+ may refer to a user by name or a number if the user number starts with '#'.
1938
+
1939
+ </documentation>
1940
+ <input message="tns:Management.SNMPConfiguration.set_agent_user_idRequest"/>
1941
+ <output message="tns:Management.SNMPConfiguration.set_agent_user_idResponse"/>
1942
+ </operation>
1943
+ <operation name="get_agent_user_id">
1944
+ <documentation>
1945
+ Gets the agent user id.
1946
+
1947
+ </documentation>
1948
+ <input message="tns:Management.SNMPConfiguration.get_agent_user_idRequest"/>
1949
+ <output message="tns:Management.SNMPConfiguration.get_agent_user_idResponse"/>
1950
+ </operation>
1951
+ <operation name="remove_agent_user_id">
1952
+ <documentation>
1953
+ Removes the ugent ser id.
1954
+
1955
+ </documentation>
1956
+ <input message="tns:Management.SNMPConfiguration.remove_agent_user_idRequest"/>
1957
+ <output message="tns:Management.SNMPConfiguration.remove_agent_user_idResponse"/>
1958
+ </operation>
1959
+ <operation name="set_agent_interface">
1960
+ <documentation>
1961
+ Sets the interface information for the agent. For interfaces where the agent
1962
+ fails to guess correctly on the type and speed, this directive can supply additional
1963
+ information.
1964
+
1965
+ </documentation>
1966
+ <input message="tns:Management.SNMPConfiguration.set_agent_interfaceRequest"/>
1967
+ <output message="tns:Management.SNMPConfiguration.set_agent_interfaceResponse"/>
1968
+ </operation>
1969
+ <operation name="get_agent_interface">
1970
+ <documentation>
1971
+ Gets the agent interface information.
1972
+
1973
+ </documentation>
1974
+ <input message="tns:Management.SNMPConfiguration.get_agent_interfaceRequest"/>
1975
+ <output message="tns:Management.SNMPConfiguration.get_agent_interfaceResponse"/>
1976
+ </operation>
1977
+ <operation name="remove_agent_interface">
1978
+ <documentation>
1979
+ Removes the agent interface information.
1980
+
1981
+ </documentation>
1982
+ <input message="tns:Management.SNMPConfiguration.remove_agent_interfaceRequest"/>
1983
+ <output message="tns:Management.SNMPConfiguration.remove_agent_interfaceResponse"/>
1984
+ </operation>
1985
+ <operation name="set_auth_trap_state">
1986
+ <documentation>
1987
+ Sets the authentication trap enabled state. Setting the trap state to Enabled,
1988
+ enables the generation of authentication failure traps.
1989
+ The default value is Disabled.
1990
+
1991
+ </documentation>
1992
+ <input message="tns:Management.SNMPConfiguration.set_auth_trap_stateRequest"/>
1993
+ <output message="tns:Management.SNMPConfiguration.set_auth_trap_stateResponse"/>
1994
+ </operation>
1995
+ <operation name="get_auth_trap_state">
1996
+ <documentation>
1997
+ Gets the authentication trap enabled state
1998
+
1999
+ </documentation>
2000
+ <input message="tns:Management.SNMPConfiguration.get_auth_trap_stateRequest"/>
2001
+ <output message="tns:Management.SNMPConfiguration.get_auth_trap_stateResponse"/>
2002
+ </operation>
2003
+ <operation name="remove_auth_trap_state">
2004
+ <documentation>
2005
+ Removes the authentication trap enabled state.
2006
+
2007
+ Note: As of v9.4.2, this method actually sets the authentication
2008
+ trap enabled state back to the default.
2009
+
2010
+ </documentation>
2011
+ <input message="tns:Management.SNMPConfiguration.remove_auth_trap_stateRequest"/>
2012
+ <output message="tns:Management.SNMPConfiguration.remove_auth_trap_stateResponse"/>
2013
+ </operation>
2014
+ <operation name="set_agent_trap_state">
2015
+ <documentation>
2016
+ Sets the agent trap enabled state.
2017
+
2018
+ </documentation>
2019
+ <input message="tns:Management.SNMPConfiguration.set_agent_trap_stateRequest"/>
2020
+ <output message="tns:Management.SNMPConfiguration.set_agent_trap_stateResponse"/>
2021
+ </operation>
2022
+ <operation name="get_agent_trap_state">
2023
+ <documentation>
2024
+ Gets the agent trap enabled state
2025
+
2026
+ </documentation>
2027
+ <input message="tns:Management.SNMPConfiguration.get_agent_trap_stateRequest"/>
2028
+ <output message="tns:Management.SNMPConfiguration.get_agent_trap_stateResponse"/>
2029
+ </operation>
2030
+ <operation name="remove_agent_trap_state">
2031
+ <documentation>
2032
+ Removes the agent trap enabled state.
2033
+
2034
+ Note: As of v9.4.2, this method actually sets the agent
2035
+ trap enabled state back to the default.
2036
+
2037
+ </documentation>
2038
+ <input message="tns:Management.SNMPConfiguration.remove_agent_trap_stateRequest"/>
2039
+ <output message="tns:Management.SNMPConfiguration.remove_agent_trap_stateResponse"/>
2040
+ </operation>
2041
+ <operation name="set_trap_community">
2042
+ <documentation>
2043
+ Sets the trap community string. This defines the default community string to be
2044
+ used when sending traps.
2045
+
2046
+ </documentation>
2047
+ <input message="tns:Management.SNMPConfiguration.set_trap_communityRequest"/>
2048
+ <output message="tns:Management.SNMPConfiguration.set_trap_communityResponse"/>
2049
+ </operation>
2050
+ <operation name="get_trap_community">
2051
+ <documentation>
2052
+ Gets the trap community string.
2053
+
2054
+ </documentation>
2055
+ <input message="tns:Management.SNMPConfiguration.get_trap_communityRequest"/>
2056
+ <output message="tns:Management.SNMPConfiguration.get_trap_communityResponse"/>
2057
+ </operation>
2058
+ <operation name="remove_trap_community">
2059
+ <documentation>
2060
+ Removes the trap community string.
2061
+
2062
+ Note: As of v9.4.2, this method actually sets the trap
2063
+ community string back to the default.
2064
+
2065
+ </documentation>
2066
+ <input message="tns:Management.SNMPConfiguration.remove_trap_communityRequest"/>
2067
+ <output message="tns:Management.SNMPConfiguration.remove_trap_communityResponse"/>
2068
+ </operation>
2069
+ <operation name="set_trap_sinks">
2070
+ <documentation>
2071
+ Creates a list of trap sinks. This method create definitions for hosts to
2072
+ receive traps (and/or inform notifications). The daemon sends a Cold Start
2073
+ trap when it starts up. If enabled, it also sends traps on authentication failures.
2074
+
2075
+ </documentation>
2076
+ <input message="tns:Management.SNMPConfiguration.set_trap_sinksRequest"/>
2077
+ <output message="tns:Management.SNMPConfiguration.set_trap_sinksResponse"/>
2078
+ </operation>
2079
+ <operation name="get_trap_sinks">
2080
+ <documentation>
2081
+ Returns a list of trap sinks.
2082
+
2083
+ </documentation>
2084
+ <input message="tns:Management.SNMPConfiguration.get_trap_sinksRequest"/>
2085
+ <output message="tns:Management.SNMPConfiguration.get_trap_sinksResponse"/>
2086
+ </operation>
2087
+ <operation name="remove_trap_sinks">
2088
+ <documentation>
2089
+ Removes a list of trap sinks.
2090
+
2091
+ </documentation>
2092
+ <input message="tns:Management.SNMPConfiguration.remove_trap_sinksRequest"/>
2093
+ <output message="tns:Management.SNMPConfiguration.remove_trap_sinksResponse"/>
2094
+ </operation>
2095
+ <operation name="set_generic_traps">
2096
+ <documentation>
2097
+ This method is now deprecated. Use method set_generic_traps_v2 instead.
2098
+
2099
+ Creates generic traps that allows any type of trap destination to be specified
2100
+ with any version of SNMP.
2101
+
2102
+ </documentation>
2103
+ <input message="tns:Management.SNMPConfiguration.set_generic_trapsRequest"/>
2104
+ <output message="tns:Management.SNMPConfiguration.set_generic_trapsResponse"/>
2105
+ </operation>
2106
+ <operation name="get_generic_traps">
2107
+ <documentation>
2108
+ This method is now deprecated. Use method get_generic_traps_v2 instead.
2109
+
2110
+ Gets a list of generic traps.
2111
+
2112
+ </documentation>
2113
+ <input message="tns:Management.SNMPConfiguration.get_generic_trapsRequest"/>
2114
+ <output message="tns:Management.SNMPConfiguration.get_generic_trapsResponse"/>
2115
+ </operation>
2116
+ <operation name="remove_generic_traps">
2117
+ <documentation>
2118
+ This method is now deprecated. Use method remove_generic_traps_v2 instead.
2119
+
2120
+ Removes a list of generic traps.
2121
+
2122
+ </documentation>
2123
+ <input message="tns:Management.SNMPConfiguration.remove_generic_trapsRequest"/>
2124
+ <output message="tns:Management.SNMPConfiguration.remove_generic_trapsResponse"/>
2125
+ </operation>
2126
+ <operation name="set_generic_traps_v2">
2127
+ <documentation>
2128
+ Creates generic traps that allows any type of trap destination to be specified
2129
+ with any version of SNMP.
2130
+
2131
+ </documentation>
2132
+ <input message="tns:Management.SNMPConfiguration.set_generic_traps_v2Request"/>
2133
+ <output message="tns:Management.SNMPConfiguration.set_generic_traps_v2Response"/>
2134
+ </operation>
2135
+ <operation name="get_generic_traps_v2">
2136
+ <documentation>
2137
+ Gets a list of generic traps.
2138
+
2139
+ </documentation>
2140
+ <input message="tns:Management.SNMPConfiguration.get_generic_traps_v2Request"/>
2141
+ <output message="tns:Management.SNMPConfiguration.get_generic_traps_v2Response"/>
2142
+ </operation>
2143
+ <operation name="remove_generic_traps_v2">
2144
+ <documentation>
2145
+ Removes a list of generic traps.
2146
+
2147
+ </documentation>
2148
+ <input message="tns:Management.SNMPConfiguration.remove_generic_traps_v2Request"/>
2149
+ <output message="tns:Management.SNMPConfiguration.remove_generic_traps_v2Response"/>
2150
+ </operation>
2151
+ <operation name="set_proxy">
2152
+ <documentation>
2153
+ Creates a list of snmp proxies. This specifies that any incoming request under
2154
+ oid should be proxied on to a remote host instead.
2155
+
2156
+ </documentation>
2157
+ <input message="tns:Management.SNMPConfiguration.set_proxyRequest"/>
2158
+ <output message="tns:Management.SNMPConfiguration.set_proxyResponse"/>
2159
+ </operation>
2160
+ <operation name="get_proxy">
2161
+ <documentation>
2162
+ Gets a list of snmp proxies.
2163
+
2164
+ </documentation>
2165
+ <input message="tns:Management.SNMPConfiguration.get_proxyRequest"/>
2166
+ <output message="tns:Management.SNMPConfiguration.get_proxyResponse"/>
2167
+ </operation>
2168
+ <operation name="remove_proxy">
2169
+ <documentation>
2170
+ Removes a list of snmp proxies.
2171
+
2172
+ </documentation>
2173
+ <input message="tns:Management.SNMPConfiguration.remove_proxyRequest"/>
2174
+ <output message="tns:Management.SNMPConfiguration.remove_proxyResponse"/>
2175
+ </operation>
2176
+ <operation name="set_pass_through">
2177
+ <documentation>
2178
+ Creates a list of pass through controls. This passes entire control of the mib
2179
+ oid to the executing program.
2180
+
2181
+ </documentation>
2182
+ <input message="tns:Management.SNMPConfiguration.set_pass_throughRequest"/>
2183
+ <output message="tns:Management.SNMPConfiguration.set_pass_throughResponse"/>
2184
+ </operation>
2185
+ <operation name="get_pass_through">
2186
+ <documentation>
2187
+ Gets a list of pass through controls.
2188
+
2189
+ </documentation>
2190
+ <input message="tns:Management.SNMPConfiguration.get_pass_throughRequest"/>
2191
+ <output message="tns:Management.SNMPConfiguration.get_pass_throughResponse"/>
2192
+ </operation>
2193
+ <operation name="remove_pass_through">
2194
+ <documentation>
2195
+ Removes a list of pass through controls.
2196
+
2197
+ </documentation>
2198
+ <input message="tns:Management.SNMPConfiguration.remove_pass_throughRequest"/>
2199
+ <output message="tns:Management.SNMPConfiguration.remove_pass_throughResponse"/>
2200
+ </operation>
2201
+ <operation name="set_pass_through_persist">
2202
+ <documentation>
2203
+ Creates a list of persist pass through controls. This passes entire control
2204
+ of the mib oid to the executing program. This is similar to set_path_through(),
2205
+ but the executing program continues to run after the initial request is answered.
2206
+
2207
+ </documentation>
2208
+ <input message="tns:Management.SNMPConfiguration.set_pass_through_persistRequest"/>
2209
+ <output message="tns:Management.SNMPConfiguration.set_pass_through_persistResponse"/>
2210
+ </operation>
2211
+ <operation name="get_pass_through_persist">
2212
+ <documentation>
2213
+ Gets a list of persist pass through controls.
2214
+
2215
+ </documentation>
2216
+ <input message="tns:Management.SNMPConfiguration.get_pass_through_persistRequest"/>
2217
+ <output message="tns:Management.SNMPConfiguration.get_pass_through_persistResponse"/>
2218
+ </operation>
2219
+ <operation name="remove_pass_through_persist">
2220
+ <documentation>
2221
+ Removes a list of persist pass through controls.
2222
+
2223
+ </documentation>
2224
+ <input message="tns:Management.SNMPConfiguration.remove_pass_through_persistRequest"/>
2225
+ <output message="tns:Management.SNMPConfiguration.remove_pass_through_persistResponse"/>
2226
+ </operation>
2227
+ <operation name="set_client_access">
2228
+ <documentation>
2229
+ Creates a list of client access controls. These are stored in the /etc/hosts.allow
2230
+ file.
2231
+
2232
+ </documentation>
2233
+ <input message="tns:Management.SNMPConfiguration.set_client_accessRequest"/>
2234
+ <output message="tns:Management.SNMPConfiguration.set_client_accessResponse"/>
2235
+ </operation>
2236
+ <operation name="get_client_access">
2237
+ <documentation>
2238
+ Gets a list of client access controls.
2239
+
2240
+ </documentation>
2241
+ <input message="tns:Management.SNMPConfiguration.get_client_accessRequest"/>
2242
+ <output message="tns:Management.SNMPConfiguration.get_client_accessResponse"/>
2243
+ </operation>
2244
+ <operation name="remove_client_access">
2245
+ <documentation>
2246
+ Removes a list of client access controls.
2247
+
2248
+ </documentation>
2249
+ <input message="tns:Management.SNMPConfiguration.remove_client_accessRequest"/>
2250
+ <output message="tns:Management.SNMPConfiguration.remove_client_accessResponse"/>
2251
+ </operation>
2252
+ <operation name="get_version">
2253
+ <documentation>
2254
+ Gets the version information for this interface.
2255
+
2256
+ </documentation>
2257
+ <input message="tns:Management.SNMPConfiguration.get_versionRequest"/>
2258
+ <output message="tns:Management.SNMPConfiguration.get_versionResponse"/>
2259
+ </operation>
2260
+ </portType>
2261
+
2262
+ <!-- binding -->
2263
+
2264
+ <binding name="Management.SNMPConfigurationBinding" type="tns:Management.SNMPConfigurationPortType">
2265
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
2266
+ <operation name="set_check_process">
2267
+ <documentation>
2268
+ Creates a process check. A process check is used to check to see if the
2269
+ process_name's processes are running on the agent's machine. An error flag(1)
2270
+ and a description message are then passed to the EXTENSIBLEDOTMIB.PROCMIBNUM.1.ERRORFLAG
2271
+ and EXTENSIBLEDOTMIB.PROCMIBNUM.1.ERRORMSG mib columns if the process_name'd program
2272
+ is not found on the process table as reported by PSCMD.
2273
+
2274
+ </documentation>
2275
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2276
+ <input>
2277
+ <soap:body
2278
+ use="encoded"
2279
+ namespace="urn:iControl:Management/SNMPConfiguration"
2280
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2281
+ </input>
2282
+ <output>
2283
+ <soap:body
2284
+ use="encoded"
2285
+ namespace="urn:iControl:Management/SNMPConfiguration"
2286
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2287
+ </output>
2288
+ </operation>
2289
+
2290
+ <operation name="get_check_process">
2291
+ <documentation>
2292
+ Gets a list of process checks. A process check is used to check to see if the
2293
+ process_name'd processes are running on the agent's machine. An error flag(1) and
2294
+ a description message are then passed to the EXTENSIBLEDOTMIB.PROCMIBNUM.1.ERRORFLAG
2295
+ and EXTENSIBLEDOTMIB.PROCMIBNUM.1.ERRORMSG mib columns if the process_name'd program
2296
+ is not found on the process table as reported by PSCMD.
2297
+
2298
+ </documentation>
2299
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2300
+ <input>
2301
+ <soap:body
2302
+ use="encoded"
2303
+ namespace="urn:iControl:Management/SNMPConfiguration"
2304
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2305
+ </input>
2306
+ <output>
2307
+ <soap:body
2308
+ use="encoded"
2309
+ namespace="urn:iControl:Management/SNMPConfiguration"
2310
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2311
+ </output>
2312
+ </operation>
2313
+
2314
+ <operation name="remove_check_process">
2315
+ <documentation>
2316
+ Removes a process check. A process check is used to check to see if the
2317
+ process_name's processes are running on the agent's machine. An error flag(1)
2318
+ and a description message are then passed to the EXTENSIBLEDOTMIB.PROCMIBNUM.1.ERRORFLAG
2319
+ and EXTENSIBLEDOTMIB.PROCMIBNUM.1.ERRORMSG mib columns if the process_name's program
2320
+ is not found on the process table as reported by PSCMD.
2321
+
2322
+ </documentation>
2323
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2324
+ <input>
2325
+ <soap:body
2326
+ use="encoded"
2327
+ namespace="urn:iControl:Management/SNMPConfiguration"
2328
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2329
+ </input>
2330
+ <output>
2331
+ <soap:body
2332
+ use="encoded"
2333
+ namespace="urn:iControl:Management/SNMPConfiguration"
2334
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2335
+ </output>
2336
+ </operation>
2337
+
2338
+ <operation name="set_process_fix">
2339
+ <documentation>
2340
+ Sets a process fix instance that registers a command that knows how to fix
2341
+ errors with the given process.
2342
+
2343
+ </documentation>
2344
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2345
+ <input>
2346
+ <soap:body
2347
+ use="encoded"
2348
+ namespace="urn:iControl:Management/SNMPConfiguration"
2349
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2350
+ </input>
2351
+ <output>
2352
+ <soap:body
2353
+ use="encoded"
2354
+ namespace="urn:iControl:Management/SNMPConfiguration"
2355
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2356
+ </output>
2357
+ </operation>
2358
+
2359
+ <operation name="get_process_fix">
2360
+ <documentation>
2361
+ Retrieves a list of the current process fix instances.
2362
+
2363
+ </documentation>
2364
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2365
+ <input>
2366
+ <soap:body
2367
+ use="encoded"
2368
+ namespace="urn:iControl:Management/SNMPConfiguration"
2369
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2370
+ </input>
2371
+ <output>
2372
+ <soap:body
2373
+ use="encoded"
2374
+ namespace="urn:iControl:Management/SNMPConfiguration"
2375
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2376
+ </output>
2377
+ </operation>
2378
+
2379
+ <operation name="remove_process_fix">
2380
+ <documentation>
2381
+ Removes a process fix instance.
2382
+
2383
+ </documentation>
2384
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2385
+ <input>
2386
+ <soap:body
2387
+ use="encoded"
2388
+ namespace="urn:iControl:Management/SNMPConfiguration"
2389
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2390
+ </input>
2391
+ <output>
2392
+ <soap:body
2393
+ use="encoded"
2394
+ namespace="urn:iControl:Management/SNMPConfiguration"
2395
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2396
+ </output>
2397
+ </operation>
2398
+
2399
+ <operation name="set_exec">
2400
+ <documentation>
2401
+ Creates a program instance, used to signal the agent to execute the named
2402
+ program with the given arguments and returns the exit status and the first
2403
+ line of the STDOUT output of the program to queries of the EXTENSIBLEDOTMIB.SHELLMIBNUM.mib_num.ERRORFLAG
2404
+ and EXTENSIBLEDOTMIB.SHELLMIBNUM.mib_num.ERRORMSG mib columns. The mib_num.ERRORMSG
2405
+ mib contains the entire STDOUT output, one mib table entry per line of output.
2406
+
2407
+ </documentation>
2408
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2409
+ <input>
2410
+ <soap:body
2411
+ use="encoded"
2412
+ namespace="urn:iControl:Management/SNMPConfiguration"
2413
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2414
+ </input>
2415
+ <output>
2416
+ <soap:body
2417
+ use="encoded"
2418
+ namespace="urn:iControl:Management/SNMPConfiguration"
2419
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2420
+ </output>
2421
+ </operation>
2422
+
2423
+ <operation name="get_exec">
2424
+ <documentation>
2425
+ Gets a list of program instances.
2426
+
2427
+ </documentation>
2428
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2429
+ <input>
2430
+ <soap:body
2431
+ use="encoded"
2432
+ namespace="urn:iControl:Management/SNMPConfiguration"
2433
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2434
+ </input>
2435
+ <output>
2436
+ <soap:body
2437
+ use="encoded"
2438
+ namespace="urn:iControl:Management/SNMPConfiguration"
2439
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2440
+ </output>
2441
+ </operation>
2442
+
2443
+ <operation name="remove_exec">
2444
+ <documentation>
2445
+ Removes a program instance.
2446
+
2447
+ </documentation>
2448
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2449
+ <input>
2450
+ <soap:body
2451
+ use="encoded"
2452
+ namespace="urn:iControl:Management/SNMPConfiguration"
2453
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2454
+ </input>
2455
+ <output>
2456
+ <soap:body
2457
+ use="encoded"
2458
+ namespace="urn:iControl:Management/SNMPConfiguration"
2459
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2460
+ </output>
2461
+ </operation>
2462
+
2463
+ <operation name="set_exec_fix">
2464
+ <documentation>
2465
+ Sets an exec fix instance that registers a command that knows how to fix
2466
+ errors with the given program.
2467
+
2468
+ </documentation>
2469
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2470
+ <input>
2471
+ <soap:body
2472
+ use="encoded"
2473
+ namespace="urn:iControl:Management/SNMPConfiguration"
2474
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2475
+ </input>
2476
+ <output>
2477
+ <soap:body
2478
+ use="encoded"
2479
+ namespace="urn:iControl:Management/SNMPConfiguration"
2480
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2481
+ </output>
2482
+ </operation>
2483
+
2484
+ <operation name="get_exec_fix">
2485
+ <documentation>
2486
+ Gets a list of exec fix instances.
2487
+
2488
+ </documentation>
2489
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2490
+ <input>
2491
+ <soap:body
2492
+ use="encoded"
2493
+ namespace="urn:iControl:Management/SNMPConfiguration"
2494
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2495
+ </input>
2496
+ <output>
2497
+ <soap:body
2498
+ use="encoded"
2499
+ namespace="urn:iControl:Management/SNMPConfiguration"
2500
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2501
+ </output>
2502
+ </operation>
2503
+
2504
+ <operation name="remove_exec_fix">
2505
+ <documentation>
2506
+ Removes an exec fix instance.
2507
+
2508
+ </documentation>
2509
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2510
+ <input>
2511
+ <soap:body
2512
+ use="encoded"
2513
+ namespace="urn:iControl:Management/SNMPConfiguration"
2514
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2515
+ </input>
2516
+ <output>
2517
+ <soap:body
2518
+ use="encoded"
2519
+ namespace="urn:iControl:Management/SNMPConfiguration"
2520
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2521
+ </output>
2522
+ </operation>
2523
+
2524
+ <operation name="set_check_disk">
2525
+ <documentation>
2526
+ Creates a disk check instance. This is used to check the named disks mounted
2527
+ on path for available disk space. If the disk space is less than minimum_space
2528
+ (kb or %), the associated entry in the EXTENSIBLEDOTMIB.DISKMIBNUM.1.ERRORFLAG mib
2529
+ table will be set to (1) and a descriptive error message will be returned to queries
2530
+ of EXTENSIBLEDOTMIB.DISKMIBNUM.1.ERRORMSG.
2531
+
2532
+ </documentation>
2533
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2534
+ <input>
2535
+ <soap:body
2536
+ use="encoded"
2537
+ namespace="urn:iControl:Management/SNMPConfiguration"
2538
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2539
+ </input>
2540
+ <output>
2541
+ <soap:body
2542
+ use="encoded"
2543
+ namespace="urn:iControl:Management/SNMPConfiguration"
2544
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2545
+ </output>
2546
+ </operation>
2547
+
2548
+ <operation name="get_check_disk">
2549
+ <documentation>
2550
+ Gets a list of disk check instances.
2551
+
2552
+ </documentation>
2553
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2554
+ <input>
2555
+ <soap:body
2556
+ use="encoded"
2557
+ namespace="urn:iControl:Management/SNMPConfiguration"
2558
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2559
+ </input>
2560
+ <output>
2561
+ <soap:body
2562
+ use="encoded"
2563
+ namespace="urn:iControl:Management/SNMPConfiguration"
2564
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2565
+ </output>
2566
+ </operation>
2567
+
2568
+ <operation name="remove_check_disk">
2569
+ <documentation>
2570
+ Removes a disk check instance.
2571
+
2572
+ </documentation>
2573
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2574
+ <input>
2575
+ <soap:body
2576
+ use="encoded"
2577
+ namespace="urn:iControl:Management/SNMPConfiguration"
2578
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2579
+ </input>
2580
+ <output>
2581
+ <soap:body
2582
+ use="encoded"
2583
+ namespace="urn:iControl:Management/SNMPConfiguration"
2584
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2585
+ </output>
2586
+ </operation>
2587
+
2588
+ <operation name="set_ignore_disk">
2589
+ <documentation>
2590
+ Adds disk devices to the ignore list. When scanning for available disk
2591
+ devices the agent might block in trying to open all possible disk devices.
2592
+ This might lead to a timeout wheen walking the device tree. Sometimes it will
2593
+ timeout every time you try it. Adding a ignore disk directive will specify
2594
+ device names not to be checked (i.e. opened).
2595
+
2596
+ </documentation>
2597
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2598
+ <input>
2599
+ <soap:body
2600
+ use="encoded"
2601
+ namespace="urn:iControl:Management/SNMPConfiguration"
2602
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2603
+ </input>
2604
+ <output>
2605
+ <soap:body
2606
+ use="encoded"
2607
+ namespace="urn:iControl:Management/SNMPConfiguration"
2608
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2609
+ </output>
2610
+ </operation>
2611
+
2612
+ <operation name="get_ignore_disk">
2613
+ <documentation>
2614
+ Return a list of disk devices currently ignored.
2615
+
2616
+ </documentation>
2617
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2618
+ <input>
2619
+ <soap:body
2620
+ use="encoded"
2621
+ namespace="urn:iControl:Management/SNMPConfiguration"
2622
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2623
+ </input>
2624
+ <output>
2625
+ <soap:body
2626
+ use="encoded"
2627
+ namespace="urn:iControl:Management/SNMPConfiguration"
2628
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2629
+ </output>
2630
+ </operation>
2631
+
2632
+ <operation name="remove_ignore_disk">
2633
+ <documentation>
2634
+ Removes a disk device from the ignore list.
2635
+
2636
+ </documentation>
2637
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2638
+ <input>
2639
+ <soap:body
2640
+ use="encoded"
2641
+ namespace="urn:iControl:Management/SNMPConfiguration"
2642
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2643
+ </input>
2644
+ <output>
2645
+ <soap:body
2646
+ use="encoded"
2647
+ namespace="urn:iControl:Management/SNMPConfiguration"
2648
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2649
+ </output>
2650
+ </operation>
2651
+
2652
+ <operation name="set_storage_use_nfs">
2653
+ <documentation>
2654
+ This method is deprecated (immediately) and should not be
2655
+ used, in order to ensure proper operation of the system.
2656
+
2657
+ Adds a directive to indicate how file systems are marked by SNMP.
2658
+ Setting this directive to 1 causes all NFS and NFS-like file systems
2659
+ to be marked as 'Network Disks' in the hrStorageTable. This is according
2660
+ to RFC 2790. Not setting storageUseNFS or setting it to 2 causes NFS
2661
+ and NFS-like file systems to be marked as 'Fixed Disks' as it has been
2662
+ in previous versions of the ucd-snmp SNMP agent.
2663
+
2664
+ </documentation>
2665
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2666
+ <input>
2667
+ <soap:body
2668
+ use="encoded"
2669
+ namespace="urn:iControl:Management/SNMPConfiguration"
2670
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2671
+ </input>
2672
+ <output>
2673
+ <soap:body
2674
+ use="encoded"
2675
+ namespace="urn:iControl:Management/SNMPConfiguration"
2676
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2677
+ </output>
2678
+ </operation>
2679
+
2680
+ <operation name="get_storage_use_nfs">
2681
+ <documentation>
2682
+ This method is deprecated (immediately) and should not be
2683
+ used, in order to ensure proper operation of the system.
2684
+
2685
+ Gets directive to indicate how file systems are marked by SNMP.
2686
+ Setting this directive to 1 causes all NFS and NFS-like file systems
2687
+ to be marked as 'Network Disks' in the hrStorageTable. This is according
2688
+ to RFC 2790. Not setting storageUseNFS or setting it to 2 causes NFS
2689
+ and NFS-like file systems to be marked as 'Fixed Disks' as it has been
2690
+ in previous versions of the ucd-snmp SNMP agent.
2691
+
2692
+ </documentation>
2693
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2694
+ <input>
2695
+ <soap:body
2696
+ use="encoded"
2697
+ namespace="urn:iControl:Management/SNMPConfiguration"
2698
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2699
+ </input>
2700
+ <output>
2701
+ <soap:body
2702
+ use="encoded"
2703
+ namespace="urn:iControl:Management/SNMPConfiguration"
2704
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2705
+ </output>
2706
+ </operation>
2707
+
2708
+ <operation name="remove_storage_use_nfs">
2709
+ <documentation>
2710
+ This method is deprecated (immediately) and should not be
2711
+ used, in order to ensure proper operation of the system.
2712
+
2713
+ Removes directive to indicate how file systems are marked by SNMP.
2714
+ Setting this directive to 1 causes all NFS and NFS-like file systems
2715
+ to be marked as 'Network Disks' in the hrStorageTable. This is according
2716
+ to RFC 2790. Not setting storageUseNFS or setting it to 2 causes NFS
2717
+ and NFS-like file systems to be marked as 'Fixed Disks' as it has been
2718
+ in previous versions of the ucd-snmp SNMP agent.
2719
+
2720
+ </documentation>
2721
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2722
+ <input>
2723
+ <soap:body
2724
+ use="encoded"
2725
+ namespace="urn:iControl:Management/SNMPConfiguration"
2726
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2727
+ </input>
2728
+ <output>
2729
+ <soap:body
2730
+ use="encoded"
2731
+ namespace="urn:iControl:Management/SNMPConfiguration"
2732
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2733
+ </output>
2734
+ </operation>
2735
+
2736
+ <operation name="set_check_file">
2737
+ <documentation>
2738
+ Adds a file check used to monitor file sizes and make sure they don't grow
2739
+ beyond a certain size (in kilobytes).
2740
+
2741
+ </documentation>
2742
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2743
+ <input>
2744
+ <soap:body
2745
+ use="encoded"
2746
+ namespace="urn:iControl:Management/SNMPConfiguration"
2747
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2748
+ </input>
2749
+ <output>
2750
+ <soap:body
2751
+ use="encoded"
2752
+ namespace="urn:iControl:Management/SNMPConfiguration"
2753
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2754
+ </output>
2755
+ </operation>
2756
+
2757
+ <operation name="get_check_file">
2758
+ <documentation>
2759
+ Gets a list of available file checks.
2760
+
2761
+ </documentation>
2762
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2763
+ <input>
2764
+ <soap:body
2765
+ use="encoded"
2766
+ namespace="urn:iControl:Management/SNMPConfiguration"
2767
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2768
+ </input>
2769
+ <output>
2770
+ <soap:body
2771
+ use="encoded"
2772
+ namespace="urn:iControl:Management/SNMPConfiguration"
2773
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2774
+ </output>
2775
+ </operation>
2776
+
2777
+ <operation name="remove_check_file">
2778
+ <documentation>
2779
+ Removes a file check.
2780
+
2781
+ </documentation>
2782
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2783
+ <input>
2784
+ <soap:body
2785
+ use="encoded"
2786
+ namespace="urn:iControl:Management/SNMPConfiguration"
2787
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2788
+ </input>
2789
+ <output>
2790
+ <soap:body
2791
+ use="encoded"
2792
+ namespace="urn:iControl:Management/SNMPConfiguration"
2793
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2794
+ </output>
2795
+ </operation>
2796
+
2797
+ <operation name="set_check_load">
2798
+ <documentation>
2799
+ Adds a load check used to check the load average of the machine and returns
2800
+ an error flag (1), and a text-string error message to queries of
2801
+ EXTENSIBLEDOTMIB.LOADAVEMIBNUM.1.ERRORFLAG and
2802
+ EXTENSIBLEDOTMIB.LOADAVEMIBNUM.1.ERRORMSG respectively when the 1-minute,
2803
+ 5-minute, or 15-minute averages exceed the associated maximum values.
2804
+
2805
+ </documentation>
2806
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2807
+ <input>
2808
+ <soap:body
2809
+ use="encoded"
2810
+ namespace="urn:iControl:Management/SNMPConfiguration"
2811
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2812
+ </input>
2813
+ <output>
2814
+ <soap:body
2815
+ use="encoded"
2816
+ namespace="urn:iControl:Management/SNMPConfiguration"
2817
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2818
+ </output>
2819
+ </operation>
2820
+
2821
+ <operation name="get_check_load">
2822
+ <documentation>
2823
+ Gets load check.
2824
+
2825
+ </documentation>
2826
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2827
+ <input>
2828
+ <soap:body
2829
+ use="encoded"
2830
+ namespace="urn:iControl:Management/SNMPConfiguration"
2831
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2832
+ </input>
2833
+ <output>
2834
+ <soap:body
2835
+ use="encoded"
2836
+ namespace="urn:iControl:Management/SNMPConfiguration"
2837
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2838
+ </output>
2839
+ </operation>
2840
+
2841
+ <operation name="remove_check_load">
2842
+ <documentation>
2843
+ Removes a load check.
2844
+
2845
+ </documentation>
2846
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2847
+ <input>
2848
+ <soap:body
2849
+ use="encoded"
2850
+ namespace="urn:iControl:Management/SNMPConfiguration"
2851
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2852
+ </input>
2853
+ <output>
2854
+ <soap:body
2855
+ use="encoded"
2856
+ namespace="urn:iControl:Management/SNMPConfiguration"
2857
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2858
+ </output>
2859
+ </operation>
2860
+
2861
+ <operation name="set_agentx_information">
2862
+ <documentation>
2863
+ This method is deprecated (immediately) and should not be
2864
+ used, in order to ensure proper operation of the system.
2865
+
2866
+ Sets the AgentX information.
2867
+
2868
+ </documentation>
2869
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2870
+ <input>
2871
+ <soap:body
2872
+ use="encoded"
2873
+ namespace="urn:iControl:Management/SNMPConfiguration"
2874
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2875
+ </input>
2876
+ <output>
2877
+ <soap:body
2878
+ use="encoded"
2879
+ namespace="urn:iControl:Management/SNMPConfiguration"
2880
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2881
+ </output>
2882
+ </operation>
2883
+
2884
+ <operation name="get_agentx_information">
2885
+ <documentation>
2886
+ This method is deprecated (immediately) and should not be
2887
+ used, in order to ensure proper operation of the system.
2888
+
2889
+ Gets the AgentX information.
2890
+
2891
+ </documentation>
2892
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2893
+ <input>
2894
+ <soap:body
2895
+ use="encoded"
2896
+ namespace="urn:iControl:Management/SNMPConfiguration"
2897
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2898
+ </input>
2899
+ <output>
2900
+ <soap:body
2901
+ use="encoded"
2902
+ namespace="urn:iControl:Management/SNMPConfiguration"
2903
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2904
+ </output>
2905
+ </operation>
2906
+
2907
+ <operation name="remove_agentx_information">
2908
+ <documentation>
2909
+ This method is deprecated (immediately) and should not be
2910
+ used, in order to ensure proper operation of the system.
2911
+
2912
+ Removes the AgentX information.
2913
+
2914
+ </documentation>
2915
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2916
+ <input>
2917
+ <soap:body
2918
+ use="encoded"
2919
+ namespace="urn:iControl:Management/SNMPConfiguration"
2920
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2921
+ </input>
2922
+ <output>
2923
+ <soap:body
2924
+ use="encoded"
2925
+ namespace="urn:iControl:Management/SNMPConfiguration"
2926
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2927
+ </output>
2928
+ </operation>
2929
+
2930
+ <operation name="set_smux_subagent">
2931
+ <documentation>
2932
+ This method is deprecated (immediately) and should not be
2933
+ used, in order to ensure proper operation of the system.
2934
+
2935
+ Creates a SMUX based sub-agent, such as gated.
2936
+
2937
+ </documentation>
2938
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2939
+ <input>
2940
+ <soap:body
2941
+ use="encoded"
2942
+ namespace="urn:iControl:Management/SNMPConfiguration"
2943
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2944
+ </input>
2945
+ <output>
2946
+ <soap:body
2947
+ use="encoded"
2948
+ namespace="urn:iControl:Management/SNMPConfiguration"
2949
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2950
+ </output>
2951
+ </operation>
2952
+
2953
+ <operation name="get_smux_subagent">
2954
+ <documentation>
2955
+ This method is deprecated (immediately) and should not be
2956
+ used, in order to ensure proper operation of the system.
2957
+
2958
+ Gets a list of SMUX based sub-agents.
2959
+
2960
+ </documentation>
2961
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2962
+ <input>
2963
+ <soap:body
2964
+ use="encoded"
2965
+ namespace="urn:iControl:Management/SNMPConfiguration"
2966
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2967
+ </input>
2968
+ <output>
2969
+ <soap:body
2970
+ use="encoded"
2971
+ namespace="urn:iControl:Management/SNMPConfiguration"
2972
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2973
+ </output>
2974
+ </operation>
2975
+
2976
+ <operation name="remove_smux_subagent">
2977
+ <documentation>
2978
+ This method is deprecated (immediately) and should not be
2979
+ used, in order to ensure proper operation of the system.
2980
+
2981
+ Removes a SMUX based sub-agent.
2982
+
2983
+ </documentation>
2984
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
2985
+ <input>
2986
+ <soap:body
2987
+ use="encoded"
2988
+ namespace="urn:iControl:Management/SNMPConfiguration"
2989
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2990
+ </input>
2991
+ <output>
2992
+ <soap:body
2993
+ use="encoded"
2994
+ namespace="urn:iControl:Management/SNMPConfiguration"
2995
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2996
+ </output>
2997
+ </operation>
2998
+
2999
+ <operation name="set_dynamic_loadable_module">
3000
+ <documentation>
3001
+ This method is deprecated (immediately) and should not be
3002
+ used, in order to ensure proper operation of the system.
3003
+
3004
+ Creates a dynmically loadable module instance. If the agent is built with
3005
+ support for the UCD-DLMOD-MIB it is cabable of loading agent MIB modules
3006
+ dynamically at startup through the dlmod directive and during runtime through
3007
+ the use of the UCD-DLMOD-MIB. The directive loads the shared object module
3008
+ file path which uses the module name prefix.
3009
+
3010
+ </documentation>
3011
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3012
+ <input>
3013
+ <soap:body
3014
+ use="encoded"
3015
+ namespace="urn:iControl:Management/SNMPConfiguration"
3016
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3017
+ </input>
3018
+ <output>
3019
+ <soap:body
3020
+ use="encoded"
3021
+ namespace="urn:iControl:Management/SNMPConfiguration"
3022
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3023
+ </output>
3024
+ </operation>
3025
+
3026
+ <operation name="get_dynamic_loadable_module">
3027
+ <documentation>
3028
+ This method is deprecated (immediately) and should not be
3029
+ used, in order to ensure proper operation of the system.
3030
+
3031
+ Gets a list of dynamically loadable module instances.
3032
+
3033
+ </documentation>
3034
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3035
+ <input>
3036
+ <soap:body
3037
+ use="encoded"
3038
+ namespace="urn:iControl:Management/SNMPConfiguration"
3039
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3040
+ </input>
3041
+ <output>
3042
+ <soap:body
3043
+ use="encoded"
3044
+ namespace="urn:iControl:Management/SNMPConfiguration"
3045
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3046
+ </output>
3047
+ </operation>
3048
+
3049
+ <operation name="remove_dynamic_loadable_module">
3050
+ <documentation>
3051
+ This method is deprecated (immediately) and should not be
3052
+ used, in order to ensure proper operation of the system.
3053
+
3054
+ Removes a dynamically loadable module instance.
3055
+
3056
+ </documentation>
3057
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3058
+ <input>
3059
+ <soap:body
3060
+ use="encoded"
3061
+ namespace="urn:iControl:Management/SNMPConfiguration"
3062
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3063
+ </input>
3064
+ <output>
3065
+ <soap:body
3066
+ use="encoded"
3067
+ namespace="urn:iControl:Management/SNMPConfiguration"
3068
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3069
+ </output>
3070
+ </operation>
3071
+
3072
+ <operation name="set_readonly_community">
3073
+ <documentation>
3074
+ Creates read-only communities that can be used to access the agent.
3075
+ snmpd supports the View-Based Access Control Model (vacm) as defined in RFC 2275.
3076
+
3077
+ </documentation>
3078
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3079
+ <input>
3080
+ <soap:body
3081
+ use="encoded"
3082
+ namespace="urn:iControl:Management/SNMPConfiguration"
3083
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3084
+ </input>
3085
+ <output>
3086
+ <soap:body
3087
+ use="encoded"
3088
+ namespace="urn:iControl:Management/SNMPConfiguration"
3089
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3090
+ </output>
3091
+ </operation>
3092
+
3093
+ <operation name="get_readonly_community">
3094
+ <documentation>
3095
+ Gets a list of read-only communities.
3096
+
3097
+ </documentation>
3098
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3099
+ <input>
3100
+ <soap:body
3101
+ use="encoded"
3102
+ namespace="urn:iControl:Management/SNMPConfiguration"
3103
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3104
+ </input>
3105
+ <output>
3106
+ <soap:body
3107
+ use="encoded"
3108
+ namespace="urn:iControl:Management/SNMPConfiguration"
3109
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3110
+ </output>
3111
+ </operation>
3112
+
3113
+ <operation name="remove_readonly_community">
3114
+ <documentation>
3115
+ Removes read-only communities.
3116
+
3117
+ </documentation>
3118
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3119
+ <input>
3120
+ <soap:body
3121
+ use="encoded"
3122
+ namespace="urn:iControl:Management/SNMPConfiguration"
3123
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3124
+ </input>
3125
+ <output>
3126
+ <soap:body
3127
+ use="encoded"
3128
+ namespace="urn:iControl:Management/SNMPConfiguration"
3129
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3130
+ </output>
3131
+ </operation>
3132
+
3133
+ <operation name="set_readwrite_community">
3134
+ <documentation>
3135
+ Creates read-write communities that can be used to access the agent.
3136
+ snmpd supports the View-Based Access Control Model (vacm) as defined in RFC 2275.
3137
+
3138
+ </documentation>
3139
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3140
+ <input>
3141
+ <soap:body
3142
+ use="encoded"
3143
+ namespace="urn:iControl:Management/SNMPConfiguration"
3144
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3145
+ </input>
3146
+ <output>
3147
+ <soap:body
3148
+ use="encoded"
3149
+ namespace="urn:iControl:Management/SNMPConfiguration"
3150
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3151
+ </output>
3152
+ </operation>
3153
+
3154
+ <operation name="get_readwrite_community">
3155
+ <documentation>
3156
+ Gets a list of read-write communities.
3157
+
3158
+ </documentation>
3159
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3160
+ <input>
3161
+ <soap:body
3162
+ use="encoded"
3163
+ namespace="urn:iControl:Management/SNMPConfiguration"
3164
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3165
+ </input>
3166
+ <output>
3167
+ <soap:body
3168
+ use="encoded"
3169
+ namespace="urn:iControl:Management/SNMPConfiguration"
3170
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3171
+ </output>
3172
+ </operation>
3173
+
3174
+ <operation name="remove_readwrite_community">
3175
+ <documentation>
3176
+ Removes read-write communities.
3177
+
3178
+ </documentation>
3179
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3180
+ <input>
3181
+ <soap:body
3182
+ use="encoded"
3183
+ namespace="urn:iControl:Management/SNMPConfiguration"
3184
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3185
+ </input>
3186
+ <output>
3187
+ <soap:body
3188
+ use="encoded"
3189
+ namespace="urn:iControl:Management/SNMPConfiguration"
3190
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3191
+ </output>
3192
+ </operation>
3193
+
3194
+ <operation name="set_readonly_user">
3195
+ <documentation>
3196
+ Creates SNMPv3 USM read-only users in the VACM access configuration tables.
3197
+
3198
+ </documentation>
3199
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3200
+ <input>
3201
+ <soap:body
3202
+ use="encoded"
3203
+ namespace="urn:iControl:Management/SNMPConfiguration"
3204
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3205
+ </input>
3206
+ <output>
3207
+ <soap:body
3208
+ use="encoded"
3209
+ namespace="urn:iControl:Management/SNMPConfiguration"
3210
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3211
+ </output>
3212
+ </operation>
3213
+
3214
+ <operation name="get_readonly_user">
3215
+ <documentation>
3216
+ Gets a list of the SNMPv3 USM read-only users in the VACM access configuration tables.
3217
+
3218
+ </documentation>
3219
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3220
+ <input>
3221
+ <soap:body
3222
+ use="encoded"
3223
+ namespace="urn:iControl:Management/SNMPConfiguration"
3224
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3225
+ </input>
3226
+ <output>
3227
+ <soap:body
3228
+ use="encoded"
3229
+ namespace="urn:iControl:Management/SNMPConfiguration"
3230
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3231
+ </output>
3232
+ </operation>
3233
+
3234
+ <operation name="remove_readonly_user">
3235
+ <documentation>
3236
+ Removes SNMPv3 USM read-only users from the VACM access configuration tables.
3237
+
3238
+ </documentation>
3239
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3240
+ <input>
3241
+ <soap:body
3242
+ use="encoded"
3243
+ namespace="urn:iControl:Management/SNMPConfiguration"
3244
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3245
+ </input>
3246
+ <output>
3247
+ <soap:body
3248
+ use="encoded"
3249
+ namespace="urn:iControl:Management/SNMPConfiguration"
3250
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3251
+ </output>
3252
+ </operation>
3253
+
3254
+ <operation name="set_readwrite_user">
3255
+ <documentation>
3256
+ Creates SNMPv3 USM read-write users in the VACM access configuration tables.
3257
+
3258
+ </documentation>
3259
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3260
+ <input>
3261
+ <soap:body
3262
+ use="encoded"
3263
+ namespace="urn:iControl:Management/SNMPConfiguration"
3264
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3265
+ </input>
3266
+ <output>
3267
+ <soap:body
3268
+ use="encoded"
3269
+ namespace="urn:iControl:Management/SNMPConfiguration"
3270
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3271
+ </output>
3272
+ </operation>
3273
+
3274
+ <operation name="get_readwrite_user">
3275
+ <documentation>
3276
+ Gets a list of the SNMPv3 USM read-write users in the VACM access configuration tables.
3277
+
3278
+ </documentation>
3279
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3280
+ <input>
3281
+ <soap:body
3282
+ use="encoded"
3283
+ namespace="urn:iControl:Management/SNMPConfiguration"
3284
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3285
+ </input>
3286
+ <output>
3287
+ <soap:body
3288
+ use="encoded"
3289
+ namespace="urn:iControl:Management/SNMPConfiguration"
3290
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3291
+ </output>
3292
+ </operation>
3293
+
3294
+ <operation name="remove_readwrite_user">
3295
+ <documentation>
3296
+ Removes SNMPv3 USM read-write users from the VACM access configuration tables.
3297
+
3298
+ </documentation>
3299
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3300
+ <input>
3301
+ <soap:body
3302
+ use="encoded"
3303
+ namespace="urn:iControl:Management/SNMPConfiguration"
3304
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3305
+ </input>
3306
+ <output>
3307
+ <soap:body
3308
+ use="encoded"
3309
+ namespace="urn:iControl:Management/SNMPConfiguration"
3310
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3311
+ </output>
3312
+ </operation>
3313
+
3314
+ <operation name="set_community_to_security_info">
3315
+ <documentation>
3316
+ Creates mappings from a source/community pair to security names. The first
3317
+ source/community combination that matches the incoming packet is selected.
3318
+
3319
+ </documentation>
3320
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3321
+ <input>
3322
+ <soap:body
3323
+ use="encoded"
3324
+ namespace="urn:iControl:Management/SNMPConfiguration"
3325
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3326
+ </input>
3327
+ <output>
3328
+ <soap:body
3329
+ use="encoded"
3330
+ namespace="urn:iControl:Management/SNMPConfiguration"
3331
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3332
+ </output>
3333
+ </operation>
3334
+
3335
+ <operation name="get_community_to_security_info">
3336
+ <documentation>
3337
+ Gets a list of mappings from a source/community pair to security name.
3338
+
3339
+ </documentation>
3340
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3341
+ <input>
3342
+ <soap:body
3343
+ use="encoded"
3344
+ namespace="urn:iControl:Management/SNMPConfiguration"
3345
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3346
+ </input>
3347
+ <output>
3348
+ <soap:body
3349
+ use="encoded"
3350
+ namespace="urn:iControl:Management/SNMPConfiguration"
3351
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3352
+ </output>
3353
+ </operation>
3354
+
3355
+ <operation name="remove_community_to_security_info">
3356
+ <documentation>
3357
+ Removes mappings from a source/community pair to security names.
3358
+
3359
+ </documentation>
3360
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3361
+ <input>
3362
+ <soap:body
3363
+ use="encoded"
3364
+ namespace="urn:iControl:Management/SNMPConfiguration"
3365
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3366
+ </input>
3367
+ <output>
3368
+ <soap:body
3369
+ use="encoded"
3370
+ namespace="urn:iControl:Management/SNMPConfiguration"
3371
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3372
+ </output>
3373
+ </operation>
3374
+
3375
+ <operation name="set_group_info">
3376
+ <documentation>
3377
+ Creates mappings from securitymodel/securityname to group.
3378
+
3379
+ </documentation>
3380
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3381
+ <input>
3382
+ <soap:body
3383
+ use="encoded"
3384
+ namespace="urn:iControl:Management/SNMPConfiguration"
3385
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3386
+ </input>
3387
+ <output>
3388
+ <soap:body
3389
+ use="encoded"
3390
+ namespace="urn:iControl:Management/SNMPConfiguration"
3391
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3392
+ </output>
3393
+ </operation>
3394
+
3395
+ <operation name="get_group_info">
3396
+ <documentation>
3397
+ Gets a list of mappings from securitymodel/securityname to group.
3398
+
3399
+ </documentation>
3400
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3401
+ <input>
3402
+ <soap:body
3403
+ use="encoded"
3404
+ namespace="urn:iControl:Management/SNMPConfiguration"
3405
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3406
+ </input>
3407
+ <output>
3408
+ <soap:body
3409
+ use="encoded"
3410
+ namespace="urn:iControl:Management/SNMPConfiguration"
3411
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3412
+ </output>
3413
+ </operation>
3414
+
3415
+ <operation name="remove_group_info">
3416
+ <documentation>
3417
+ Removes mappings from securitymodel/securityname to group.
3418
+
3419
+ </documentation>
3420
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3421
+ <input>
3422
+ <soap:body
3423
+ use="encoded"
3424
+ namespace="urn:iControl:Management/SNMPConfiguration"
3425
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3426
+ </input>
3427
+ <output>
3428
+ <soap:body
3429
+ use="encoded"
3430
+ namespace="urn:iControl:Management/SNMPConfiguration"
3431
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3432
+ </output>
3433
+ </operation>
3434
+
3435
+ <operation name="set_view_info">
3436
+ <documentation>
3437
+ Creates named views.
3438
+
3439
+ </documentation>
3440
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3441
+ <input>
3442
+ <soap:body
3443
+ use="encoded"
3444
+ namespace="urn:iControl:Management/SNMPConfiguration"
3445
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3446
+ </input>
3447
+ <output>
3448
+ <soap:body
3449
+ use="encoded"
3450
+ namespace="urn:iControl:Management/SNMPConfiguration"
3451
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3452
+ </output>
3453
+ </operation>
3454
+
3455
+ <operation name="get_view_info">
3456
+ <documentation>
3457
+ Gets a list of named views.
3458
+
3459
+ </documentation>
3460
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3461
+ <input>
3462
+ <soap:body
3463
+ use="encoded"
3464
+ namespace="urn:iControl:Management/SNMPConfiguration"
3465
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3466
+ </input>
3467
+ <output>
3468
+ <soap:body
3469
+ use="encoded"
3470
+ namespace="urn:iControl:Management/SNMPConfiguration"
3471
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3472
+ </output>
3473
+ </operation>
3474
+
3475
+ <operation name="remove_view_info">
3476
+ <documentation>
3477
+ Removes a list of named views.
3478
+
3479
+ </documentation>
3480
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3481
+ <input>
3482
+ <soap:body
3483
+ use="encoded"
3484
+ namespace="urn:iControl:Management/SNMPConfiguration"
3485
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3486
+ </input>
3487
+ <output>
3488
+ <soap:body
3489
+ use="encoded"
3490
+ namespace="urn:iControl:Management/SNMPConfiguration"
3491
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3492
+ </output>
3493
+ </operation>
3494
+
3495
+ <operation name="set_access_info">
3496
+ <documentation>
3497
+ Creates access maps from group/securitymodel/security level to a view.
3498
+
3499
+ </documentation>
3500
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3501
+ <input>
3502
+ <soap:body
3503
+ use="encoded"
3504
+ namespace="urn:iControl:Management/SNMPConfiguration"
3505
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3506
+ </input>
3507
+ <output>
3508
+ <soap:body
3509
+ use="encoded"
3510
+ namespace="urn:iControl:Management/SNMPConfiguration"
3511
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3512
+ </output>
3513
+ </operation>
3514
+
3515
+ <operation name="get_access_info">
3516
+ <documentation>
3517
+ Gets a list of access maps from group/securitymodel/security level to a view.
3518
+
3519
+ </documentation>
3520
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3521
+ <input>
3522
+ <soap:body
3523
+ use="encoded"
3524
+ namespace="urn:iControl:Management/SNMPConfiguration"
3525
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3526
+ </input>
3527
+ <output>
3528
+ <soap:body
3529
+ use="encoded"
3530
+ namespace="urn:iControl:Management/SNMPConfiguration"
3531
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3532
+ </output>
3533
+ </operation>
3534
+
3535
+ <operation name="remove_access_info">
3536
+ <documentation>
3537
+ Removes access maps from group/securitymodel/security level to a view.
3538
+
3539
+ </documentation>
3540
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3541
+ <input>
3542
+ <soap:body
3543
+ use="encoded"
3544
+ namespace="urn:iControl:Management/SNMPConfiguration"
3545
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3546
+ </input>
3547
+ <output>
3548
+ <soap:body
3549
+ use="encoded"
3550
+ namespace="urn:iControl:Management/SNMPConfiguration"
3551
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3552
+ </output>
3553
+ </operation>
3554
+
3555
+ <operation name="set_engine_id">
3556
+ <documentation>
3557
+ Sets the snmp engine identifier. The snmpd agent needs to be configured with
3558
+ an engine id to be able to respond to SNMPv3 messages.
3559
+
3560
+ </documentation>
3561
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3562
+ <input>
3563
+ <soap:body
3564
+ use="encoded"
3565
+ namespace="urn:iControl:Management/SNMPConfiguration"
3566
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3567
+ </input>
3568
+ <output>
3569
+ <soap:body
3570
+ use="encoded"
3571
+ namespace="urn:iControl:Management/SNMPConfiguration"
3572
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3573
+ </output>
3574
+ </operation>
3575
+
3576
+ <operation name="get_engine_id">
3577
+ <documentation>
3578
+ Gets the snmp engine identifier.
3579
+
3580
+ </documentation>
3581
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3582
+ <input>
3583
+ <soap:body
3584
+ use="encoded"
3585
+ namespace="urn:iControl:Management/SNMPConfiguration"
3586
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3587
+ </input>
3588
+ <output>
3589
+ <soap:body
3590
+ use="encoded"
3591
+ namespace="urn:iControl:Management/SNMPConfiguration"
3592
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3593
+ </output>
3594
+ </operation>
3595
+
3596
+ <operation name="remove_engine_id">
3597
+ <documentation>
3598
+ Removes the snmp engine identifier.
3599
+
3600
+ </documentation>
3601
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3602
+ <input>
3603
+ <soap:body
3604
+ use="encoded"
3605
+ namespace="urn:iControl:Management/SNMPConfiguration"
3606
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3607
+ </input>
3608
+ <output>
3609
+ <soap:body
3610
+ use="encoded"
3611
+ namespace="urn:iControl:Management/SNMPConfiguration"
3612
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3613
+ </output>
3614
+ </operation>
3615
+
3616
+ <operation name="set_create_user">
3617
+ <documentation>
3618
+ Creates SNMPv3 users.
3619
+
3620
+ Note: as of v9.4.2, doing this method without having done
3621
+ set_readonly_user or set_readwrite_user first results in a
3622
+ valid (readonly) user rather than silently creating an
3623
+ incomplete but unusable user. However, such behavior is not
3624
+ guaranteed; please do one of the above methods before this
3625
+ method so as to define your new user fully.
3626
+
3627
+ </documentation>
3628
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3629
+ <input>
3630
+ <soap:body
3631
+ use="encoded"
3632
+ namespace="urn:iControl:Management/SNMPConfiguration"
3633
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3634
+ </input>
3635
+ <output>
3636
+ <soap:body
3637
+ use="encoded"
3638
+ namespace="urn:iControl:Management/SNMPConfiguration"
3639
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3640
+ </output>
3641
+ </operation>
3642
+
3643
+ <operation name="get_create_user">
3644
+ <documentation>
3645
+ Gets a list of SNMPv3 users. Since the authentication and private passphrases
3646
+ have already been munged by snmpd, this information will not be available in
3647
+ the response. Only the user_name, the auth_type, and priv_protocol fields in
3648
+ the UserInformation structure are available.
3649
+
3650
+ </documentation>
3651
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3652
+ <input>
3653
+ <soap:body
3654
+ use="encoded"
3655
+ namespace="urn:iControl:Management/SNMPConfiguration"
3656
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3657
+ </input>
3658
+ <output>
3659
+ <soap:body
3660
+ use="encoded"
3661
+ namespace="urn:iControl:Management/SNMPConfiguration"
3662
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3663
+ </output>
3664
+ </operation>
3665
+
3666
+ <operation name="remove_create_user">
3667
+ <documentation>
3668
+ Removes SNMPv3 users.
3669
+
3670
+ </documentation>
3671
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3672
+ <input>
3673
+ <soap:body
3674
+ use="encoded"
3675
+ namespace="urn:iControl:Management/SNMPConfiguration"
3676
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3677
+ </input>
3678
+ <output>
3679
+ <soap:body
3680
+ use="encoded"
3681
+ namespace="urn:iControl:Management/SNMPConfiguration"
3682
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3683
+ </output>
3684
+ </operation>
3685
+
3686
+ <operation name="set_system_information">
3687
+ <documentation>
3688
+ Sets the system location, system contact, and system name for the agent. This
3689
+ information is reported in the 'system' group in the mibII tree.
3690
+
3691
+ As has always been the case, this method sets values only for the system
3692
+ information items you provide (non-empty/non-zero).
3693
+
3694
+ </documentation>
3695
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3696
+ <input>
3697
+ <soap:body
3698
+ use="encoded"
3699
+ namespace="urn:iControl:Management/SNMPConfiguration"
3700
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3701
+ </input>
3702
+ <output>
3703
+ <soap:body
3704
+ use="encoded"
3705
+ namespace="urn:iControl:Management/SNMPConfiguration"
3706
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3707
+ </output>
3708
+ </operation>
3709
+
3710
+ <operation name="get_system_information">
3711
+ <documentation>
3712
+ Gets the system location, system contact, and system name for the agent. This
3713
+ information is reported in the 'system' group in the mibII tree.
3714
+
3715
+ </documentation>
3716
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3717
+ <input>
3718
+ <soap:body
3719
+ use="encoded"
3720
+ namespace="urn:iControl:Management/SNMPConfiguration"
3721
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3722
+ </input>
3723
+ <output>
3724
+ <soap:body
3725
+ use="encoded"
3726
+ namespace="urn:iControl:Management/SNMPConfiguration"
3727
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3728
+ </output>
3729
+ </operation>
3730
+
3731
+ <operation name="remove_system_information">
3732
+ <documentation>
3733
+ Removes the system location, system contact, and system name for the agent. This
3734
+ information is reported in the 'system' group in the mibII tree.
3735
+
3736
+ Note: As of v9.4.2, this method actually sets the system location and contact
3737
+ parameters and the system services parameter back to the default.
3738
+
3739
+ As has always been the case, this method affects values only for the system
3740
+ information items you provide (non-empty/non-zero).
3741
+
3742
+ </documentation>
3743
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3744
+ <input>
3745
+ <soap:body
3746
+ use="encoded"
3747
+ namespace="urn:iControl:Management/SNMPConfiguration"
3748
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3749
+ </input>
3750
+ <output>
3751
+ <soap:body
3752
+ use="encoded"
3753
+ namespace="urn:iControl:Management/SNMPConfiguration"
3754
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3755
+ </output>
3756
+ </operation>
3757
+
3758
+ <operation name="set_agent_listen_address">
3759
+ <documentation>
3760
+ Sets a list of agent listen addresses. This makes the agent listen on the
3761
+ specified list of sockets instead of the default port, which is 161.
3762
+
3763
+ </documentation>
3764
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3765
+ <input>
3766
+ <soap:body
3767
+ use="encoded"
3768
+ namespace="urn:iControl:Management/SNMPConfiguration"
3769
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3770
+ </input>
3771
+ <output>
3772
+ <soap:body
3773
+ use="encoded"
3774
+ namespace="urn:iControl:Management/SNMPConfiguration"
3775
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3776
+ </output>
3777
+ </operation>
3778
+
3779
+ <operation name="get_agent_listen_address">
3780
+ <documentation>
3781
+ Gets a list of agent listen addresses.
3782
+
3783
+ </documentation>
3784
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3785
+ <input>
3786
+ <soap:body
3787
+ use="encoded"
3788
+ namespace="urn:iControl:Management/SNMPConfiguration"
3789
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3790
+ </input>
3791
+ <output>
3792
+ <soap:body
3793
+ use="encoded"
3794
+ namespace="urn:iControl:Management/SNMPConfiguration"
3795
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3796
+ </output>
3797
+ </operation>
3798
+
3799
+ <operation name="remove_agent_listen_address">
3800
+ <documentation>
3801
+ Removes a list of agent listen addresses.
3802
+
3803
+ Note: As of v9.4.2, this method actually sets the agent
3804
+ listen addresses back to the default.
3805
+
3806
+ </documentation>
3807
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3808
+ <input>
3809
+ <soap:body
3810
+ use="encoded"
3811
+ namespace="urn:iControl:Management/SNMPConfiguration"
3812
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3813
+ </input>
3814
+ <output>
3815
+ <soap:body
3816
+ use="encoded"
3817
+ namespace="urn:iControl:Management/SNMPConfiguration"
3818
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3819
+ </output>
3820
+ </operation>
3821
+
3822
+ <operation name="set_agent_group_id">
3823
+ <documentation>
3824
+ Sets the agent group id. Change to this gid after opening port. The group id
3825
+ may refer to a group by name or a number if the group number starts with a #.
3826
+
3827
+ </documentation>
3828
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3829
+ <input>
3830
+ <soap:body
3831
+ use="encoded"
3832
+ namespace="urn:iControl:Management/SNMPConfiguration"
3833
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3834
+ </input>
3835
+ <output>
3836
+ <soap:body
3837
+ use="encoded"
3838
+ namespace="urn:iControl:Management/SNMPConfiguration"
3839
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3840
+ </output>
3841
+ </operation>
3842
+
3843
+ <operation name="get_agent_group_id">
3844
+ <documentation>
3845
+ Gets the agent group id.
3846
+
3847
+ </documentation>
3848
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3849
+ <input>
3850
+ <soap:body
3851
+ use="encoded"
3852
+ namespace="urn:iControl:Management/SNMPConfiguration"
3853
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3854
+ </input>
3855
+ <output>
3856
+ <soap:body
3857
+ use="encoded"
3858
+ namespace="urn:iControl:Management/SNMPConfiguration"
3859
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3860
+ </output>
3861
+ </operation>
3862
+
3863
+ <operation name="remove_agent_group_id">
3864
+ <documentation>
3865
+ Removes the agent group id.
3866
+
3867
+ </documentation>
3868
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3869
+ <input>
3870
+ <soap:body
3871
+ use="encoded"
3872
+ namespace="urn:iControl:Management/SNMPConfiguration"
3873
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3874
+ </input>
3875
+ <output>
3876
+ <soap:body
3877
+ use="encoded"
3878
+ namespace="urn:iControl:Management/SNMPConfiguration"
3879
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3880
+ </output>
3881
+ </operation>
3882
+
3883
+ <operation name="set_agent_user_id">
3884
+ <documentation>
3885
+ Sets the agent user id. Change to this uid after opening port. The userid
3886
+ may refer to a user by name or a number if the user number starts with '#'.
3887
+
3888
+ </documentation>
3889
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3890
+ <input>
3891
+ <soap:body
3892
+ use="encoded"
3893
+ namespace="urn:iControl:Management/SNMPConfiguration"
3894
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3895
+ </input>
3896
+ <output>
3897
+ <soap:body
3898
+ use="encoded"
3899
+ namespace="urn:iControl:Management/SNMPConfiguration"
3900
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3901
+ </output>
3902
+ </operation>
3903
+
3904
+ <operation name="get_agent_user_id">
3905
+ <documentation>
3906
+ Gets the agent user id.
3907
+
3908
+ </documentation>
3909
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3910
+ <input>
3911
+ <soap:body
3912
+ use="encoded"
3913
+ namespace="urn:iControl:Management/SNMPConfiguration"
3914
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3915
+ </input>
3916
+ <output>
3917
+ <soap:body
3918
+ use="encoded"
3919
+ namespace="urn:iControl:Management/SNMPConfiguration"
3920
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3921
+ </output>
3922
+ </operation>
3923
+
3924
+ <operation name="remove_agent_user_id">
3925
+ <documentation>
3926
+ Removes the ugent ser id.
3927
+
3928
+ </documentation>
3929
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3930
+ <input>
3931
+ <soap:body
3932
+ use="encoded"
3933
+ namespace="urn:iControl:Management/SNMPConfiguration"
3934
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3935
+ </input>
3936
+ <output>
3937
+ <soap:body
3938
+ use="encoded"
3939
+ namespace="urn:iControl:Management/SNMPConfiguration"
3940
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3941
+ </output>
3942
+ </operation>
3943
+
3944
+ <operation name="set_agent_interface">
3945
+ <documentation>
3946
+ Sets the interface information for the agent. For interfaces where the agent
3947
+ fails to guess correctly on the type and speed, this directive can supply additional
3948
+ information.
3949
+
3950
+ </documentation>
3951
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3952
+ <input>
3953
+ <soap:body
3954
+ use="encoded"
3955
+ namespace="urn:iControl:Management/SNMPConfiguration"
3956
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3957
+ </input>
3958
+ <output>
3959
+ <soap:body
3960
+ use="encoded"
3961
+ namespace="urn:iControl:Management/SNMPConfiguration"
3962
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3963
+ </output>
3964
+ </operation>
3965
+
3966
+ <operation name="get_agent_interface">
3967
+ <documentation>
3968
+ Gets the agent interface information.
3969
+
3970
+ </documentation>
3971
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3972
+ <input>
3973
+ <soap:body
3974
+ use="encoded"
3975
+ namespace="urn:iControl:Management/SNMPConfiguration"
3976
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3977
+ </input>
3978
+ <output>
3979
+ <soap:body
3980
+ use="encoded"
3981
+ namespace="urn:iControl:Management/SNMPConfiguration"
3982
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3983
+ </output>
3984
+ </operation>
3985
+
3986
+ <operation name="remove_agent_interface">
3987
+ <documentation>
3988
+ Removes the agent interface information.
3989
+
3990
+ </documentation>
3991
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
3992
+ <input>
3993
+ <soap:body
3994
+ use="encoded"
3995
+ namespace="urn:iControl:Management/SNMPConfiguration"
3996
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3997
+ </input>
3998
+ <output>
3999
+ <soap:body
4000
+ use="encoded"
4001
+ namespace="urn:iControl:Management/SNMPConfiguration"
4002
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4003
+ </output>
4004
+ </operation>
4005
+
4006
+ <operation name="set_auth_trap_state">
4007
+ <documentation>
4008
+ Sets the authentication trap enabled state. Setting the trap state to Enabled,
4009
+ enables the generation of authentication failure traps.
4010
+ The default value is Disabled.
4011
+
4012
+ </documentation>
4013
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4014
+ <input>
4015
+ <soap:body
4016
+ use="encoded"
4017
+ namespace="urn:iControl:Management/SNMPConfiguration"
4018
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4019
+ </input>
4020
+ <output>
4021
+ <soap:body
4022
+ use="encoded"
4023
+ namespace="urn:iControl:Management/SNMPConfiguration"
4024
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4025
+ </output>
4026
+ </operation>
4027
+
4028
+ <operation name="get_auth_trap_state">
4029
+ <documentation>
4030
+ Gets the authentication trap enabled state
4031
+
4032
+ </documentation>
4033
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4034
+ <input>
4035
+ <soap:body
4036
+ use="encoded"
4037
+ namespace="urn:iControl:Management/SNMPConfiguration"
4038
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4039
+ </input>
4040
+ <output>
4041
+ <soap:body
4042
+ use="encoded"
4043
+ namespace="urn:iControl:Management/SNMPConfiguration"
4044
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4045
+ </output>
4046
+ </operation>
4047
+
4048
+ <operation name="remove_auth_trap_state">
4049
+ <documentation>
4050
+ Removes the authentication trap enabled state.
4051
+
4052
+ Note: As of v9.4.2, this method actually sets the authentication
4053
+ trap enabled state back to the default.
4054
+
4055
+ </documentation>
4056
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4057
+ <input>
4058
+ <soap:body
4059
+ use="encoded"
4060
+ namespace="urn:iControl:Management/SNMPConfiguration"
4061
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4062
+ </input>
4063
+ <output>
4064
+ <soap:body
4065
+ use="encoded"
4066
+ namespace="urn:iControl:Management/SNMPConfiguration"
4067
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4068
+ </output>
4069
+ </operation>
4070
+
4071
+ <operation name="set_agent_trap_state">
4072
+ <documentation>
4073
+ Sets the agent trap enabled state.
4074
+
4075
+ </documentation>
4076
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4077
+ <input>
4078
+ <soap:body
4079
+ use="encoded"
4080
+ namespace="urn:iControl:Management/SNMPConfiguration"
4081
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4082
+ </input>
4083
+ <output>
4084
+ <soap:body
4085
+ use="encoded"
4086
+ namespace="urn:iControl:Management/SNMPConfiguration"
4087
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4088
+ </output>
4089
+ </operation>
4090
+
4091
+ <operation name="get_agent_trap_state">
4092
+ <documentation>
4093
+ Gets the agent trap enabled state
4094
+
4095
+ </documentation>
4096
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4097
+ <input>
4098
+ <soap:body
4099
+ use="encoded"
4100
+ namespace="urn:iControl:Management/SNMPConfiguration"
4101
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4102
+ </input>
4103
+ <output>
4104
+ <soap:body
4105
+ use="encoded"
4106
+ namespace="urn:iControl:Management/SNMPConfiguration"
4107
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4108
+ </output>
4109
+ </operation>
4110
+
4111
+ <operation name="remove_agent_trap_state">
4112
+ <documentation>
4113
+ Removes the agent trap enabled state.
4114
+
4115
+ Note: As of v9.4.2, this method actually sets the agent
4116
+ trap enabled state back to the default.
4117
+
4118
+ </documentation>
4119
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4120
+ <input>
4121
+ <soap:body
4122
+ use="encoded"
4123
+ namespace="urn:iControl:Management/SNMPConfiguration"
4124
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4125
+ </input>
4126
+ <output>
4127
+ <soap:body
4128
+ use="encoded"
4129
+ namespace="urn:iControl:Management/SNMPConfiguration"
4130
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4131
+ </output>
4132
+ </operation>
4133
+
4134
+ <operation name="set_trap_community">
4135
+ <documentation>
4136
+ Sets the trap community string. This defines the default community string to be
4137
+ used when sending traps.
4138
+
4139
+ </documentation>
4140
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4141
+ <input>
4142
+ <soap:body
4143
+ use="encoded"
4144
+ namespace="urn:iControl:Management/SNMPConfiguration"
4145
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4146
+ </input>
4147
+ <output>
4148
+ <soap:body
4149
+ use="encoded"
4150
+ namespace="urn:iControl:Management/SNMPConfiguration"
4151
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4152
+ </output>
4153
+ </operation>
4154
+
4155
+ <operation name="get_trap_community">
4156
+ <documentation>
4157
+ Gets the trap community string.
4158
+
4159
+ </documentation>
4160
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4161
+ <input>
4162
+ <soap:body
4163
+ use="encoded"
4164
+ namespace="urn:iControl:Management/SNMPConfiguration"
4165
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4166
+ </input>
4167
+ <output>
4168
+ <soap:body
4169
+ use="encoded"
4170
+ namespace="urn:iControl:Management/SNMPConfiguration"
4171
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4172
+ </output>
4173
+ </operation>
4174
+
4175
+ <operation name="remove_trap_community">
4176
+ <documentation>
4177
+ Removes the trap community string.
4178
+
4179
+ Note: As of v9.4.2, this method actually sets the trap
4180
+ community string back to the default.
4181
+
4182
+ </documentation>
4183
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4184
+ <input>
4185
+ <soap:body
4186
+ use="encoded"
4187
+ namespace="urn:iControl:Management/SNMPConfiguration"
4188
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4189
+ </input>
4190
+ <output>
4191
+ <soap:body
4192
+ use="encoded"
4193
+ namespace="urn:iControl:Management/SNMPConfiguration"
4194
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4195
+ </output>
4196
+ </operation>
4197
+
4198
+ <operation name="set_trap_sinks">
4199
+ <documentation>
4200
+ Creates a list of trap sinks. This method create definitions for hosts to
4201
+ receive traps (and/or inform notifications). The daemon sends a Cold Start
4202
+ trap when it starts up. If enabled, it also sends traps on authentication failures.
4203
+
4204
+ </documentation>
4205
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4206
+ <input>
4207
+ <soap:body
4208
+ use="encoded"
4209
+ namespace="urn:iControl:Management/SNMPConfiguration"
4210
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4211
+ </input>
4212
+ <output>
4213
+ <soap:body
4214
+ use="encoded"
4215
+ namespace="urn:iControl:Management/SNMPConfiguration"
4216
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4217
+ </output>
4218
+ </operation>
4219
+
4220
+ <operation name="get_trap_sinks">
4221
+ <documentation>
4222
+ Returns a list of trap sinks.
4223
+
4224
+ </documentation>
4225
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4226
+ <input>
4227
+ <soap:body
4228
+ use="encoded"
4229
+ namespace="urn:iControl:Management/SNMPConfiguration"
4230
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4231
+ </input>
4232
+ <output>
4233
+ <soap:body
4234
+ use="encoded"
4235
+ namespace="urn:iControl:Management/SNMPConfiguration"
4236
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4237
+ </output>
4238
+ </operation>
4239
+
4240
+ <operation name="remove_trap_sinks">
4241
+ <documentation>
4242
+ Removes a list of trap sinks.
4243
+
4244
+ </documentation>
4245
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4246
+ <input>
4247
+ <soap:body
4248
+ use="encoded"
4249
+ namespace="urn:iControl:Management/SNMPConfiguration"
4250
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4251
+ </input>
4252
+ <output>
4253
+ <soap:body
4254
+ use="encoded"
4255
+ namespace="urn:iControl:Management/SNMPConfiguration"
4256
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4257
+ </output>
4258
+ </operation>
4259
+
4260
+ <operation name="set_generic_traps">
4261
+ <documentation>
4262
+ This method is now deprecated. Use method set_generic_traps_v2 instead.
4263
+
4264
+ Creates generic traps that allows any type of trap destination to be specified
4265
+ with any version of SNMP.
4266
+
4267
+ </documentation>
4268
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4269
+ <input>
4270
+ <soap:body
4271
+ use="encoded"
4272
+ namespace="urn:iControl:Management/SNMPConfiguration"
4273
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4274
+ </input>
4275
+ <output>
4276
+ <soap:body
4277
+ use="encoded"
4278
+ namespace="urn:iControl:Management/SNMPConfiguration"
4279
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4280
+ </output>
4281
+ </operation>
4282
+
4283
+ <operation name="get_generic_traps">
4284
+ <documentation>
4285
+ This method is now deprecated. Use method get_generic_traps_v2 instead.
4286
+
4287
+ Gets a list of generic traps.
4288
+
4289
+ </documentation>
4290
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4291
+ <input>
4292
+ <soap:body
4293
+ use="encoded"
4294
+ namespace="urn:iControl:Management/SNMPConfiguration"
4295
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4296
+ </input>
4297
+ <output>
4298
+ <soap:body
4299
+ use="encoded"
4300
+ namespace="urn:iControl:Management/SNMPConfiguration"
4301
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4302
+ </output>
4303
+ </operation>
4304
+
4305
+ <operation name="remove_generic_traps">
4306
+ <documentation>
4307
+ This method is now deprecated. Use method remove_generic_traps_v2 instead.
4308
+
4309
+ Removes a list of generic traps.
4310
+
4311
+ </documentation>
4312
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4313
+ <input>
4314
+ <soap:body
4315
+ use="encoded"
4316
+ namespace="urn:iControl:Management/SNMPConfiguration"
4317
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4318
+ </input>
4319
+ <output>
4320
+ <soap:body
4321
+ use="encoded"
4322
+ namespace="urn:iControl:Management/SNMPConfiguration"
4323
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4324
+ </output>
4325
+ </operation>
4326
+
4327
+ <operation name="set_generic_traps_v2">
4328
+ <documentation>
4329
+ Creates generic traps that allows any type of trap destination to be specified
4330
+ with any version of SNMP.
4331
+
4332
+ </documentation>
4333
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4334
+ <input>
4335
+ <soap:body
4336
+ use="encoded"
4337
+ namespace="urn:iControl:Management/SNMPConfiguration"
4338
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4339
+ </input>
4340
+ <output>
4341
+ <soap:body
4342
+ use="encoded"
4343
+ namespace="urn:iControl:Management/SNMPConfiguration"
4344
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4345
+ </output>
4346
+ </operation>
4347
+
4348
+ <operation name="get_generic_traps_v2">
4349
+ <documentation>
4350
+ Gets a list of generic traps.
4351
+
4352
+ </documentation>
4353
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4354
+ <input>
4355
+ <soap:body
4356
+ use="encoded"
4357
+ namespace="urn:iControl:Management/SNMPConfiguration"
4358
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4359
+ </input>
4360
+ <output>
4361
+ <soap:body
4362
+ use="encoded"
4363
+ namespace="urn:iControl:Management/SNMPConfiguration"
4364
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4365
+ </output>
4366
+ </operation>
4367
+
4368
+ <operation name="remove_generic_traps_v2">
4369
+ <documentation>
4370
+ Removes a list of generic traps.
4371
+
4372
+ </documentation>
4373
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4374
+ <input>
4375
+ <soap:body
4376
+ use="encoded"
4377
+ namespace="urn:iControl:Management/SNMPConfiguration"
4378
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4379
+ </input>
4380
+ <output>
4381
+ <soap:body
4382
+ use="encoded"
4383
+ namespace="urn:iControl:Management/SNMPConfiguration"
4384
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4385
+ </output>
4386
+ </operation>
4387
+
4388
+ <operation name="set_proxy">
4389
+ <documentation>
4390
+ Creates a list of snmp proxies. This specifies that any incoming request under
4391
+ oid should be proxied on to a remote host instead.
4392
+
4393
+ </documentation>
4394
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4395
+ <input>
4396
+ <soap:body
4397
+ use="encoded"
4398
+ namespace="urn:iControl:Management/SNMPConfiguration"
4399
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4400
+ </input>
4401
+ <output>
4402
+ <soap:body
4403
+ use="encoded"
4404
+ namespace="urn:iControl:Management/SNMPConfiguration"
4405
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4406
+ </output>
4407
+ </operation>
4408
+
4409
+ <operation name="get_proxy">
4410
+ <documentation>
4411
+ Gets a list of snmp proxies.
4412
+
4413
+ </documentation>
4414
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4415
+ <input>
4416
+ <soap:body
4417
+ use="encoded"
4418
+ namespace="urn:iControl:Management/SNMPConfiguration"
4419
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4420
+ </input>
4421
+ <output>
4422
+ <soap:body
4423
+ use="encoded"
4424
+ namespace="urn:iControl:Management/SNMPConfiguration"
4425
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4426
+ </output>
4427
+ </operation>
4428
+
4429
+ <operation name="remove_proxy">
4430
+ <documentation>
4431
+ Removes a list of snmp proxies.
4432
+
4433
+ </documentation>
4434
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4435
+ <input>
4436
+ <soap:body
4437
+ use="encoded"
4438
+ namespace="urn:iControl:Management/SNMPConfiguration"
4439
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4440
+ </input>
4441
+ <output>
4442
+ <soap:body
4443
+ use="encoded"
4444
+ namespace="urn:iControl:Management/SNMPConfiguration"
4445
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4446
+ </output>
4447
+ </operation>
4448
+
4449
+ <operation name="set_pass_through">
4450
+ <documentation>
4451
+ Creates a list of pass through controls. This passes entire control of the mib
4452
+ oid to the executing program.
4453
+
4454
+ </documentation>
4455
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4456
+ <input>
4457
+ <soap:body
4458
+ use="encoded"
4459
+ namespace="urn:iControl:Management/SNMPConfiguration"
4460
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4461
+ </input>
4462
+ <output>
4463
+ <soap:body
4464
+ use="encoded"
4465
+ namespace="urn:iControl:Management/SNMPConfiguration"
4466
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4467
+ </output>
4468
+ </operation>
4469
+
4470
+ <operation name="get_pass_through">
4471
+ <documentation>
4472
+ Gets a list of pass through controls.
4473
+
4474
+ </documentation>
4475
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4476
+ <input>
4477
+ <soap:body
4478
+ use="encoded"
4479
+ namespace="urn:iControl:Management/SNMPConfiguration"
4480
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4481
+ </input>
4482
+ <output>
4483
+ <soap:body
4484
+ use="encoded"
4485
+ namespace="urn:iControl:Management/SNMPConfiguration"
4486
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4487
+ </output>
4488
+ </operation>
4489
+
4490
+ <operation name="remove_pass_through">
4491
+ <documentation>
4492
+ Removes a list of pass through controls.
4493
+
4494
+ </documentation>
4495
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4496
+ <input>
4497
+ <soap:body
4498
+ use="encoded"
4499
+ namespace="urn:iControl:Management/SNMPConfiguration"
4500
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4501
+ </input>
4502
+ <output>
4503
+ <soap:body
4504
+ use="encoded"
4505
+ namespace="urn:iControl:Management/SNMPConfiguration"
4506
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4507
+ </output>
4508
+ </operation>
4509
+
4510
+ <operation name="set_pass_through_persist">
4511
+ <documentation>
4512
+ Creates a list of persist pass through controls. This passes entire control
4513
+ of the mib oid to the executing program. This is similar to set_path_through(),
4514
+ but the executing program continues to run after the initial request is answered.
4515
+
4516
+ </documentation>
4517
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4518
+ <input>
4519
+ <soap:body
4520
+ use="encoded"
4521
+ namespace="urn:iControl:Management/SNMPConfiguration"
4522
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4523
+ </input>
4524
+ <output>
4525
+ <soap:body
4526
+ use="encoded"
4527
+ namespace="urn:iControl:Management/SNMPConfiguration"
4528
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4529
+ </output>
4530
+ </operation>
4531
+
4532
+ <operation name="get_pass_through_persist">
4533
+ <documentation>
4534
+ Gets a list of persist pass through controls.
4535
+
4536
+ </documentation>
4537
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4538
+ <input>
4539
+ <soap:body
4540
+ use="encoded"
4541
+ namespace="urn:iControl:Management/SNMPConfiguration"
4542
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4543
+ </input>
4544
+ <output>
4545
+ <soap:body
4546
+ use="encoded"
4547
+ namespace="urn:iControl:Management/SNMPConfiguration"
4548
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4549
+ </output>
4550
+ </operation>
4551
+
4552
+ <operation name="remove_pass_through_persist">
4553
+ <documentation>
4554
+ Removes a list of persist pass through controls.
4555
+
4556
+ </documentation>
4557
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4558
+ <input>
4559
+ <soap:body
4560
+ use="encoded"
4561
+ namespace="urn:iControl:Management/SNMPConfiguration"
4562
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4563
+ </input>
4564
+ <output>
4565
+ <soap:body
4566
+ use="encoded"
4567
+ namespace="urn:iControl:Management/SNMPConfiguration"
4568
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4569
+ </output>
4570
+ </operation>
4571
+
4572
+ <operation name="set_client_access">
4573
+ <documentation>
4574
+ Creates a list of client access controls. These are stored in the /etc/hosts.allow
4575
+ file.
4576
+
4577
+ </documentation>
4578
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4579
+ <input>
4580
+ <soap:body
4581
+ use="encoded"
4582
+ namespace="urn:iControl:Management/SNMPConfiguration"
4583
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4584
+ </input>
4585
+ <output>
4586
+ <soap:body
4587
+ use="encoded"
4588
+ namespace="urn:iControl:Management/SNMPConfiguration"
4589
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4590
+ </output>
4591
+ </operation>
4592
+
4593
+ <operation name="get_client_access">
4594
+ <documentation>
4595
+ Gets a list of client access controls.
4596
+
4597
+ </documentation>
4598
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4599
+ <input>
4600
+ <soap:body
4601
+ use="encoded"
4602
+ namespace="urn:iControl:Management/SNMPConfiguration"
4603
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4604
+ </input>
4605
+ <output>
4606
+ <soap:body
4607
+ use="encoded"
4608
+ namespace="urn:iControl:Management/SNMPConfiguration"
4609
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4610
+ </output>
4611
+ </operation>
4612
+
4613
+ <operation name="remove_client_access">
4614
+ <documentation>
4615
+ Removes a list of client access controls.
4616
+
4617
+ </documentation>
4618
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4619
+ <input>
4620
+ <soap:body
4621
+ use="encoded"
4622
+ namespace="urn:iControl:Management/SNMPConfiguration"
4623
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4624
+ </input>
4625
+ <output>
4626
+ <soap:body
4627
+ use="encoded"
4628
+ namespace="urn:iControl:Management/SNMPConfiguration"
4629
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4630
+ </output>
4631
+ </operation>
4632
+
4633
+ <operation name="get_version">
4634
+ <documentation>
4635
+ Gets the version information for this interface.
4636
+
4637
+ </documentation>
4638
+ <soap:operation soapAction="urn:iControl:Management/SNMPConfiguration"/>
4639
+ <input>
4640
+ <soap:body
4641
+ use="encoded"
4642
+ namespace="urn:iControl:Management/SNMPConfiguration"
4643
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4644
+ </input>
4645
+ <output>
4646
+ <soap:body
4647
+ use="encoded"
4648
+ namespace="urn:iControl:Management/SNMPConfiguration"
4649
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
4650
+ </output>
4651
+ </operation>
4652
+ </binding>
4653
+
4654
+ <!-- service -->
4655
+
4656
+ <service name="Management.SNMPConfiguration">
4657
+ <documentation>
4658
+ The SNMPConfiguration interface allows users to manage the full configurations
4659
+ for UCD SNMP agent.
4660
+ Please read the manual pages for snmpd.conf for further information.
4661
+
4662
+
4663
+ TODO:
4664
+ Missing directives:
4665
+ - override
4666
+
4667
+ </documentation>
4668
+ <port name="Management.SNMPConfigurationPort" binding="tns:Management.SNMPConfigurationBinding">
4669
+ <soap:address location="https://url_to_service"/>
4670
+ </port>
4671
+ </service>
4672
+ </definitions>