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