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,1081 @@
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="iCall.PerpetualHandler"
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="iCall.PerpetualHandlerStateSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:iCall.PerpetualHandlerState[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:complexType name="iCall.MatchAlgorithmSequenceSequenceSequence">
32
+ <xsd:complexContent>
33
+ <xsd:restriction base='SOAP-ENC:Array'>
34
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:iCall.MatchAlgorithmSequenceSequence[]'/>
35
+ </xsd:restriction>
36
+ </xsd:complexContent>
37
+ </xsd:complexType>
38
+ <xsd:complexType name="Common.StringSequence">
39
+ <xsd:complexContent>
40
+ <xsd:restriction base='SOAP-ENC:Array'>
41
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
42
+ </xsd:restriction>
43
+ </xsd:complexContent>
44
+ </xsd:complexType>
45
+ <xsd:complexType name="Common.StringSequenceSequenceSequence">
46
+ <xsd:complexContent>
47
+ <xsd:restriction base='SOAP-ENC:Array'>
48
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequenceSequence[]'/>
49
+ </xsd:restriction>
50
+ </xsd:complexContent>
51
+ </xsd:complexType>
52
+ <xsd:simpleType name="iCall.PerpetualHandlerState">
53
+ <xsd:restriction base="xsd:string">
54
+ <xsd:enumeration value="PERPETUAL_HANDLER_STATE_UNKNOWN">
55
+ <xsd:annotation>
56
+ <xsd:documentation>PERPETUAL_HANDLER_STATE_UNKNOWN</xsd:documentation>
57
+ </xsd:annotation>
58
+ </xsd:enumeration>
59
+ <xsd:enumeration value="PERPETUAL_HANDLER_STATE_ACTIVE">
60
+ <xsd:annotation>
61
+ <xsd:documentation>PERPETUAL_HANDLER_STATE_ACTIVE</xsd:documentation>
62
+ </xsd:annotation>
63
+ </xsd:enumeration>
64
+ <xsd:enumeration value="PERPETUAL_HANDLER_STATE_INACTIVE">
65
+ <xsd:annotation>
66
+ <xsd:documentation>PERPETUAL_HANDLER_STATE_INACTIVE</xsd:documentation>
67
+ </xsd:annotation>
68
+ </xsd:enumeration>
69
+ <xsd:enumeration value="PERPETUAL_HANDLER_STATE_SUSPEND">
70
+ <xsd:annotation>
71
+ <xsd:documentation>PERPETUAL_HANDLER_STATE_SUSPEND</xsd:documentation>
72
+ </xsd:annotation>
73
+ </xsd:enumeration>
74
+ </xsd:restriction>
75
+ </xsd:simpleType>
76
+ <xsd:complexType name="iCall.MatchAlgorithmSequence">
77
+ <xsd:complexContent>
78
+ <xsd:restriction base='SOAP-ENC:Array'>
79
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:iCall.MatchAlgorithm[]'/>
80
+ </xsd:restriction>
81
+ </xsd:complexContent>
82
+ </xsd:complexType>
83
+ <xsd:complexType name="Common.StringSequenceSequence">
84
+ <xsd:complexContent>
85
+ <xsd:restriction base='SOAP-ENC:Array'>
86
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
87
+ </xsd:restriction>
88
+ </xsd:complexContent>
89
+ </xsd:complexType>
90
+ <xsd:simpleType name="iCall.MatchAlgorithm">
91
+ <xsd:restriction base="xsd:string">
92
+ <xsd:enumeration value="MATCH_ALGORITHM_UNKNOWN">
93
+ <xsd:annotation>
94
+ <xsd:documentation>MATCH_ALGORITHM_UNKNOWN</xsd:documentation>
95
+ </xsd:annotation>
96
+ </xsd:enumeration>
97
+ <xsd:enumeration value="MATCH_ALGORITHM_EXACT">
98
+ <xsd:annotation>
99
+ <xsd:documentation>MATCH_ALGORITHM_EXACT</xsd:documentation>
100
+ </xsd:annotation>
101
+ </xsd:enumeration>
102
+ <xsd:enumeration value="MATCH_ALGORITHM_GLOB">
103
+ <xsd:annotation>
104
+ <xsd:documentation>MATCH_ALGORITHM_GLOB</xsd:documentation>
105
+ </xsd:annotation>
106
+ </xsd:enumeration>
107
+ <xsd:enumeration value="MATCH_ALGORITHM_REGEX">
108
+ <xsd:annotation>
109
+ <xsd:documentation>MATCH_ALGORITHM_REGEX</xsd:documentation>
110
+ </xsd:annotation>
111
+ </xsd:enumeration>
112
+ <xsd:enumeration value="MATCH_ALGORITHM_SUBNET">
113
+ <xsd:annotation>
114
+ <xsd:documentation>MATCH_ALGORITHM_SUBNET</xsd:documentation>
115
+ </xsd:annotation>
116
+ </xsd:enumeration>
117
+ <xsd:enumeration value="MATCH_ALGORITHM_ACCEPT_ALL">
118
+ <xsd:annotation>
119
+ <xsd:documentation>MATCH_ALGORITHM_ACCEPT_ALL</xsd:documentation>
120
+ </xsd:annotation>
121
+ </xsd:enumeration>
122
+ </xsd:restriction>
123
+ </xsd:simpleType>
124
+ <xsd:complexType name="iCall.MatchAlgorithmSequenceSequence">
125
+ <xsd:complexContent>
126
+ <xsd:restriction base='SOAP-ENC:Array'>
127
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:iCall.MatchAlgorithmSequence[]'/>
128
+ </xsd:restriction>
129
+ </xsd:complexContent>
130
+ </xsd:complexType>
131
+ </xsd:schema>
132
+ </types>
133
+
134
+ <!-- message -->
135
+
136
+ <message name="iCall.PerpetualHandler.get_listRequest">
137
+ </message>
138
+ <message name="iCall.PerpetualHandler.get_listResponse">
139
+ <part name="return" type="tns:Common.StringSequence"/>
140
+ </message>
141
+
142
+ <message name="iCall.PerpetualHandler.createRequest">
143
+ <part name="handlers" type="tns:Common.StringSequence"/>
144
+ <part name="scripts" type="tns:Common.StringSequence"/>
145
+ </message>
146
+ <message name="iCall.PerpetualHandler.createResponse">
147
+ </message>
148
+
149
+ <message name="iCall.PerpetualHandler.delete_handlerRequest">
150
+ <part name="handlers" type="tns:Common.StringSequence"/>
151
+ </message>
152
+ <message name="iCall.PerpetualHandler.delete_handlerResponse">
153
+ </message>
154
+
155
+ <message name="iCall.PerpetualHandler.delete_all_handlersRequest">
156
+ </message>
157
+ <message name="iCall.PerpetualHandler.delete_all_handlersResponse">
158
+ </message>
159
+
160
+ <message name="iCall.PerpetualHandler.set_descriptionRequest">
161
+ <part name="handlers" type="tns:Common.StringSequence"/>
162
+ <part name="descriptions" type="tns:Common.StringSequence"/>
163
+ </message>
164
+ <message name="iCall.PerpetualHandler.set_descriptionResponse">
165
+ </message>
166
+
167
+ <message name="iCall.PerpetualHandler.get_descriptionRequest">
168
+ <part name="handlers" type="tns:Common.StringSequence"/>
169
+ </message>
170
+ <message name="iCall.PerpetualHandler.get_descriptionResponse">
171
+ <part name="return" type="tns:Common.StringSequence"/>
172
+ </message>
173
+
174
+ <message name="iCall.PerpetualHandler.set_handler_stateRequest">
175
+ <part name="handlers" type="tns:Common.StringSequence"/>
176
+ <part name="states" type="tns:iCall.PerpetualHandlerStateSequence"/>
177
+ </message>
178
+ <message name="iCall.PerpetualHandler.set_handler_stateResponse">
179
+ </message>
180
+
181
+ <message name="iCall.PerpetualHandler.get_handler_stateRequest">
182
+ <part name="handlers" type="tns:Common.StringSequence"/>
183
+ </message>
184
+ <message name="iCall.PerpetualHandler.get_handler_stateResponse">
185
+ <part name="return" type="tns:iCall.PerpetualHandlerStateSequence"/>
186
+ </message>
187
+
188
+ <message name="iCall.PerpetualHandler.set_scriptRequest">
189
+ <part name="handlers" type="tns:Common.StringSequence"/>
190
+ <part name="scripts" type="tns:Common.StringSequence"/>
191
+ </message>
192
+ <message name="iCall.PerpetualHandler.set_scriptResponse">
193
+ </message>
194
+
195
+ <message name="iCall.PerpetualHandler.get_scriptRequest">
196
+ <part name="handlers" type="tns:Common.StringSequence"/>
197
+ </message>
198
+ <message name="iCall.PerpetualHandler.get_scriptResponse">
199
+ <part name="return" type="tns:Common.StringSequence"/>
200
+ </message>
201
+
202
+ <message name="iCall.PerpetualHandler.get_subscriptionRequest">
203
+ <part name="handlers" type="tns:Common.StringSequence"/>
204
+ </message>
205
+ <message name="iCall.PerpetualHandler.get_subscriptionResponse">
206
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
207
+ </message>
208
+
209
+ <message name="iCall.PerpetualHandler.add_subscriptionRequest">
210
+ <part name="handlers" type="tns:Common.StringSequence"/>
211
+ <part name="subscriptions" type="tns:Common.StringSequenceSequence"/>
212
+ <part name="events" type="tns:Common.StringSequenceSequence"/>
213
+ </message>
214
+ <message name="iCall.PerpetualHandler.add_subscriptionResponse">
215
+ </message>
216
+
217
+ <message name="iCall.PerpetualHandler.remove_subscriptionRequest">
218
+ <part name="handlers" type="tns:Common.StringSequence"/>
219
+ <part name="subscriptions" type="tns:Common.StringSequenceSequence"/>
220
+ </message>
221
+ <message name="iCall.PerpetualHandler.remove_subscriptionResponse">
222
+ </message>
223
+
224
+ <message name="iCall.PerpetualHandler.remove_all_subscriptionsRequest">
225
+ <part name="handlers" type="tns:Common.StringSequence"/>
226
+ </message>
227
+ <message name="iCall.PerpetualHandler.remove_all_subscriptionsResponse">
228
+ </message>
229
+
230
+ <message name="iCall.PerpetualHandler.set_subscription_eventRequest">
231
+ <part name="handlers" type="tns:Common.StringSequence"/>
232
+ <part name="subscriptions" type="tns:Common.StringSequenceSequence"/>
233
+ <part name="events" type="tns:Common.StringSequenceSequence"/>
234
+ </message>
235
+ <message name="iCall.PerpetualHandler.set_subscription_eventResponse">
236
+ </message>
237
+
238
+ <message name="iCall.PerpetualHandler.get_subscription_eventRequest">
239
+ <part name="handlers" type="tns:Common.StringSequence"/>
240
+ <part name="subscriptions" type="tns:Common.StringSequenceSequence"/>
241
+ </message>
242
+ <message name="iCall.PerpetualHandler.get_subscription_eventResponse">
243
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
244
+ </message>
245
+
246
+ <message name="iCall.PerpetualHandler.get_filterRequest">
247
+ <part name="handlers" type="tns:Common.StringSequence"/>
248
+ <part name="subscriptions" type="tns:Common.StringSequenceSequence"/>
249
+ </message>
250
+ <message name="iCall.PerpetualHandler.get_filterResponse">
251
+ <part name="return" type="tns:Common.StringSequenceSequenceSequence"/>
252
+ </message>
253
+
254
+ <message name="iCall.PerpetualHandler.add_filterRequest">
255
+ <part name="handlers" type="tns:Common.StringSequence"/>
256
+ <part name="subscriptions" type="tns:Common.StringSequenceSequence"/>
257
+ <part name="filters" type="tns:Common.StringSequenceSequenceSequence"/>
258
+ <part name="values" type="tns:Common.StringSequenceSequenceSequence"/>
259
+ </message>
260
+ <message name="iCall.PerpetualHandler.add_filterResponse">
261
+ </message>
262
+
263
+ <message name="iCall.PerpetualHandler.remove_filterRequest">
264
+ <part name="handlers" type="tns:Common.StringSequence"/>
265
+ <part name="subscriptions" type="tns:Common.StringSequenceSequence"/>
266
+ <part name="filters" type="tns:Common.StringSequenceSequenceSequence"/>
267
+ </message>
268
+ <message name="iCall.PerpetualHandler.remove_filterResponse">
269
+ </message>
270
+
271
+ <message name="iCall.PerpetualHandler.remove_all_filtersRequest">
272
+ <part name="handlers" type="tns:Common.StringSequence"/>
273
+ <part name="subscriptions" type="tns:Common.StringSequenceSequence"/>
274
+ </message>
275
+ <message name="iCall.PerpetualHandler.remove_all_filtersResponse">
276
+ </message>
277
+
278
+ <message name="iCall.PerpetualHandler.set_filter_valueRequest">
279
+ <part name="handlers" type="tns:Common.StringSequence"/>
280
+ <part name="subscriptions" type="tns:Common.StringSequenceSequence"/>
281
+ <part name="filters" type="tns:Common.StringSequenceSequenceSequence"/>
282
+ <part name="values" type="tns:Common.StringSequenceSequenceSequence"/>
283
+ </message>
284
+ <message name="iCall.PerpetualHandler.set_filter_valueResponse">
285
+ </message>
286
+
287
+ <message name="iCall.PerpetualHandler.get_filter_valueRequest">
288
+ <part name="handlers" type="tns:Common.StringSequence"/>
289
+ <part name="subscriptions" type="tns:Common.StringSequenceSequence"/>
290
+ <part name="filters" type="tns:Common.StringSequenceSequenceSequence"/>
291
+ </message>
292
+ <message name="iCall.PerpetualHandler.get_filter_valueResponse">
293
+ <part name="return" type="tns:Common.StringSequenceSequenceSequence"/>
294
+ </message>
295
+
296
+ <message name="iCall.PerpetualHandler.set_filter_match_algorithmRequest">
297
+ <part name="handlers" type="tns:Common.StringSequence"/>
298
+ <part name="subscriptions" type="tns:Common.StringSequenceSequence"/>
299
+ <part name="filters" type="tns:Common.StringSequenceSequenceSequence"/>
300
+ <part name="algorithms" type="tns:iCall.MatchAlgorithmSequenceSequenceSequence"/>
301
+ </message>
302
+ <message name="iCall.PerpetualHandler.set_filter_match_algorithmResponse">
303
+ </message>
304
+
305
+ <message name="iCall.PerpetualHandler.get_filter_match_algorithmRequest">
306
+ <part name="handlers" type="tns:Common.StringSequence"/>
307
+ <part name="subscriptions" type="tns:Common.StringSequenceSequence"/>
308
+ <part name="filters" type="tns:Common.StringSequenceSequenceSequence"/>
309
+ </message>
310
+ <message name="iCall.PerpetualHandler.get_filter_match_algorithmResponse">
311
+ <part name="return" type="tns:iCall.MatchAlgorithmSequenceSequenceSequence"/>
312
+ </message>
313
+
314
+ <message name="iCall.PerpetualHandler.get_versionRequest">
315
+ </message>
316
+ <message name="iCall.PerpetualHandler.get_versionResponse">
317
+ <part name="return" type="xsd:string"/>
318
+ </message>
319
+
320
+ <!-- portType -->
321
+
322
+ <portType name="iCall.PerpetualHandlerPortType">
323
+ <operation name="get_list">
324
+ <documentation>
325
+ Gets the list of perpetual handlers.
326
+
327
+ </documentation>
328
+ <input message="tns:iCall.PerpetualHandler.get_listRequest"/>
329
+ <output message="tns:iCall.PerpetualHandler.get_listResponse"/>
330
+ </operation>
331
+ <operation name="create">
332
+ <documentation>
333
+ Creates new perpetual handlers.
334
+
335
+ </documentation>
336
+ <input message="tns:iCall.PerpetualHandler.createRequest"/>
337
+ <output message="tns:iCall.PerpetualHandler.createResponse"/>
338
+ </operation>
339
+ <operation name="delete_handler">
340
+ <documentation>
341
+ Deletes the specified perpetual handlers.
342
+
343
+ </documentation>
344
+ <input message="tns:iCall.PerpetualHandler.delete_handlerRequest"/>
345
+ <output message="tns:iCall.PerpetualHandler.delete_handlerResponse"/>
346
+ </operation>
347
+ <operation name="delete_all_handlers">
348
+ <documentation>
349
+ Deletes all user-defined (non-root) perpetual handlers.
350
+
351
+ </documentation>
352
+ <input message="tns:iCall.PerpetualHandler.delete_all_handlersRequest"/>
353
+ <output message="tns:iCall.PerpetualHandler.delete_all_handlersResponse"/>
354
+ </operation>
355
+ <operation name="set_description">
356
+ <documentation>
357
+ Sets the description for the specified perpetual handlers.
358
+
359
+ This is an arbitrary field which can be used for any purpose.
360
+
361
+ </documentation>
362
+ <input message="tns:iCall.PerpetualHandler.set_descriptionRequest"/>
363
+ <output message="tns:iCall.PerpetualHandler.set_descriptionResponse"/>
364
+ </operation>
365
+ <operation name="get_description">
366
+ <documentation>
367
+ Gets the descriptions for the specified perpetual handlers.
368
+
369
+ </documentation>
370
+ <input message="tns:iCall.PerpetualHandler.get_descriptionRequest"/>
371
+ <output message="tns:iCall.PerpetualHandler.get_descriptionResponse"/>
372
+ </operation>
373
+ <operation name="set_handler_state">
374
+ <documentation>
375
+ Sets the states for the specified perpetual handlers.
376
+
377
+ This field describes whether the handler is running and accepting
378
+ events.
379
+
380
+ </documentation>
381
+ <input message="tns:iCall.PerpetualHandler.set_handler_stateRequest"/>
382
+ <output message="tns:iCall.PerpetualHandler.set_handler_stateResponse"/>
383
+ </operation>
384
+ <operation name="get_handler_state">
385
+ <documentation>
386
+ Gets the states for the specified perpetual handlers.
387
+
388
+ </documentation>
389
+ <input message="tns:iCall.PerpetualHandler.get_handler_stateRequest"/>
390
+ <output message="tns:iCall.PerpetualHandler.get_handler_stateResponse"/>
391
+ </operation>
392
+ <operation name="set_script">
393
+ <documentation>
394
+ Sets the script for the specified perpetual handlers.
395
+
396
+ This is the name of a Tcl script that will be run when an event
397
+ to which this handler subscribes fires.
398
+
399
+ </documentation>
400
+ <input message="tns:iCall.PerpetualHandler.set_scriptRequest"/>
401
+ <output message="tns:iCall.PerpetualHandler.set_scriptResponse"/>
402
+ </operation>
403
+ <operation name="get_script">
404
+ <documentation>
405
+ Gets the scripts for the specified perpetual handlers.
406
+
407
+ </documentation>
408
+ <input message="tns:iCall.PerpetualHandler.get_scriptRequest"/>
409
+ <output message="tns:iCall.PerpetualHandler.get_scriptResponse"/>
410
+ </operation>
411
+ <operation name="get_subscription">
412
+ <documentation>
413
+ Gets a list of subscriptions.
414
+
415
+ </documentation>
416
+ <input message="tns:iCall.PerpetualHandler.get_subscriptionRequest"/>
417
+ <output message="tns:iCall.PerpetualHandler.get_subscriptionResponse"/>
418
+ </operation>
419
+ <operation name="add_subscription">
420
+ <documentation>
421
+ Add new subscriptions to perpetual handlers.
422
+
423
+ </documentation>
424
+ <input message="tns:iCall.PerpetualHandler.add_subscriptionRequest"/>
425
+ <output message="tns:iCall.PerpetualHandler.add_subscriptionResponse"/>
426
+ </operation>
427
+ <operation name="remove_subscription">
428
+ <documentation>
429
+ Remove subscriptions from perpetual handlers.
430
+
431
+ </documentation>
432
+ <input message="tns:iCall.PerpetualHandler.remove_subscriptionRequest"/>
433
+ <output message="tns:iCall.PerpetualHandler.remove_subscriptionResponse"/>
434
+ </operation>
435
+ <operation name="remove_all_subscriptions">
436
+ <documentation>
437
+ Remove all subscriptions from perpetual handlers.
438
+
439
+ </documentation>
440
+ <input message="tns:iCall.PerpetualHandler.remove_all_subscriptionsRequest"/>
441
+ <output message="tns:iCall.PerpetualHandler.remove_all_subscriptionsResponse"/>
442
+ </operation>
443
+ <operation name="set_subscription_event">
444
+ <documentation>
445
+ Set the event names for the specified subscriptions.
446
+
447
+ </documentation>
448
+ <input message="tns:iCall.PerpetualHandler.set_subscription_eventRequest"/>
449
+ <output message="tns:iCall.PerpetualHandler.set_subscription_eventResponse"/>
450
+ </operation>
451
+ <operation name="get_subscription_event">
452
+ <documentation>
453
+ Get the event names from the specified subscriptions.
454
+
455
+ </documentation>
456
+ <input message="tns:iCall.PerpetualHandler.get_subscription_eventRequest"/>
457
+ <output message="tns:iCall.PerpetualHandler.get_subscription_eventResponse"/>
458
+ </operation>
459
+ <operation name="get_filter">
460
+ <documentation>
461
+ Gets a list of filter names for the specified subscriptions.
462
+
463
+ </documentation>
464
+ <input message="tns:iCall.PerpetualHandler.get_filterRequest"/>
465
+ <output message="tns:iCall.PerpetualHandler.get_filterResponse"/>
466
+ </operation>
467
+ <operation name="add_filter">
468
+ <documentation>
469
+ Add the specified filters to the specified subscriptions.
470
+
471
+ The initial match algorithms for these filters will all be
472
+ MATCH_ALGORITHM_EXACT.
473
+
474
+ </documentation>
475
+ <input message="tns:iCall.PerpetualHandler.add_filterRequest"/>
476
+ <output message="tns:iCall.PerpetualHandler.add_filterResponse"/>
477
+ </operation>
478
+ <operation name="remove_filter">
479
+ <documentation>
480
+ Remove filters from the given subscriptions.
481
+
482
+ </documentation>
483
+ <input message="tns:iCall.PerpetualHandler.remove_filterRequest"/>
484
+ <output message="tns:iCall.PerpetualHandler.remove_filterResponse"/>
485
+ </operation>
486
+ <operation name="remove_all_filters">
487
+ <documentation>
488
+ Remove all filters from the given subscriptions.
489
+
490
+ </documentation>
491
+ <input message="tns:iCall.PerpetualHandler.remove_all_filtersRequest"/>
492
+ <output message="tns:iCall.PerpetualHandler.remove_all_filtersResponse"/>
493
+ </operation>
494
+ <operation name="set_filter_value">
495
+ <documentation>
496
+ Set the values for the specified filters.
497
+
498
+ </documentation>
499
+ <input message="tns:iCall.PerpetualHandler.set_filter_valueRequest"/>
500
+ <output message="tns:iCall.PerpetualHandler.set_filter_valueResponse"/>
501
+ </operation>
502
+ <operation name="get_filter_value">
503
+ <documentation>
504
+ Get the values for the specified filters.
505
+
506
+ </documentation>
507
+ <input message="tns:iCall.PerpetualHandler.get_filter_valueRequest"/>
508
+ <output message="tns:iCall.PerpetualHandler.get_filter_valueResponse"/>
509
+ </operation>
510
+ <operation name="set_filter_match_algorithm">
511
+ <documentation>
512
+ Set the match algorithms for the specified filters.
513
+
514
+ </documentation>
515
+ <input message="tns:iCall.PerpetualHandler.set_filter_match_algorithmRequest"/>
516
+ <output message="tns:iCall.PerpetualHandler.set_filter_match_algorithmResponse"/>
517
+ </operation>
518
+ <operation name="get_filter_match_algorithm">
519
+ <documentation>
520
+ Get the match algorithms for the specified filters.
521
+
522
+ </documentation>
523
+ <input message="tns:iCall.PerpetualHandler.get_filter_match_algorithmRequest"/>
524
+ <output message="tns:iCall.PerpetualHandler.get_filter_match_algorithmResponse"/>
525
+ </operation>
526
+ <operation name="get_version">
527
+ <documentation>
528
+ Gets the version information for this interface.
529
+
530
+ </documentation>
531
+ <input message="tns:iCall.PerpetualHandler.get_versionRequest"/>
532
+ <output message="tns:iCall.PerpetualHandler.get_versionResponse"/>
533
+ </operation>
534
+ </portType>
535
+
536
+ <!-- binding -->
537
+
538
+ <binding name="iCall.PerpetualHandlerBinding" type="tns:iCall.PerpetualHandlerPortType">
539
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
540
+ <operation name="get_list">
541
+ <documentation>
542
+ Gets the list of perpetual handlers.
543
+
544
+ </documentation>
545
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
546
+ <input>
547
+ <soap:body
548
+ use="encoded"
549
+ namespace="urn:iControl:iCall/PerpetualHandler"
550
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
551
+ </input>
552
+ <output>
553
+ <soap:body
554
+ use="encoded"
555
+ namespace="urn:iControl:iCall/PerpetualHandler"
556
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
557
+ </output>
558
+ </operation>
559
+
560
+ <operation name="create">
561
+ <documentation>
562
+ Creates new perpetual handlers.
563
+
564
+ </documentation>
565
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
566
+ <input>
567
+ <soap:body
568
+ use="encoded"
569
+ namespace="urn:iControl:iCall/PerpetualHandler"
570
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
571
+ </input>
572
+ <output>
573
+ <soap:body
574
+ use="encoded"
575
+ namespace="urn:iControl:iCall/PerpetualHandler"
576
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
577
+ </output>
578
+ </operation>
579
+
580
+ <operation name="delete_handler">
581
+ <documentation>
582
+ Deletes the specified perpetual handlers.
583
+
584
+ </documentation>
585
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
586
+ <input>
587
+ <soap:body
588
+ use="encoded"
589
+ namespace="urn:iControl:iCall/PerpetualHandler"
590
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
591
+ </input>
592
+ <output>
593
+ <soap:body
594
+ use="encoded"
595
+ namespace="urn:iControl:iCall/PerpetualHandler"
596
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
597
+ </output>
598
+ </operation>
599
+
600
+ <operation name="delete_all_handlers">
601
+ <documentation>
602
+ Deletes all user-defined (non-root) perpetual handlers.
603
+
604
+ </documentation>
605
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
606
+ <input>
607
+ <soap:body
608
+ use="encoded"
609
+ namespace="urn:iControl:iCall/PerpetualHandler"
610
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
611
+ </input>
612
+ <output>
613
+ <soap:body
614
+ use="encoded"
615
+ namespace="urn:iControl:iCall/PerpetualHandler"
616
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
617
+ </output>
618
+ </operation>
619
+
620
+ <operation name="set_description">
621
+ <documentation>
622
+ Sets the description for the specified perpetual handlers.
623
+
624
+ This is an arbitrary field which can be used for any purpose.
625
+
626
+ </documentation>
627
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
628
+ <input>
629
+ <soap:body
630
+ use="encoded"
631
+ namespace="urn:iControl:iCall/PerpetualHandler"
632
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
633
+ </input>
634
+ <output>
635
+ <soap:body
636
+ use="encoded"
637
+ namespace="urn:iControl:iCall/PerpetualHandler"
638
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
639
+ </output>
640
+ </operation>
641
+
642
+ <operation name="get_description">
643
+ <documentation>
644
+ Gets the descriptions for the specified perpetual handlers.
645
+
646
+ </documentation>
647
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
648
+ <input>
649
+ <soap:body
650
+ use="encoded"
651
+ namespace="urn:iControl:iCall/PerpetualHandler"
652
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
653
+ </input>
654
+ <output>
655
+ <soap:body
656
+ use="encoded"
657
+ namespace="urn:iControl:iCall/PerpetualHandler"
658
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
659
+ </output>
660
+ </operation>
661
+
662
+ <operation name="set_handler_state">
663
+ <documentation>
664
+ Sets the states for the specified perpetual handlers.
665
+
666
+ This field describes whether the handler is running and accepting
667
+ events.
668
+
669
+ </documentation>
670
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
671
+ <input>
672
+ <soap:body
673
+ use="encoded"
674
+ namespace="urn:iControl:iCall/PerpetualHandler"
675
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
676
+ </input>
677
+ <output>
678
+ <soap:body
679
+ use="encoded"
680
+ namespace="urn:iControl:iCall/PerpetualHandler"
681
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
682
+ </output>
683
+ </operation>
684
+
685
+ <operation name="get_handler_state">
686
+ <documentation>
687
+ Gets the states for the specified perpetual handlers.
688
+
689
+ </documentation>
690
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
691
+ <input>
692
+ <soap:body
693
+ use="encoded"
694
+ namespace="urn:iControl:iCall/PerpetualHandler"
695
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
696
+ </input>
697
+ <output>
698
+ <soap:body
699
+ use="encoded"
700
+ namespace="urn:iControl:iCall/PerpetualHandler"
701
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
702
+ </output>
703
+ </operation>
704
+
705
+ <operation name="set_script">
706
+ <documentation>
707
+ Sets the script for the specified perpetual handlers.
708
+
709
+ This is the name of a Tcl script that will be run when an event
710
+ to which this handler subscribes fires.
711
+
712
+ </documentation>
713
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
714
+ <input>
715
+ <soap:body
716
+ use="encoded"
717
+ namespace="urn:iControl:iCall/PerpetualHandler"
718
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
719
+ </input>
720
+ <output>
721
+ <soap:body
722
+ use="encoded"
723
+ namespace="urn:iControl:iCall/PerpetualHandler"
724
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
725
+ </output>
726
+ </operation>
727
+
728
+ <operation name="get_script">
729
+ <documentation>
730
+ Gets the scripts for the specified perpetual handlers.
731
+
732
+ </documentation>
733
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
734
+ <input>
735
+ <soap:body
736
+ use="encoded"
737
+ namespace="urn:iControl:iCall/PerpetualHandler"
738
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
739
+ </input>
740
+ <output>
741
+ <soap:body
742
+ use="encoded"
743
+ namespace="urn:iControl:iCall/PerpetualHandler"
744
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
745
+ </output>
746
+ </operation>
747
+
748
+ <operation name="get_subscription">
749
+ <documentation>
750
+ Gets a list of subscriptions.
751
+
752
+ </documentation>
753
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
754
+ <input>
755
+ <soap:body
756
+ use="encoded"
757
+ namespace="urn:iControl:iCall/PerpetualHandler"
758
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
759
+ </input>
760
+ <output>
761
+ <soap:body
762
+ use="encoded"
763
+ namespace="urn:iControl:iCall/PerpetualHandler"
764
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
765
+ </output>
766
+ </operation>
767
+
768
+ <operation name="add_subscription">
769
+ <documentation>
770
+ Add new subscriptions to perpetual handlers.
771
+
772
+ </documentation>
773
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
774
+ <input>
775
+ <soap:body
776
+ use="encoded"
777
+ namespace="urn:iControl:iCall/PerpetualHandler"
778
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
779
+ </input>
780
+ <output>
781
+ <soap:body
782
+ use="encoded"
783
+ namespace="urn:iControl:iCall/PerpetualHandler"
784
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
785
+ </output>
786
+ </operation>
787
+
788
+ <operation name="remove_subscription">
789
+ <documentation>
790
+ Remove subscriptions from perpetual handlers.
791
+
792
+ </documentation>
793
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
794
+ <input>
795
+ <soap:body
796
+ use="encoded"
797
+ namespace="urn:iControl:iCall/PerpetualHandler"
798
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
799
+ </input>
800
+ <output>
801
+ <soap:body
802
+ use="encoded"
803
+ namespace="urn:iControl:iCall/PerpetualHandler"
804
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
805
+ </output>
806
+ </operation>
807
+
808
+ <operation name="remove_all_subscriptions">
809
+ <documentation>
810
+ Remove all subscriptions from perpetual handlers.
811
+
812
+ </documentation>
813
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
814
+ <input>
815
+ <soap:body
816
+ use="encoded"
817
+ namespace="urn:iControl:iCall/PerpetualHandler"
818
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
819
+ </input>
820
+ <output>
821
+ <soap:body
822
+ use="encoded"
823
+ namespace="urn:iControl:iCall/PerpetualHandler"
824
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
825
+ </output>
826
+ </operation>
827
+
828
+ <operation name="set_subscription_event">
829
+ <documentation>
830
+ Set the event names for the specified subscriptions.
831
+
832
+ </documentation>
833
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
834
+ <input>
835
+ <soap:body
836
+ use="encoded"
837
+ namespace="urn:iControl:iCall/PerpetualHandler"
838
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
839
+ </input>
840
+ <output>
841
+ <soap:body
842
+ use="encoded"
843
+ namespace="urn:iControl:iCall/PerpetualHandler"
844
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
845
+ </output>
846
+ </operation>
847
+
848
+ <operation name="get_subscription_event">
849
+ <documentation>
850
+ Get the event names from the specified subscriptions.
851
+
852
+ </documentation>
853
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
854
+ <input>
855
+ <soap:body
856
+ use="encoded"
857
+ namespace="urn:iControl:iCall/PerpetualHandler"
858
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
859
+ </input>
860
+ <output>
861
+ <soap:body
862
+ use="encoded"
863
+ namespace="urn:iControl:iCall/PerpetualHandler"
864
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
865
+ </output>
866
+ </operation>
867
+
868
+ <operation name="get_filter">
869
+ <documentation>
870
+ Gets a list of filter names for the specified subscriptions.
871
+
872
+ </documentation>
873
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
874
+ <input>
875
+ <soap:body
876
+ use="encoded"
877
+ namespace="urn:iControl:iCall/PerpetualHandler"
878
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
879
+ </input>
880
+ <output>
881
+ <soap:body
882
+ use="encoded"
883
+ namespace="urn:iControl:iCall/PerpetualHandler"
884
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
885
+ </output>
886
+ </operation>
887
+
888
+ <operation name="add_filter">
889
+ <documentation>
890
+ Add the specified filters to the specified subscriptions.
891
+
892
+ The initial match algorithms for these filters will all be
893
+ MATCH_ALGORITHM_EXACT.
894
+
895
+ </documentation>
896
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
897
+ <input>
898
+ <soap:body
899
+ use="encoded"
900
+ namespace="urn:iControl:iCall/PerpetualHandler"
901
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
902
+ </input>
903
+ <output>
904
+ <soap:body
905
+ use="encoded"
906
+ namespace="urn:iControl:iCall/PerpetualHandler"
907
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
908
+ </output>
909
+ </operation>
910
+
911
+ <operation name="remove_filter">
912
+ <documentation>
913
+ Remove filters from the given subscriptions.
914
+
915
+ </documentation>
916
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
917
+ <input>
918
+ <soap:body
919
+ use="encoded"
920
+ namespace="urn:iControl:iCall/PerpetualHandler"
921
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
922
+ </input>
923
+ <output>
924
+ <soap:body
925
+ use="encoded"
926
+ namespace="urn:iControl:iCall/PerpetualHandler"
927
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
928
+ </output>
929
+ </operation>
930
+
931
+ <operation name="remove_all_filters">
932
+ <documentation>
933
+ Remove all filters from the given subscriptions.
934
+
935
+ </documentation>
936
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
937
+ <input>
938
+ <soap:body
939
+ use="encoded"
940
+ namespace="urn:iControl:iCall/PerpetualHandler"
941
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
942
+ </input>
943
+ <output>
944
+ <soap:body
945
+ use="encoded"
946
+ namespace="urn:iControl:iCall/PerpetualHandler"
947
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
948
+ </output>
949
+ </operation>
950
+
951
+ <operation name="set_filter_value">
952
+ <documentation>
953
+ Set the values for the specified filters.
954
+
955
+ </documentation>
956
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
957
+ <input>
958
+ <soap:body
959
+ use="encoded"
960
+ namespace="urn:iControl:iCall/PerpetualHandler"
961
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
962
+ </input>
963
+ <output>
964
+ <soap:body
965
+ use="encoded"
966
+ namespace="urn:iControl:iCall/PerpetualHandler"
967
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
968
+ </output>
969
+ </operation>
970
+
971
+ <operation name="get_filter_value">
972
+ <documentation>
973
+ Get the values for the specified filters.
974
+
975
+ </documentation>
976
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
977
+ <input>
978
+ <soap:body
979
+ use="encoded"
980
+ namespace="urn:iControl:iCall/PerpetualHandler"
981
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
982
+ </input>
983
+ <output>
984
+ <soap:body
985
+ use="encoded"
986
+ namespace="urn:iControl:iCall/PerpetualHandler"
987
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
988
+ </output>
989
+ </operation>
990
+
991
+ <operation name="set_filter_match_algorithm">
992
+ <documentation>
993
+ Set the match algorithms for the specified filters.
994
+
995
+ </documentation>
996
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
997
+ <input>
998
+ <soap:body
999
+ use="encoded"
1000
+ namespace="urn:iControl:iCall/PerpetualHandler"
1001
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1002
+ </input>
1003
+ <output>
1004
+ <soap:body
1005
+ use="encoded"
1006
+ namespace="urn:iControl:iCall/PerpetualHandler"
1007
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1008
+ </output>
1009
+ </operation>
1010
+
1011
+ <operation name="get_filter_match_algorithm">
1012
+ <documentation>
1013
+ Get the match algorithms for the specified filters.
1014
+
1015
+ </documentation>
1016
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
1017
+ <input>
1018
+ <soap:body
1019
+ use="encoded"
1020
+ namespace="urn:iControl:iCall/PerpetualHandler"
1021
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1022
+ </input>
1023
+ <output>
1024
+ <soap:body
1025
+ use="encoded"
1026
+ namespace="urn:iControl:iCall/PerpetualHandler"
1027
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1028
+ </output>
1029
+ </operation>
1030
+
1031
+ <operation name="get_version">
1032
+ <documentation>
1033
+ Gets the version information for this interface.
1034
+
1035
+ </documentation>
1036
+ <soap:operation soapAction="urn:iControl:iCall/PerpetualHandler"/>
1037
+ <input>
1038
+ <soap:body
1039
+ use="encoded"
1040
+ namespace="urn:iControl:iCall/PerpetualHandler"
1041
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1042
+ </input>
1043
+ <output>
1044
+ <soap:body
1045
+ use="encoded"
1046
+ namespace="urn:iControl:iCall/PerpetualHandler"
1047
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1048
+ </output>
1049
+ </operation>
1050
+ </binding>
1051
+
1052
+ <!-- service -->
1053
+
1054
+ <service name="iCall.PerpetualHandler">
1055
+ <documentation>
1056
+ The PerpetualHandler interface allows you to create or delete
1057
+ perpetual handlers.
1058
+
1059
+ These handlers contain a set of objects called subscriptions; a
1060
+ subscription registers interest in an event of a certain name. Each
1061
+ subscription also may optionally include a list of filters to further
1062
+ reduce the set of events that come in. For example, if a subscription
1063
+ exists to an event indicating that a pool member goes down, then the
1064
+ filters might be set up to restrict interest to pool members in a
1065
+ certain subnet.
1066
+
1067
+ When a perpetual handler is created a Tcl script is started. It will
1068
+ receive and be able to handle any events that match at least one of
1069
+ the handler's subscriptions.
1070
+
1071
+ Perpetual handlers have an advantage over triggered handlers (see the
1072
+ TriggeredHandler interface) in that they can save state. However,
1073
+ more than one event may be handled in parallel by a triggered handler
1074
+ at the same time.
1075
+
1076
+ </documentation>
1077
+ <port name="iCall.PerpetualHandlerPort" binding="tns:iCall.PerpetualHandlerBinding">
1078
+ <soap:address location="https://url_to_service"/>
1079
+ </port>
1080
+ </service>
1081
+ </definitions>