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,157 @@
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="WebAccelerator.ProxyMessage"
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:simpleType name="Common.OctetSequence">
25
+ <xsd:restriction base="xsd:base64Binary"/>
26
+ </xsd:simpleType>
27
+ </xsd:schema>
28
+ </types>
29
+
30
+ <!-- message -->
31
+
32
+ <message name="WebAccelerator.ProxyMessage.invalidate_contentRequest">
33
+ <part name="invalidation_message" type="tns:Common.OctetSequence"/>
34
+ </message>
35
+ <message name="WebAccelerator.ProxyMessage.invalidate_contentResponse">
36
+ </message>
37
+
38
+ <message name="WebAccelerator.ProxyMessage.esi_invalidate_contentRequest">
39
+ <part name="invalidation_message" type="tns:Common.OctetSequence"/>
40
+ </message>
41
+ <message name="WebAccelerator.ProxyMessage.esi_invalidate_contentResponse">
42
+ </message>
43
+
44
+ <message name="WebAccelerator.ProxyMessage.get_versionRequest">
45
+ </message>
46
+ <message name="WebAccelerator.ProxyMessage.get_versionResponse">
47
+ <part name="return" type="xsd:string"/>
48
+ </message>
49
+
50
+ <!-- portType -->
51
+
52
+ <portType name="WebAccelerator.ProxyMessagePortType">
53
+ <operation name="invalidate_content">
54
+ <documentation>
55
+ Invalidates the content on the peer pvac after receiving a trigger in a HTTP request.
56
+
57
+ </documentation>
58
+ <input message="tns:WebAccelerator.ProxyMessage.invalidate_contentRequest"/>
59
+ <output message="tns:WebAccelerator.ProxyMessage.invalidate_contentResponse"/>
60
+ </operation>
61
+ <operation name="esi_invalidate_content">
62
+ <documentation>
63
+ Invalidates the WA content after receiving an ESI Invaidation.
64
+
65
+ </documentation>
66
+ <input message="tns:WebAccelerator.ProxyMessage.esi_invalidate_contentRequest"/>
67
+ <output message="tns:WebAccelerator.ProxyMessage.esi_invalidate_contentResponse"/>
68
+ </operation>
69
+ <operation name="get_version">
70
+ <documentation>
71
+ Gets the version information for this interface.
72
+
73
+ </documentation>
74
+ <input message="tns:WebAccelerator.ProxyMessage.get_versionRequest"/>
75
+ <output message="tns:WebAccelerator.ProxyMessage.get_versionResponse"/>
76
+ </operation>
77
+ </portType>
78
+
79
+ <!-- binding -->
80
+
81
+ <binding name="WebAccelerator.ProxyMessageBinding" type="tns:WebAccelerator.ProxyMessagePortType">
82
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
83
+ <operation name="invalidate_content">
84
+ <documentation>
85
+ Invalidates the content on the peer pvac after receiving a trigger in a HTTP request.
86
+
87
+ </documentation>
88
+ <soap:operation soapAction="urn:iControl:WebAccelerator/ProxyMessage"/>
89
+ <input>
90
+ <soap:body
91
+ use="encoded"
92
+ namespace="urn:iControl:WebAccelerator/ProxyMessage"
93
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
94
+ </input>
95
+ <output>
96
+ <soap:body
97
+ use="encoded"
98
+ namespace="urn:iControl:WebAccelerator/ProxyMessage"
99
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
100
+ </output>
101
+ </operation>
102
+
103
+ <operation name="esi_invalidate_content">
104
+ <documentation>
105
+ Invalidates the WA content after receiving an ESI Invaidation.
106
+
107
+ </documentation>
108
+ <soap:operation soapAction="urn:iControl:WebAccelerator/ProxyMessage"/>
109
+ <input>
110
+ <soap:body
111
+ use="encoded"
112
+ namespace="urn:iControl:WebAccelerator/ProxyMessage"
113
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
114
+ </input>
115
+ <output>
116
+ <soap:body
117
+ use="encoded"
118
+ namespace="urn:iControl:WebAccelerator/ProxyMessage"
119
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
120
+ </output>
121
+ </operation>
122
+
123
+ <operation name="get_version">
124
+ <documentation>
125
+ Gets the version information for this interface.
126
+
127
+ </documentation>
128
+ <soap:operation soapAction="urn:iControl:WebAccelerator/ProxyMessage"/>
129
+ <input>
130
+ <soap:body
131
+ use="encoded"
132
+ namespace="urn:iControl:WebAccelerator/ProxyMessage"
133
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
134
+ </input>
135
+ <output>
136
+ <soap:body
137
+ use="encoded"
138
+ namespace="urn:iControl:WebAccelerator/ProxyMessage"
139
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
140
+ </output>
141
+ </operation>
142
+ </binding>
143
+
144
+ <!-- service -->
145
+
146
+ <service name="WebAccelerator.ProxyMessage">
147
+ <documentation>
148
+ The ProxyMessage interface enables you to send Invalidations to the WAM on the other Active BIG-IP to invalidate content.
149
+
150
+ This interface does not support transactions.
151
+
152
+ </documentation>
153
+ <port name="WebAccelerator.ProxyMessagePort" binding="tns:WebAccelerator.ProxyMessageBinding">
154
+ <soap:address location="https://url_to_service"/>
155
+ </port>
156
+ </service>
157
+ </definitions>
@@ -0,0 +1,751 @@
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.PeriodicHandler"
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.TimeStampSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.TimeStamp[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:complexType name="Common.TimeStamp">
32
+ <xsd:sequence>
33
+ <xsd:element name="year" type="xsd:long"/>
34
+ <xsd:element name="month" type="xsd:long"/>
35
+ <xsd:element name="day" type="xsd:long"/>
36
+ <xsd:element name="hour" type="xsd:long"/>
37
+ <xsd:element name="minute" type="xsd:long"/>
38
+ <xsd:element name="second" type="xsd:long"/>
39
+ </xsd:sequence>
40
+ </xsd:complexType>
41
+ <xsd:complexType name="iCall.PeriodicHandlerExpirySequence">
42
+ <xsd:complexContent>
43
+ <xsd:restriction base='SOAP-ENC:Array'>
44
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:iCall.PeriodicHandlerExpiry[]'/>
45
+ </xsd:restriction>
46
+ </xsd:complexContent>
47
+ </xsd:complexType>
48
+ <xsd:complexType name="Common.StringSequence">
49
+ <xsd:complexContent>
50
+ <xsd:restriction base='SOAP-ENC:Array'>
51
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
52
+ </xsd:restriction>
53
+ </xsd:complexContent>
54
+ </xsd:complexType>
55
+ <xsd:simpleType name="iCall.GeneralHandlerState">
56
+ <xsd:restriction base="xsd:string">
57
+ <xsd:enumeration value="GENERAL_HANDLER_STATE_UNKNOWN">
58
+ <xsd:annotation>
59
+ <xsd:documentation>GENERAL_HANDLER_STATE_UNKNOWN</xsd:documentation>
60
+ </xsd:annotation>
61
+ </xsd:enumeration>
62
+ <xsd:enumeration value="GENERAL_HANDLER_STATE_ACTIVE">
63
+ <xsd:annotation>
64
+ <xsd:documentation>GENERAL_HANDLER_STATE_ACTIVE</xsd:documentation>
65
+ </xsd:annotation>
66
+ </xsd:enumeration>
67
+ <xsd:enumeration value="GENERAL_HANDLER_STATE_INACTIVE">
68
+ <xsd:annotation>
69
+ <xsd:documentation>GENERAL_HANDLER_STATE_INACTIVE</xsd:documentation>
70
+ </xsd:annotation>
71
+ </xsd:enumeration>
72
+ </xsd:restriction>
73
+ </xsd:simpleType>
74
+ <xsd:complexType name="Common.ULongSequence">
75
+ <xsd:complexContent>
76
+ <xsd:restriction base='SOAP-ENC:Array'>
77
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
78
+ </xsd:restriction>
79
+ </xsd:complexContent>
80
+ </xsd:complexType>
81
+ <xsd:complexType name="iCall.PeriodicHandlerExpiry">
82
+ <xsd:sequence>
83
+ <xsd:element name="expires" type="xsd:boolean"/>
84
+ <xsd:element name="expiry_time" type="tns:Common.TimeStamp"/>
85
+ </xsd:sequence>
86
+ </xsd:complexType>
87
+ <xsd:complexType name="iCall.GeneralHandlerStateSequence">
88
+ <xsd:complexContent>
89
+ <xsd:restriction base='SOAP-ENC:Array'>
90
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:iCall.GeneralHandlerState[]'/>
91
+ </xsd:restriction>
92
+ </xsd:complexContent>
93
+ </xsd:complexType>
94
+ </xsd:schema>
95
+ </types>
96
+
97
+ <!-- message -->
98
+
99
+ <message name="iCall.PeriodicHandler.get_listRequest">
100
+ </message>
101
+ <message name="iCall.PeriodicHandler.get_listResponse">
102
+ <part name="return" type="tns:Common.StringSequence"/>
103
+ </message>
104
+
105
+ <message name="iCall.PeriodicHandler.createRequest">
106
+ <part name="handlers" type="tns:Common.StringSequence"/>
107
+ <part name="scripts" type="tns:Common.StringSequence"/>
108
+ <part name="intervals" type="tns:Common.ULongSequence"/>
109
+ </message>
110
+ <message name="iCall.PeriodicHandler.createResponse">
111
+ </message>
112
+
113
+ <message name="iCall.PeriodicHandler.delete_handlerRequest">
114
+ <part name="handlers" type="tns:Common.StringSequence"/>
115
+ </message>
116
+ <message name="iCall.PeriodicHandler.delete_handlerResponse">
117
+ </message>
118
+
119
+ <message name="iCall.PeriodicHandler.delete_all_handlersRequest">
120
+ </message>
121
+ <message name="iCall.PeriodicHandler.delete_all_handlersResponse">
122
+ </message>
123
+
124
+ <message name="iCall.PeriodicHandler.set_descriptionRequest">
125
+ <part name="handlers" type="tns:Common.StringSequence"/>
126
+ <part name="descriptions" type="tns:Common.StringSequence"/>
127
+ </message>
128
+ <message name="iCall.PeriodicHandler.set_descriptionResponse">
129
+ </message>
130
+
131
+ <message name="iCall.PeriodicHandler.get_descriptionRequest">
132
+ <part name="handlers" type="tns:Common.StringSequence"/>
133
+ </message>
134
+ <message name="iCall.PeriodicHandler.get_descriptionResponse">
135
+ <part name="return" type="tns:Common.StringSequence"/>
136
+ </message>
137
+
138
+ <message name="iCall.PeriodicHandler.set_first_occurrenceRequest">
139
+ <part name="handlers" type="tns:Common.StringSequence"/>
140
+ <part name="occurrences" type="tns:Common.TimeStampSequence"/>
141
+ </message>
142
+ <message name="iCall.PeriodicHandler.set_first_occurrenceResponse">
143
+ </message>
144
+
145
+ <message name="iCall.PeriodicHandler.get_first_occurrenceRequest">
146
+ <part name="handlers" type="tns:Common.StringSequence"/>
147
+ </message>
148
+ <message name="iCall.PeriodicHandler.get_first_occurrenceResponse">
149
+ <part name="return" type="tns:Common.TimeStampSequence"/>
150
+ </message>
151
+
152
+ <message name="iCall.PeriodicHandler.set_handler_stateRequest">
153
+ <part name="handlers" type="tns:Common.StringSequence"/>
154
+ <part name="states" type="tns:iCall.GeneralHandlerStateSequence"/>
155
+ </message>
156
+ <message name="iCall.PeriodicHandler.set_handler_stateResponse">
157
+ </message>
158
+
159
+ <message name="iCall.PeriodicHandler.get_handler_stateRequest">
160
+ <part name="handlers" type="tns:Common.StringSequence"/>
161
+ </message>
162
+ <message name="iCall.PeriodicHandler.get_handler_stateResponse">
163
+ <part name="return" type="tns:iCall.GeneralHandlerStateSequence"/>
164
+ </message>
165
+
166
+ <message name="iCall.PeriodicHandler.set_intervalRequest">
167
+ <part name="handlers" type="tns:Common.StringSequence"/>
168
+ <part name="intervals" type="tns:Common.ULongSequence"/>
169
+ </message>
170
+ <message name="iCall.PeriodicHandler.set_intervalResponse">
171
+ </message>
172
+
173
+ <message name="iCall.PeriodicHandler.get_intervalRequest">
174
+ <part name="handlers" type="tns:Common.StringSequence"/>
175
+ </message>
176
+ <message name="iCall.PeriodicHandler.get_intervalResponse">
177
+ <part name="return" type="tns:Common.ULongSequence"/>
178
+ </message>
179
+
180
+ <message name="iCall.PeriodicHandler.set_last_occurrenceRequest">
181
+ <part name="handlers" type="tns:Common.StringSequence"/>
182
+ <part name="occurrences" type="tns:iCall.PeriodicHandlerExpirySequence"/>
183
+ </message>
184
+ <message name="iCall.PeriodicHandler.set_last_occurrenceResponse">
185
+ </message>
186
+
187
+ <message name="iCall.PeriodicHandler.get_last_occurrenceRequest">
188
+ <part name="handlers" type="tns:Common.StringSequence"/>
189
+ </message>
190
+ <message name="iCall.PeriodicHandler.get_last_occurrenceResponse">
191
+ <part name="return" type="tns:iCall.PeriodicHandlerExpirySequence"/>
192
+ </message>
193
+
194
+ <message name="iCall.PeriodicHandler.set_scriptRequest">
195
+ <part name="handlers" type="tns:Common.StringSequence"/>
196
+ <part name="scripts" type="tns:Common.StringSequence"/>
197
+ </message>
198
+ <message name="iCall.PeriodicHandler.set_scriptResponse">
199
+ </message>
200
+
201
+ <message name="iCall.PeriodicHandler.get_scriptRequest">
202
+ <part name="handlers" type="tns:Common.StringSequence"/>
203
+ </message>
204
+ <message name="iCall.PeriodicHandler.get_scriptResponse">
205
+ <part name="return" type="tns:Common.StringSequence"/>
206
+ </message>
207
+
208
+ <message name="iCall.PeriodicHandler.get_versionRequest">
209
+ </message>
210
+ <message name="iCall.PeriodicHandler.get_versionResponse">
211
+ <part name="return" type="xsd:string"/>
212
+ </message>
213
+
214
+ <!-- portType -->
215
+
216
+ <portType name="iCall.PeriodicHandlerPortType">
217
+ <operation name="get_list">
218
+ <documentation>
219
+ Gets the list of periodic handlers.
220
+
221
+ </documentation>
222
+ <input message="tns:iCall.PeriodicHandler.get_listRequest"/>
223
+ <output message="tns:iCall.PeriodicHandler.get_listResponse"/>
224
+ </operation>
225
+ <operation name="create">
226
+ <documentation>
227
+ Creates new periodic handlers.
228
+
229
+ </documentation>
230
+ <input message="tns:iCall.PeriodicHandler.createRequest"/>
231
+ <output message="tns:iCall.PeriodicHandler.createResponse"/>
232
+ </operation>
233
+ <operation name="delete_handler">
234
+ <documentation>
235
+ Deletes the specified periodic handlers.
236
+
237
+ </documentation>
238
+ <input message="tns:iCall.PeriodicHandler.delete_handlerRequest"/>
239
+ <output message="tns:iCall.PeriodicHandler.delete_handlerResponse"/>
240
+ </operation>
241
+ <operation name="delete_all_handlers">
242
+ <documentation>
243
+ Deletes all user-defined (non-root) periodic handlers.
244
+
245
+ </documentation>
246
+ <input message="tns:iCall.PeriodicHandler.delete_all_handlersRequest"/>
247
+ <output message="tns:iCall.PeriodicHandler.delete_all_handlersResponse"/>
248
+ </operation>
249
+ <operation name="set_description">
250
+ <documentation>
251
+ Sets the description for the specified periodic handlers.
252
+
253
+ This is an arbitrary field which can be used for any purpose.
254
+
255
+ </documentation>
256
+ <input message="tns:iCall.PeriodicHandler.set_descriptionRequest"/>
257
+ <output message="tns:iCall.PeriodicHandler.set_descriptionResponse"/>
258
+ </operation>
259
+ <operation name="get_description">
260
+ <documentation>
261
+ Gets the descriptions for the specified periodic handlers.
262
+
263
+ </documentation>
264
+ <input message="tns:iCall.PeriodicHandler.get_descriptionRequest"/>
265
+ <output message="tns:iCall.PeriodicHandler.get_descriptionResponse"/>
266
+ </operation>
267
+ <operation name="set_first_occurrence">
268
+ <documentation>
269
+ Sets the first occurrence for the specified periodic handlers.
270
+
271
+ This field tells the first time at which the handler will start
272
+ its associated script.
273
+
274
+ </documentation>
275
+ <input message="tns:iCall.PeriodicHandler.set_first_occurrenceRequest"/>
276
+ <output message="tns:iCall.PeriodicHandler.set_first_occurrenceResponse"/>
277
+ </operation>
278
+ <operation name="get_first_occurrence">
279
+ <documentation>
280
+ Gets the first occurrences for the specified periodic handlers.
281
+
282
+ </documentation>
283
+ <input message="tns:iCall.PeriodicHandler.get_first_occurrenceRequest"/>
284
+ <output message="tns:iCall.PeriodicHandler.get_first_occurrenceResponse"/>
285
+ </operation>
286
+ <operation name="set_handler_state">
287
+ <documentation>
288
+ Sets the states for the specified periodic handlers.
289
+
290
+ This field describes whether the handler is running and accepting
291
+ events.
292
+
293
+ </documentation>
294
+ <input message="tns:iCall.PeriodicHandler.set_handler_stateRequest"/>
295
+ <output message="tns:iCall.PeriodicHandler.set_handler_stateResponse"/>
296
+ </operation>
297
+ <operation name="get_handler_state">
298
+ <documentation>
299
+ Gets the states for the specified periodic handlers.
300
+
301
+ </documentation>
302
+ <input message="tns:iCall.PeriodicHandler.get_handler_stateRequest"/>
303
+ <output message="tns:iCall.PeriodicHandler.get_handler_stateResponse"/>
304
+ </operation>
305
+ <operation name="set_interval">
306
+ <documentation>
307
+ Sets the interval for the specified periodic handlers.
308
+
309
+ This field tells the interval, in seconds, at which the handler
310
+ will start its associated script.
311
+
312
+ </documentation>
313
+ <input message="tns:iCall.PeriodicHandler.set_intervalRequest"/>
314
+ <output message="tns:iCall.PeriodicHandler.set_intervalResponse"/>
315
+ </operation>
316
+ <operation name="get_interval">
317
+ <documentation>
318
+ Gets the interval for the specified periodic handlers.
319
+
320
+ </documentation>
321
+ <input message="tns:iCall.PeriodicHandler.get_intervalRequest"/>
322
+ <output message="tns:iCall.PeriodicHandler.get_intervalResponse"/>
323
+ </operation>
324
+ <operation name="set_last_occurrence">
325
+ <documentation>
326
+ Sets the last occurrence for the specified periodic handlers.
327
+
328
+ This field tells the last time at which the handler will start
329
+ its associated script.
330
+
331
+ </documentation>
332
+ <input message="tns:iCall.PeriodicHandler.set_last_occurrenceRequest"/>
333
+ <output message="tns:iCall.PeriodicHandler.set_last_occurrenceResponse"/>
334
+ </operation>
335
+ <operation name="get_last_occurrence">
336
+ <documentation>
337
+ Gets the last occurrence for the specified periodic handlers.
338
+
339
+ </documentation>
340
+ <input message="tns:iCall.PeriodicHandler.get_last_occurrenceRequest"/>
341
+ <output message="tns:iCall.PeriodicHandler.get_last_occurrenceResponse"/>
342
+ </operation>
343
+ <operation name="set_script">
344
+ <documentation>
345
+ Sets the script for the specified periodic handlers.
346
+
347
+ This is the name of a Tcl script that will be run on the handler's
348
+ specified interval.
349
+
350
+ </documentation>
351
+ <input message="tns:iCall.PeriodicHandler.set_scriptRequest"/>
352
+ <output message="tns:iCall.PeriodicHandler.set_scriptResponse"/>
353
+ </operation>
354
+ <operation name="get_script">
355
+ <documentation>
356
+ Gets the scripts for the specified periodic handlers.
357
+
358
+ </documentation>
359
+ <input message="tns:iCall.PeriodicHandler.get_scriptRequest"/>
360
+ <output message="tns:iCall.PeriodicHandler.get_scriptResponse"/>
361
+ </operation>
362
+ <operation name="get_version">
363
+ <documentation>
364
+ Gets the version information for this interface.
365
+
366
+ </documentation>
367
+ <input message="tns:iCall.PeriodicHandler.get_versionRequest"/>
368
+ <output message="tns:iCall.PeriodicHandler.get_versionResponse"/>
369
+ </operation>
370
+ </portType>
371
+
372
+ <!-- binding -->
373
+
374
+ <binding name="iCall.PeriodicHandlerBinding" type="tns:iCall.PeriodicHandlerPortType">
375
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
376
+ <operation name="get_list">
377
+ <documentation>
378
+ Gets the list of periodic handlers.
379
+
380
+ </documentation>
381
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
382
+ <input>
383
+ <soap:body
384
+ use="encoded"
385
+ namespace="urn:iControl:iCall/PeriodicHandler"
386
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
387
+ </input>
388
+ <output>
389
+ <soap:body
390
+ use="encoded"
391
+ namespace="urn:iControl:iCall/PeriodicHandler"
392
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
393
+ </output>
394
+ </operation>
395
+
396
+ <operation name="create">
397
+ <documentation>
398
+ Creates new periodic handlers.
399
+
400
+ </documentation>
401
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
402
+ <input>
403
+ <soap:body
404
+ use="encoded"
405
+ namespace="urn:iControl:iCall/PeriodicHandler"
406
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
407
+ </input>
408
+ <output>
409
+ <soap:body
410
+ use="encoded"
411
+ namespace="urn:iControl:iCall/PeriodicHandler"
412
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
413
+ </output>
414
+ </operation>
415
+
416
+ <operation name="delete_handler">
417
+ <documentation>
418
+ Deletes the specified periodic handlers.
419
+
420
+ </documentation>
421
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
422
+ <input>
423
+ <soap:body
424
+ use="encoded"
425
+ namespace="urn:iControl:iCall/PeriodicHandler"
426
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
427
+ </input>
428
+ <output>
429
+ <soap:body
430
+ use="encoded"
431
+ namespace="urn:iControl:iCall/PeriodicHandler"
432
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
433
+ </output>
434
+ </operation>
435
+
436
+ <operation name="delete_all_handlers">
437
+ <documentation>
438
+ Deletes all user-defined (non-root) periodic handlers.
439
+
440
+ </documentation>
441
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
442
+ <input>
443
+ <soap:body
444
+ use="encoded"
445
+ namespace="urn:iControl:iCall/PeriodicHandler"
446
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
447
+ </input>
448
+ <output>
449
+ <soap:body
450
+ use="encoded"
451
+ namespace="urn:iControl:iCall/PeriodicHandler"
452
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
453
+ </output>
454
+ </operation>
455
+
456
+ <operation name="set_description">
457
+ <documentation>
458
+ Sets the description for the specified periodic handlers.
459
+
460
+ This is an arbitrary field which can be used for any purpose.
461
+
462
+ </documentation>
463
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
464
+ <input>
465
+ <soap:body
466
+ use="encoded"
467
+ namespace="urn:iControl:iCall/PeriodicHandler"
468
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
469
+ </input>
470
+ <output>
471
+ <soap:body
472
+ use="encoded"
473
+ namespace="urn:iControl:iCall/PeriodicHandler"
474
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
475
+ </output>
476
+ </operation>
477
+
478
+ <operation name="get_description">
479
+ <documentation>
480
+ Gets the descriptions for the specified periodic handlers.
481
+
482
+ </documentation>
483
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
484
+ <input>
485
+ <soap:body
486
+ use="encoded"
487
+ namespace="urn:iControl:iCall/PeriodicHandler"
488
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
489
+ </input>
490
+ <output>
491
+ <soap:body
492
+ use="encoded"
493
+ namespace="urn:iControl:iCall/PeriodicHandler"
494
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
495
+ </output>
496
+ </operation>
497
+
498
+ <operation name="set_first_occurrence">
499
+ <documentation>
500
+ Sets the first occurrence for the specified periodic handlers.
501
+
502
+ This field tells the first time at which the handler will start
503
+ its associated script.
504
+
505
+ </documentation>
506
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
507
+ <input>
508
+ <soap:body
509
+ use="encoded"
510
+ namespace="urn:iControl:iCall/PeriodicHandler"
511
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
512
+ </input>
513
+ <output>
514
+ <soap:body
515
+ use="encoded"
516
+ namespace="urn:iControl:iCall/PeriodicHandler"
517
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
518
+ </output>
519
+ </operation>
520
+
521
+ <operation name="get_first_occurrence">
522
+ <documentation>
523
+ Gets the first occurrences for the specified periodic handlers.
524
+
525
+ </documentation>
526
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
527
+ <input>
528
+ <soap:body
529
+ use="encoded"
530
+ namespace="urn:iControl:iCall/PeriodicHandler"
531
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
532
+ </input>
533
+ <output>
534
+ <soap:body
535
+ use="encoded"
536
+ namespace="urn:iControl:iCall/PeriodicHandler"
537
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
538
+ </output>
539
+ </operation>
540
+
541
+ <operation name="set_handler_state">
542
+ <documentation>
543
+ Sets the states for the specified periodic handlers.
544
+
545
+ This field describes whether the handler is running and accepting
546
+ events.
547
+
548
+ </documentation>
549
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
550
+ <input>
551
+ <soap:body
552
+ use="encoded"
553
+ namespace="urn:iControl:iCall/PeriodicHandler"
554
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
555
+ </input>
556
+ <output>
557
+ <soap:body
558
+ use="encoded"
559
+ namespace="urn:iControl:iCall/PeriodicHandler"
560
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
561
+ </output>
562
+ </operation>
563
+
564
+ <operation name="get_handler_state">
565
+ <documentation>
566
+ Gets the states for the specified periodic handlers.
567
+
568
+ </documentation>
569
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
570
+ <input>
571
+ <soap:body
572
+ use="encoded"
573
+ namespace="urn:iControl:iCall/PeriodicHandler"
574
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
575
+ </input>
576
+ <output>
577
+ <soap:body
578
+ use="encoded"
579
+ namespace="urn:iControl:iCall/PeriodicHandler"
580
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
581
+ </output>
582
+ </operation>
583
+
584
+ <operation name="set_interval">
585
+ <documentation>
586
+ Sets the interval for the specified periodic handlers.
587
+
588
+ This field tells the interval, in seconds, at which the handler
589
+ will start its associated script.
590
+
591
+ </documentation>
592
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
593
+ <input>
594
+ <soap:body
595
+ use="encoded"
596
+ namespace="urn:iControl:iCall/PeriodicHandler"
597
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
598
+ </input>
599
+ <output>
600
+ <soap:body
601
+ use="encoded"
602
+ namespace="urn:iControl:iCall/PeriodicHandler"
603
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
604
+ </output>
605
+ </operation>
606
+
607
+ <operation name="get_interval">
608
+ <documentation>
609
+ Gets the interval for the specified periodic handlers.
610
+
611
+ </documentation>
612
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
613
+ <input>
614
+ <soap:body
615
+ use="encoded"
616
+ namespace="urn:iControl:iCall/PeriodicHandler"
617
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
618
+ </input>
619
+ <output>
620
+ <soap:body
621
+ use="encoded"
622
+ namespace="urn:iControl:iCall/PeriodicHandler"
623
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
624
+ </output>
625
+ </operation>
626
+
627
+ <operation name="set_last_occurrence">
628
+ <documentation>
629
+ Sets the last occurrence for the specified periodic handlers.
630
+
631
+ This field tells the last time at which the handler will start
632
+ its associated script.
633
+
634
+ </documentation>
635
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
636
+ <input>
637
+ <soap:body
638
+ use="encoded"
639
+ namespace="urn:iControl:iCall/PeriodicHandler"
640
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
641
+ </input>
642
+ <output>
643
+ <soap:body
644
+ use="encoded"
645
+ namespace="urn:iControl:iCall/PeriodicHandler"
646
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
647
+ </output>
648
+ </operation>
649
+
650
+ <operation name="get_last_occurrence">
651
+ <documentation>
652
+ Gets the last occurrence for the specified periodic handlers.
653
+
654
+ </documentation>
655
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
656
+ <input>
657
+ <soap:body
658
+ use="encoded"
659
+ namespace="urn:iControl:iCall/PeriodicHandler"
660
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
661
+ </input>
662
+ <output>
663
+ <soap:body
664
+ use="encoded"
665
+ namespace="urn:iControl:iCall/PeriodicHandler"
666
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
667
+ </output>
668
+ </operation>
669
+
670
+ <operation name="set_script">
671
+ <documentation>
672
+ Sets the script for the specified periodic handlers.
673
+
674
+ This is the name of a Tcl script that will be run on the handler's
675
+ specified interval.
676
+
677
+ </documentation>
678
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
679
+ <input>
680
+ <soap:body
681
+ use="encoded"
682
+ namespace="urn:iControl:iCall/PeriodicHandler"
683
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
684
+ </input>
685
+ <output>
686
+ <soap:body
687
+ use="encoded"
688
+ namespace="urn:iControl:iCall/PeriodicHandler"
689
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
690
+ </output>
691
+ </operation>
692
+
693
+ <operation name="get_script">
694
+ <documentation>
695
+ Gets the scripts for the specified periodic handlers.
696
+
697
+ </documentation>
698
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
699
+ <input>
700
+ <soap:body
701
+ use="encoded"
702
+ namespace="urn:iControl:iCall/PeriodicHandler"
703
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
704
+ </input>
705
+ <output>
706
+ <soap:body
707
+ use="encoded"
708
+ namespace="urn:iControl:iCall/PeriodicHandler"
709
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
710
+ </output>
711
+ </operation>
712
+
713
+ <operation name="get_version">
714
+ <documentation>
715
+ Gets the version information for this interface.
716
+
717
+ </documentation>
718
+ <soap:operation soapAction="urn:iControl:iCall/PeriodicHandler"/>
719
+ <input>
720
+ <soap:body
721
+ use="encoded"
722
+ namespace="urn:iControl:iCall/PeriodicHandler"
723
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
724
+ </input>
725
+ <output>
726
+ <soap:body
727
+ use="encoded"
728
+ namespace="urn:iControl:iCall/PeriodicHandler"
729
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
730
+ </output>
731
+ </operation>
732
+ </binding>
733
+
734
+ <!-- service -->
735
+
736
+ <service name="iCall.PeriodicHandler">
737
+ <documentation>
738
+ The PeriodicHandler interface allows you to create or delete
739
+ periodic handlers.
740
+
741
+ These handlers do not subscribe to events. Rather, they have three
742
+ parameters: a start and end time, and an interval in seconds. The
743
+ script attached to the handler will be run on the interval between
744
+ the start and end times.
745
+
746
+ </documentation>
747
+ <port name="iCall.PeriodicHandlerPort" binding="tns:iCall.PeriodicHandlerBinding">
748
+ <soap:address location="https://url_to_service"/>
749
+ </port>
750
+ </service>
751
+ </definitions>