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,542 @@
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="PEM.FormatScript"
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="PEM.FormatScript.get_listRequest">
37
+ </message>
38
+ <message name="PEM.FormatScript.get_listResponse">
39
+ <part name="return" type="tns:Common.StringSequence"/>
40
+ </message>
41
+
42
+ <message name="PEM.FormatScript.createRequest">
43
+ <part name="scripts" type="tns:Common.StringSequence"/>
44
+ </message>
45
+ <message name="PEM.FormatScript.createResponse">
46
+ </message>
47
+
48
+ <message name="PEM.FormatScript.delete_format_scriptRequest">
49
+ <part name="scripts" type="tns:Common.StringSequence"/>
50
+ </message>
51
+ <message name="PEM.FormatScript.delete_format_scriptResponse">
52
+ </message>
53
+
54
+ <message name="PEM.FormatScript.delete_all_format_scriptsRequest">
55
+ </message>
56
+ <message name="PEM.FormatScript.delete_all_format_scriptsResponse">
57
+ </message>
58
+
59
+ <message name="PEM.FormatScript.set_definitionRequest">
60
+ <part name="scripts" type="tns:Common.StringSequence"/>
61
+ <part name="definitions" type="tns:Common.StringSequence"/>
62
+ </message>
63
+ <message name="PEM.FormatScript.set_definitionResponse">
64
+ </message>
65
+
66
+ <message name="PEM.FormatScript.get_definitionRequest">
67
+ <part name="scripts" type="tns:Common.StringSequence"/>
68
+ </message>
69
+ <message name="PEM.FormatScript.get_definitionResponse">
70
+ <part name="return" type="tns:Common.StringSequence"/>
71
+ </message>
72
+
73
+ <message name="PEM.FormatScript.set_descriptionRequest">
74
+ <part name="scripts" type="tns:Common.StringSequence"/>
75
+ <part name="descriptions" type="tns:Common.StringSequence"/>
76
+ </message>
77
+ <message name="PEM.FormatScript.set_descriptionResponse">
78
+ </message>
79
+
80
+ <message name="PEM.FormatScript.get_descriptionRequest">
81
+ <part name="scripts" type="tns:Common.StringSequence"/>
82
+ </message>
83
+ <message name="PEM.FormatScript.get_descriptionResponse">
84
+ <part name="return" type="tns:Common.StringSequence"/>
85
+ </message>
86
+
87
+ <message name="PEM.FormatScript.get_versionRequest">
88
+ </message>
89
+ <message name="PEM.FormatScript.get_versionResponse">
90
+ <part name="return" type="xsd:string"/>
91
+ </message>
92
+
93
+ <!-- portType -->
94
+
95
+ <portType name="PEM.FormatScriptPortType">
96
+ <operation name="get_list">
97
+ <documentation>
98
+ Gets a list of all format scripts.
99
+
100
+ </documentation>
101
+ <input message="tns:PEM.FormatScript.get_listRequest"/>
102
+ <output message="tns:PEM.FormatScript.get_listResponse"/>
103
+ </operation>
104
+ <operation name="create">
105
+ <documentation>
106
+ Creates a set of PEM format scripts.
107
+
108
+ </documentation>
109
+ <input message="tns:PEM.FormatScript.createRequest"/>
110
+ <output message="tns:PEM.FormatScript.createResponse"/>
111
+ </operation>
112
+ <operation name="delete_format_script">
113
+ <documentation>
114
+ Deletes the specified format scripts.
115
+
116
+ </documentation>
117
+ <input message="tns:PEM.FormatScript.delete_format_scriptRequest"/>
118
+ <output message="tns:PEM.FormatScript.delete_format_scriptResponse"/>
119
+ </operation>
120
+ <operation name="delete_all_format_scripts">
121
+ <documentation>
122
+ Deletes all user defined format scripts.
123
+
124
+ </documentation>
125
+ <input message="tns:PEM.FormatScript.delete_all_format_scriptsRequest"/>
126
+ <output message="tns:PEM.FormatScript.delete_all_format_scriptsResponse"/>
127
+ </operation>
128
+ <operation name="set_definition">
129
+ <documentation>
130
+ Sets the definitions for the specified format scripts.
131
+ A definition specifies a script using TCL syntax that defines
132
+ a custom format for HSL reporting applied in an enforcement
133
+ policy rule. You can use session-based or flow-based reporting
134
+ in the rule.
135
+ Session-based formats:
136
+ The options are:
137
+ (*) app-id
138
+ Specifies the application id of the session record.
139
+ (*) bytes-in
140
+ Specifies the aggregate incoming bytes of the session.
141
+ (*) bytes-out
142
+ Specifies the aggregate outgoing bytes of the session.
143
+ (*) last-send-sec
144
+ Specifies the value of seconds of the timestamp since
145
+ the previous record was sent.
146
+ (*) last-send-usec
147
+ Specifies the value of microseconds of the timestamp
148
+ since the previous record was sent.
149
+ (*) param-3gpp
150
+ Specifies the the comma-separated string of the value of
151
+ imsi, imeisv, tower-id, and user-name.
152
+ (*) rec-reason
153
+ Specifies the reason for sending report. The values are
154
+ 1: period time, 2: valume threshold,
155
+ 3: subscriber logout, 4: inactivity.
156
+ (*) rec-type
157
+ Specifies the type of the session-based record
158
+ (always 3).
159
+ (*) subs-id
160
+ Specifies the subscriber id.
161
+ (*) subs-id-type
162
+ Specifies the subscriber id type (e164, imsi, nai, or
163
+ private).
164
+ (*) timestamp-sec
165
+ Specifies the seconds value of the timestamp when the
166
+ record was generated. The Unix epoch is
167
+ 1970-01-01T00:00:00Z.
168
+ (*) timestamp-usec
169
+ Specifies the microseconds value of the timestamp
170
+ when the record was generated.
171
+ Flow-based formats:
172
+ The options are:
173
+ (*) app-id
174
+ Specifies the application id of the flow record.
175
+ (*) bytes-in
176
+ Specifies the aggregate incoming bytes of the flow.
177
+ (*) bytes-out
178
+ Specifies the aggregate outgoing bytes of the flow.
179
+ (*) dst-ip
180
+ Specifies the destination ip address of the flow.
181
+ (*) dst-port
182
+ Specifies the destination port of the flow.
183
+ (*) flow-end-time-sec
184
+ Specifies the seconds value of the timestamp when the
185
+ flow ends. The Unix epoch is 1970-01-01T00:00:00Z.
186
+ (*) flow-end-time-usec
187
+ Specifies microseconds value of the timestamp when the
188
+ flow ends.
189
+ (*) flow-start-time-sec
190
+ Specifies the seconds value of the timestamp when
191
+ the flow starts. The Unix epoch is 1970-01-01T00:00:00Z.
192
+ (*) flow-start-time-usec
193
+ Specifies microseconds value of the timestamp when
194
+ the flow starts.
195
+ (*) proto
196
+ Specifies the protocol of the flow.
197
+ (*) rec-type
198
+ Specifies the type of the flow-based record. The value
199
+ is 0: flow init, 1: flow interim, and 2: flow end.
200
+ (*) src-ip
201
+ Specifies the source ip address of the flow.
202
+ (*) src-port
203
+ Specifies the destination port of the flow.
204
+ (*) subs-id
205
+ Specifies the subscriber id.
206
+ (*) subs-id-type
207
+ Specifies the subscriber id type (e164, imsi, nai, or
208
+ private).
209
+ (*) timestamp-sec
210
+ Specifies the seconds value of the timestamp when
211
+ the record was generated. The Unix epoch is
212
+ 1970-01-01T00:00:00Z.
213
+ (*) timestamp-usec
214
+ Specifies the microseconds value of the timestamp when
215
+ the record was generated.
216
+
217
+ </documentation>
218
+ <input message="tns:PEM.FormatScript.set_definitionRequest"/>
219
+ <output message="tns:PEM.FormatScript.set_definitionResponse"/>
220
+ </operation>
221
+ <operation name="get_definition">
222
+ <documentation>
223
+ Gets the definitions for the specified format scripts.
224
+
225
+ </documentation>
226
+ <input message="tns:PEM.FormatScript.get_definitionRequest"/>
227
+ <output message="tns:PEM.FormatScript.get_definitionResponse"/>
228
+ </operation>
229
+ <operation name="set_description">
230
+ <documentation>
231
+ Sets the description for a set of format scripts.
232
+ This is an arbitrary field which can be used for any purpose.
233
+
234
+ </documentation>
235
+ <input message="tns:PEM.FormatScript.set_descriptionRequest"/>
236
+ <output message="tns:PEM.FormatScript.set_descriptionResponse"/>
237
+ </operation>
238
+ <operation name="get_description">
239
+ <documentation>
240
+ Gets the description for a set of format scripts.
241
+
242
+ </documentation>
243
+ <input message="tns:PEM.FormatScript.get_descriptionRequest"/>
244
+ <output message="tns:PEM.FormatScript.get_descriptionResponse"/>
245
+ </operation>
246
+ <operation name="get_version">
247
+ <documentation>
248
+ Gets the version information for this interface.
249
+
250
+ </documentation>
251
+ <input message="tns:PEM.FormatScript.get_versionRequest"/>
252
+ <output message="tns:PEM.FormatScript.get_versionResponse"/>
253
+ </operation>
254
+ </portType>
255
+
256
+ <!-- binding -->
257
+
258
+ <binding name="PEM.FormatScriptBinding" type="tns:PEM.FormatScriptPortType">
259
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
260
+ <operation name="get_list">
261
+ <documentation>
262
+ Gets a list of all format scripts.
263
+
264
+ </documentation>
265
+ <soap:operation soapAction="urn:iControl:PEM/FormatScript"/>
266
+ <input>
267
+ <soap:body
268
+ use="encoded"
269
+ namespace="urn:iControl:PEM/FormatScript"
270
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
271
+ </input>
272
+ <output>
273
+ <soap:body
274
+ use="encoded"
275
+ namespace="urn:iControl:PEM/FormatScript"
276
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
277
+ </output>
278
+ </operation>
279
+
280
+ <operation name="create">
281
+ <documentation>
282
+ Creates a set of PEM format scripts.
283
+
284
+ </documentation>
285
+ <soap:operation soapAction="urn:iControl:PEM/FormatScript"/>
286
+ <input>
287
+ <soap:body
288
+ use="encoded"
289
+ namespace="urn:iControl:PEM/FormatScript"
290
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
291
+ </input>
292
+ <output>
293
+ <soap:body
294
+ use="encoded"
295
+ namespace="urn:iControl:PEM/FormatScript"
296
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
297
+ </output>
298
+ </operation>
299
+
300
+ <operation name="delete_format_script">
301
+ <documentation>
302
+ Deletes the specified format scripts.
303
+
304
+ </documentation>
305
+ <soap:operation soapAction="urn:iControl:PEM/FormatScript"/>
306
+ <input>
307
+ <soap:body
308
+ use="encoded"
309
+ namespace="urn:iControl:PEM/FormatScript"
310
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
311
+ </input>
312
+ <output>
313
+ <soap:body
314
+ use="encoded"
315
+ namespace="urn:iControl:PEM/FormatScript"
316
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
317
+ </output>
318
+ </operation>
319
+
320
+ <operation name="delete_all_format_scripts">
321
+ <documentation>
322
+ Deletes all user defined format scripts.
323
+
324
+ </documentation>
325
+ <soap:operation soapAction="urn:iControl:PEM/FormatScript"/>
326
+ <input>
327
+ <soap:body
328
+ use="encoded"
329
+ namespace="urn:iControl:PEM/FormatScript"
330
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
331
+ </input>
332
+ <output>
333
+ <soap:body
334
+ use="encoded"
335
+ namespace="urn:iControl:PEM/FormatScript"
336
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
337
+ </output>
338
+ </operation>
339
+
340
+ <operation name="set_definition">
341
+ <documentation>
342
+ Sets the definitions for the specified format scripts.
343
+ A definition specifies a script using TCL syntax that defines
344
+ a custom format for HSL reporting applied in an enforcement
345
+ policy rule. You can use session-based or flow-based reporting
346
+ in the rule.
347
+ Session-based formats:
348
+ The options are:
349
+ (*) app-id
350
+ Specifies the application id of the session record.
351
+ (*) bytes-in
352
+ Specifies the aggregate incoming bytes of the session.
353
+ (*) bytes-out
354
+ Specifies the aggregate outgoing bytes of the session.
355
+ (*) last-send-sec
356
+ Specifies the value of seconds of the timestamp since
357
+ the previous record was sent.
358
+ (*) last-send-usec
359
+ Specifies the value of microseconds of the timestamp
360
+ since the previous record was sent.
361
+ (*) param-3gpp
362
+ Specifies the the comma-separated string of the value of
363
+ imsi, imeisv, tower-id, and user-name.
364
+ (*) rec-reason
365
+ Specifies the reason for sending report. The values are
366
+ 1: period time, 2: valume threshold,
367
+ 3: subscriber logout, 4: inactivity.
368
+ (*) rec-type
369
+ Specifies the type of the session-based record
370
+ (always 3).
371
+ (*) subs-id
372
+ Specifies the subscriber id.
373
+ (*) subs-id-type
374
+ Specifies the subscriber id type (e164, imsi, nai, or
375
+ private).
376
+ (*) timestamp-sec
377
+ Specifies the seconds value of the timestamp when the
378
+ record was generated. The Unix epoch is
379
+ 1970-01-01T00:00:00Z.
380
+ (*) timestamp-usec
381
+ Specifies the microseconds value of the timestamp
382
+ when the record was generated.
383
+ Flow-based formats:
384
+ The options are:
385
+ (*) app-id
386
+ Specifies the application id of the flow record.
387
+ (*) bytes-in
388
+ Specifies the aggregate incoming bytes of the flow.
389
+ (*) bytes-out
390
+ Specifies the aggregate outgoing bytes of the flow.
391
+ (*) dst-ip
392
+ Specifies the destination ip address of the flow.
393
+ (*) dst-port
394
+ Specifies the destination port of the flow.
395
+ (*) flow-end-time-sec
396
+ Specifies the seconds value of the timestamp when the
397
+ flow ends. The Unix epoch is 1970-01-01T00:00:00Z.
398
+ (*) flow-end-time-usec
399
+ Specifies microseconds value of the timestamp when the
400
+ flow ends.
401
+ (*) flow-start-time-sec
402
+ Specifies the seconds value of the timestamp when
403
+ the flow starts. The Unix epoch is 1970-01-01T00:00:00Z.
404
+ (*) flow-start-time-usec
405
+ Specifies microseconds value of the timestamp when
406
+ the flow starts.
407
+ (*) proto
408
+ Specifies the protocol of the flow.
409
+ (*) rec-type
410
+ Specifies the type of the flow-based record. The value
411
+ is 0: flow init, 1: flow interim, and 2: flow end.
412
+ (*) src-ip
413
+ Specifies the source ip address of the flow.
414
+ (*) src-port
415
+ Specifies the destination port of the flow.
416
+ (*) subs-id
417
+ Specifies the subscriber id.
418
+ (*) subs-id-type
419
+ Specifies the subscriber id type (e164, imsi, nai, or
420
+ private).
421
+ (*) timestamp-sec
422
+ Specifies the seconds value of the timestamp when
423
+ the record was generated. The Unix epoch is
424
+ 1970-01-01T00:00:00Z.
425
+ (*) timestamp-usec
426
+ Specifies the microseconds value of the timestamp when
427
+ the record was generated.
428
+
429
+ </documentation>
430
+ <soap:operation soapAction="urn:iControl:PEM/FormatScript"/>
431
+ <input>
432
+ <soap:body
433
+ use="encoded"
434
+ namespace="urn:iControl:PEM/FormatScript"
435
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
436
+ </input>
437
+ <output>
438
+ <soap:body
439
+ use="encoded"
440
+ namespace="urn:iControl:PEM/FormatScript"
441
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
442
+ </output>
443
+ </operation>
444
+
445
+ <operation name="get_definition">
446
+ <documentation>
447
+ Gets the definitions for the specified format scripts.
448
+
449
+ </documentation>
450
+ <soap:operation soapAction="urn:iControl:PEM/FormatScript"/>
451
+ <input>
452
+ <soap:body
453
+ use="encoded"
454
+ namespace="urn:iControl:PEM/FormatScript"
455
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
456
+ </input>
457
+ <output>
458
+ <soap:body
459
+ use="encoded"
460
+ namespace="urn:iControl:PEM/FormatScript"
461
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
462
+ </output>
463
+ </operation>
464
+
465
+ <operation name="set_description">
466
+ <documentation>
467
+ Sets the description for a set of format scripts.
468
+ This is an arbitrary field which can be used for any purpose.
469
+
470
+ </documentation>
471
+ <soap:operation soapAction="urn:iControl:PEM/FormatScript"/>
472
+ <input>
473
+ <soap:body
474
+ use="encoded"
475
+ namespace="urn:iControl:PEM/FormatScript"
476
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
477
+ </input>
478
+ <output>
479
+ <soap:body
480
+ use="encoded"
481
+ namespace="urn:iControl:PEM/FormatScript"
482
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
483
+ </output>
484
+ </operation>
485
+
486
+ <operation name="get_description">
487
+ <documentation>
488
+ Gets the description for a set of format scripts.
489
+
490
+ </documentation>
491
+ <soap:operation soapAction="urn:iControl:PEM/FormatScript"/>
492
+ <input>
493
+ <soap:body
494
+ use="encoded"
495
+ namespace="urn:iControl:PEM/FormatScript"
496
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
497
+ </input>
498
+ <output>
499
+ <soap:body
500
+ use="encoded"
501
+ namespace="urn:iControl:PEM/FormatScript"
502
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
503
+ </output>
504
+ </operation>
505
+
506
+ <operation name="get_version">
507
+ <documentation>
508
+ Gets the version information for this interface.
509
+
510
+ </documentation>
511
+ <soap:operation soapAction="urn:iControl:PEM/FormatScript"/>
512
+ <input>
513
+ <soap:body
514
+ use="encoded"
515
+ namespace="urn:iControl:PEM/FormatScript"
516
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
517
+ </input>
518
+ <output>
519
+ <soap:body
520
+ use="encoded"
521
+ namespace="urn:iControl:PEM/FormatScript"
522
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
523
+ </output>
524
+ </operation>
525
+ </binding>
526
+
527
+ <!-- service -->
528
+
529
+ <service name="PEM.FormatScript">
530
+ <documentation>
531
+ You can use the format script component to create scripts for
532
+ High-Speed Logging (HSL) reporting. The scripts use TCL syntax and
533
+ define a custom format that is applied in an enforcement policy rule.
534
+ The format and fields available differ depending on whether the rule
535
+ specifies session-based or flow-based reporting.
536
+
537
+ </documentation>
538
+ <port name="PEM.FormatScriptPort" binding="tns:PEM.FormatScriptBinding">
539
+ <soap:address location="https://url_to_service"/>
540
+ </port>
541
+ </service>
542
+ </definitions>