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,497 @@
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="System.Connections"
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="System.Connections.ActiveConnectionV2Sequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.Connections.ActiveConnectionV2[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:complexType name="System.Connections.ConnectionID">
32
+ <xsd:sequence>
33
+ <xsd:element name="clientside_client" type="tns:Common.IPPortDefinition"/>
34
+ <xsd:element name="clientside_server" type="tns:Common.IPPortDefinition"/>
35
+ <xsd:element name="serverside_server" type="tns:Common.IPPortDefinition"/>
36
+ <xsd:element name="protocol" type="tns:Common.ProtocolType"/>
37
+ </xsd:sequence>
38
+ </xsd:complexType>
39
+ <xsd:complexType name="System.Connections.ActiveConnectionSequence">
40
+ <xsd:complexContent>
41
+ <xsd:restriction base='SOAP-ENC:Array'>
42
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.Connections.ActiveConnection[]'/>
43
+ </xsd:restriction>
44
+ </xsd:complexContent>
45
+ </xsd:complexType>
46
+ <xsd:complexType name="Common.ULong64">
47
+ <xsd:sequence>
48
+ <xsd:element name="high" type="xsd:long"/>
49
+ <xsd:element name="low" type="xsd:long"/>
50
+ </xsd:sequence>
51
+ </xsd:complexType>
52
+ <xsd:simpleType name="Common.ProtocolType">
53
+ <xsd:restriction base="xsd:string">
54
+ <xsd:enumeration value="PROTOCOL_ANY">
55
+ <xsd:annotation>
56
+ <xsd:documentation>PROTOCOL_ANY</xsd:documentation>
57
+ </xsd:annotation>
58
+ </xsd:enumeration>
59
+ <xsd:enumeration value="PROTOCOL_IPV6">
60
+ <xsd:annotation>
61
+ <xsd:documentation>PROTOCOL_IPV6</xsd:documentation>
62
+ </xsd:annotation>
63
+ </xsd:enumeration>
64
+ <xsd:enumeration value="PROTOCOL_ROUTING">
65
+ <xsd:annotation>
66
+ <xsd:documentation>PROTOCOL_ROUTING</xsd:documentation>
67
+ </xsd:annotation>
68
+ </xsd:enumeration>
69
+ <xsd:enumeration value="PROTOCOL_NONE">
70
+ <xsd:annotation>
71
+ <xsd:documentation>PROTOCOL_NONE</xsd:documentation>
72
+ </xsd:annotation>
73
+ </xsd:enumeration>
74
+ <xsd:enumeration value="PROTOCOL_FRAGMENT">
75
+ <xsd:annotation>
76
+ <xsd:documentation>PROTOCOL_FRAGMENT</xsd:documentation>
77
+ </xsd:annotation>
78
+ </xsd:enumeration>
79
+ <xsd:enumeration value="PROTOCOL_DSTOPTS">
80
+ <xsd:annotation>
81
+ <xsd:documentation>PROTOCOL_DSTOPTS</xsd:documentation>
82
+ </xsd:annotation>
83
+ </xsd:enumeration>
84
+ <xsd:enumeration value="PROTOCOL_TCP">
85
+ <xsd:annotation>
86
+ <xsd:documentation>PROTOCOL_TCP</xsd:documentation>
87
+ </xsd:annotation>
88
+ </xsd:enumeration>
89
+ <xsd:enumeration value="PROTOCOL_UDP">
90
+ <xsd:annotation>
91
+ <xsd:documentation>PROTOCOL_UDP</xsd:documentation>
92
+ </xsd:annotation>
93
+ </xsd:enumeration>
94
+ <xsd:enumeration value="PROTOCOL_ICMP">
95
+ <xsd:annotation>
96
+ <xsd:documentation>PROTOCOL_ICMP</xsd:documentation>
97
+ </xsd:annotation>
98
+ </xsd:enumeration>
99
+ <xsd:enumeration value="PROTOCOL_ICMPV6">
100
+ <xsd:annotation>
101
+ <xsd:documentation>PROTOCOL_ICMPV6</xsd:documentation>
102
+ </xsd:annotation>
103
+ </xsd:enumeration>
104
+ <xsd:enumeration value="PROTOCOL_OSPF">
105
+ <xsd:annotation>
106
+ <xsd:documentation>PROTOCOL_OSPF</xsd:documentation>
107
+ </xsd:annotation>
108
+ </xsd:enumeration>
109
+ <xsd:enumeration value="PROTOCOL_SCTP">
110
+ <xsd:annotation>
111
+ <xsd:documentation>PROTOCOL_SCTP</xsd:documentation>
112
+ </xsd:annotation>
113
+ </xsd:enumeration>
114
+ <xsd:enumeration value="PROTOCOL_UNKNOWN">
115
+ <xsd:annotation>
116
+ <xsd:documentation>PROTOCOL_UNKNOWN</xsd:documentation>
117
+ </xsd:annotation>
118
+ </xsd:enumeration>
119
+ </xsd:restriction>
120
+ </xsd:simpleType>
121
+ <xsd:complexType name="System.Connections.ConnectionIDSequence">
122
+ <xsd:complexContent>
123
+ <xsd:restriction base='SOAP-ENC:Array'>
124
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.Connections.ConnectionID[]'/>
125
+ </xsd:restriction>
126
+ </xsd:complexContent>
127
+ </xsd:complexType>
128
+ <xsd:complexType name="Common.IPPortDefinition">
129
+ <xsd:sequence>
130
+ <xsd:element name="address" type="xsd:string"/>
131
+ <xsd:element name="port" type="xsd:long"/>
132
+ </xsd:sequence>
133
+ </xsd:complexType>
134
+ <xsd:complexType name="System.Connections.ActiveConnectionV2">
135
+ <xsd:sequence>
136
+ <xsd:element name="connection_id" type="tns:System.Connections.ConnectionID"/>
137
+ <xsd:element name="serverside_client" type="tns:Common.IPPortDefinition"/>
138
+ <xsd:element name="virtual_path" type="tns:Common.IPPortDefinition"/>
139
+ <xsd:element name="traffic_group" type="xsd:string"/>
140
+ <xsd:element name="clientside_bytes_in" type="tns:Common.ULong64"/>
141
+ <xsd:element name="clientside_bytes_out" type="tns:Common.ULong64"/>
142
+ <xsd:element name="clientside_packets_in" type="tns:Common.ULong64"/>
143
+ <xsd:element name="clientside_packets_out" type="tns:Common.ULong64"/>
144
+ <xsd:element name="serverside_bytes_in" type="tns:Common.ULong64"/>
145
+ <xsd:element name="serverside_bytes_out" type="tns:Common.ULong64"/>
146
+ <xsd:element name="serverside_packets_in" type="tns:Common.ULong64"/>
147
+ <xsd:element name="serverside_packets_out" type="tns:Common.ULong64"/>
148
+ <xsd:element name="idle_time" type="xsd:long"/>
149
+ <xsd:element name="idle_timeout" type="xsd:long"/>
150
+ <xsd:element name="lasthop_info" type="xsd:string"/>
151
+ </xsd:sequence>
152
+ </xsd:complexType>
153
+ <xsd:complexType name="System.Connections.ActiveConnection">
154
+ <xsd:sequence>
155
+ <xsd:element name="connection_id" type="tns:System.Connections.ConnectionID"/>
156
+ <xsd:element name="serverside_client" type="tns:Common.IPPortDefinition"/>
157
+ <xsd:element name="virtual_path" type="tns:Common.IPPortDefinition"/>
158
+ <xsd:element name="unit_id" type="xsd:long"/>
159
+ <xsd:element name="clientside_bytes_in" type="tns:Common.ULong64"/>
160
+ <xsd:element name="clientside_bytes_out" type="tns:Common.ULong64"/>
161
+ <xsd:element name="clientside_packets_in" type="tns:Common.ULong64"/>
162
+ <xsd:element name="clientside_packets_out" type="tns:Common.ULong64"/>
163
+ <xsd:element name="serverside_bytes_in" type="tns:Common.ULong64"/>
164
+ <xsd:element name="serverside_bytes_out" type="tns:Common.ULong64"/>
165
+ <xsd:element name="serverside_packets_in" type="tns:Common.ULong64"/>
166
+ <xsd:element name="serverside_packets_out" type="tns:Common.ULong64"/>
167
+ <xsd:element name="idle_time" type="xsd:long"/>
168
+ <xsd:element name="idle_timeout" type="xsd:long"/>
169
+ <xsd:element name="lasthop_info" type="xsd:string"/>
170
+ </xsd:sequence>
171
+ </xsd:complexType>
172
+ </xsd:schema>
173
+ </types>
174
+
175
+ <!-- message -->
176
+
177
+ <message name="System.Connections.get_listRequest">
178
+ </message>
179
+ <message name="System.Connections.get_listResponse">
180
+ <part name="return" type="tns:System.Connections.ConnectionIDSequence"/>
181
+ </message>
182
+
183
+ <message name="System.Connections.delete_active_connectionRequest">
184
+ <part name="connections" type="tns:System.Connections.ConnectionIDSequence"/>
185
+ </message>
186
+ <message name="System.Connections.delete_active_connectionResponse">
187
+ </message>
188
+
189
+ <message name="System.Connections.delete_all_active_connectionsRequest">
190
+ </message>
191
+ <message name="System.Connections.delete_all_active_connectionsResponse">
192
+ </message>
193
+
194
+ <message name="System.Connections.get_active_connectionRequest">
195
+ <part name="connections" type="tns:System.Connections.ConnectionIDSequence"/>
196
+ </message>
197
+ <message name="System.Connections.get_active_connectionResponse">
198
+ <part name="return" type="tns:System.Connections.ActiveConnectionSequence"/>
199
+ </message>
200
+
201
+ <message name="System.Connections.get_all_active_connectionsRequest">
202
+ </message>
203
+ <message name="System.Connections.get_all_active_connectionsResponse">
204
+ <part name="return" type="tns:System.Connections.ActiveConnectionSequence"/>
205
+ </message>
206
+
207
+ <message name="System.Connections.get_active_connection_v2Request">
208
+ <part name="connections" type="tns:System.Connections.ConnectionIDSequence"/>
209
+ </message>
210
+ <message name="System.Connections.get_active_connection_v2Response">
211
+ <part name="return" type="tns:System.Connections.ActiveConnectionV2Sequence"/>
212
+ </message>
213
+
214
+ <message name="System.Connections.get_all_active_connections_v2Request">
215
+ </message>
216
+ <message name="System.Connections.get_all_active_connections_v2Response">
217
+ <part name="return" type="tns:System.Connections.ActiveConnectionV2Sequence"/>
218
+ </message>
219
+
220
+ <message name="System.Connections.get_versionRequest">
221
+ </message>
222
+ <message name="System.Connections.get_versionResponse">
223
+ <part name="return" type="xsd:string"/>
224
+ </message>
225
+
226
+ <!-- portType -->
227
+
228
+ <portType name="System.ConnectionsPortType">
229
+ <operation name="get_list">
230
+ <documentation>
231
+ Gets the list of active connections.
232
+
233
+ </documentation>
234
+ <input message="tns:System.Connections.get_listRequest"/>
235
+ <output message="tns:System.Connections.get_listResponse"/>
236
+ </operation>
237
+ <operation name="delete_active_connection">
238
+ <documentation>
239
+ Deletes the specified connections from the connection table.
240
+
241
+ </documentation>
242
+ <input message="tns:System.Connections.delete_active_connectionRequest"/>
243
+ <output message="tns:System.Connections.delete_active_connectionResponse"/>
244
+ </operation>
245
+ <operation name="delete_all_active_connections">
246
+ <documentation>
247
+ Deletes all active connections from the connection table.
248
+
249
+ </documentation>
250
+ <input message="tns:System.Connections.delete_all_active_connectionsRequest"/>
251
+ <output message="tns:System.Connections.delete_all_active_connectionsResponse"/>
252
+ </operation>
253
+ <operation name="get_active_connection">
254
+ <documentation>
255
+ Gets the active connections in detail for the specified connections.
256
+
257
+ If some of the connections requested no longer exist (or
258
+ never existed), the system skips them and returns the
259
+ entries it can, in which case the result sequence will be
260
+ shorter than the input sequence and you can check the key
261
+ fields in the result to see which connections exist.
262
+
263
+ </documentation>
264
+ <input message="tns:System.Connections.get_active_connectionRequest"/>
265
+ <output message="tns:System.Connections.get_active_connectionResponse"/>
266
+ </operation>
267
+ <operation name="get_all_active_connections">
268
+ <documentation>
269
+ Gets all active connections in details on the local load balancer.
270
+
271
+ </documentation>
272
+ <input message="tns:System.Connections.get_all_active_connectionsRequest"/>
273
+ <output message="tns:System.Connections.get_all_active_connectionsResponse"/>
274
+ </operation>
275
+ <operation name="get_active_connection_v2">
276
+ <documentation>
277
+ Gets the active connections in detail for the specified connections.
278
+
279
+ If some of the connections requested no longer exist (or
280
+ never existed), the system skips them and returns the
281
+ entries it can, in which case the result sequence will be
282
+ shorter than the input sequence and you can check the key
283
+ fields in the result to see which connections exist.
284
+
285
+ </documentation>
286
+ <input message="tns:System.Connections.get_active_connection_v2Request"/>
287
+ <output message="tns:System.Connections.get_active_connection_v2Response"/>
288
+ </operation>
289
+ <operation name="get_all_active_connections_v2">
290
+ <documentation>
291
+ Gets all active connections in details on the local load balancer.
292
+
293
+ </documentation>
294
+ <input message="tns:System.Connections.get_all_active_connections_v2Request"/>
295
+ <output message="tns:System.Connections.get_all_active_connections_v2Response"/>
296
+ </operation>
297
+ <operation name="get_version">
298
+ <documentation>
299
+ Gets the version information for this interface.
300
+
301
+ </documentation>
302
+ <input message="tns:System.Connections.get_versionRequest"/>
303
+ <output message="tns:System.Connections.get_versionResponse"/>
304
+ </operation>
305
+ </portType>
306
+
307
+ <!-- binding -->
308
+
309
+ <binding name="System.ConnectionsBinding" type="tns:System.ConnectionsPortType">
310
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
311
+ <operation name="get_list">
312
+ <documentation>
313
+ Gets the list of active connections.
314
+
315
+ </documentation>
316
+ <soap:operation soapAction="urn:iControl:System/Connections"/>
317
+ <input>
318
+ <soap:body
319
+ use="encoded"
320
+ namespace="urn:iControl:System/Connections"
321
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
322
+ </input>
323
+ <output>
324
+ <soap:body
325
+ use="encoded"
326
+ namespace="urn:iControl:System/Connections"
327
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
328
+ </output>
329
+ </operation>
330
+
331
+ <operation name="delete_active_connection">
332
+ <documentation>
333
+ Deletes the specified connections from the connection table.
334
+
335
+ </documentation>
336
+ <soap:operation soapAction="urn:iControl:System/Connections"/>
337
+ <input>
338
+ <soap:body
339
+ use="encoded"
340
+ namespace="urn:iControl:System/Connections"
341
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
342
+ </input>
343
+ <output>
344
+ <soap:body
345
+ use="encoded"
346
+ namespace="urn:iControl:System/Connections"
347
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
348
+ </output>
349
+ </operation>
350
+
351
+ <operation name="delete_all_active_connections">
352
+ <documentation>
353
+ Deletes all active connections from the connection table.
354
+
355
+ </documentation>
356
+ <soap:operation soapAction="urn:iControl:System/Connections"/>
357
+ <input>
358
+ <soap:body
359
+ use="encoded"
360
+ namespace="urn:iControl:System/Connections"
361
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
362
+ </input>
363
+ <output>
364
+ <soap:body
365
+ use="encoded"
366
+ namespace="urn:iControl:System/Connections"
367
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
368
+ </output>
369
+ </operation>
370
+
371
+ <operation name="get_active_connection">
372
+ <documentation>
373
+ Gets the active connections in detail for the specified connections.
374
+
375
+ If some of the connections requested no longer exist (or
376
+ never existed), the system skips them and returns the
377
+ entries it can, in which case the result sequence will be
378
+ shorter than the input sequence and you can check the key
379
+ fields in the result to see which connections exist.
380
+
381
+ </documentation>
382
+ <soap:operation soapAction="urn:iControl:System/Connections"/>
383
+ <input>
384
+ <soap:body
385
+ use="encoded"
386
+ namespace="urn:iControl:System/Connections"
387
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
388
+ </input>
389
+ <output>
390
+ <soap:body
391
+ use="encoded"
392
+ namespace="urn:iControl:System/Connections"
393
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
394
+ </output>
395
+ </operation>
396
+
397
+ <operation name="get_all_active_connections">
398
+ <documentation>
399
+ Gets all active connections in details on the local load balancer.
400
+
401
+ </documentation>
402
+ <soap:operation soapAction="urn:iControl:System/Connections"/>
403
+ <input>
404
+ <soap:body
405
+ use="encoded"
406
+ namespace="urn:iControl:System/Connections"
407
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
408
+ </input>
409
+ <output>
410
+ <soap:body
411
+ use="encoded"
412
+ namespace="urn:iControl:System/Connections"
413
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
414
+ </output>
415
+ </operation>
416
+
417
+ <operation name="get_active_connection_v2">
418
+ <documentation>
419
+ Gets the active connections in detail for the specified connections.
420
+
421
+ If some of the connections requested no longer exist (or
422
+ never existed), the system skips them and returns the
423
+ entries it can, in which case the result sequence will be
424
+ shorter than the input sequence and you can check the key
425
+ fields in the result to see which connections exist.
426
+
427
+ </documentation>
428
+ <soap:operation soapAction="urn:iControl:System/Connections"/>
429
+ <input>
430
+ <soap:body
431
+ use="encoded"
432
+ namespace="urn:iControl:System/Connections"
433
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
434
+ </input>
435
+ <output>
436
+ <soap:body
437
+ use="encoded"
438
+ namespace="urn:iControl:System/Connections"
439
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
440
+ </output>
441
+ </operation>
442
+
443
+ <operation name="get_all_active_connections_v2">
444
+ <documentation>
445
+ Gets all active connections in details on the local load balancer.
446
+
447
+ </documentation>
448
+ <soap:operation soapAction="urn:iControl:System/Connections"/>
449
+ <input>
450
+ <soap:body
451
+ use="encoded"
452
+ namespace="urn:iControl:System/Connections"
453
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
454
+ </input>
455
+ <output>
456
+ <soap:body
457
+ use="encoded"
458
+ namespace="urn:iControl:System/Connections"
459
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
460
+ </output>
461
+ </operation>
462
+
463
+ <operation name="get_version">
464
+ <documentation>
465
+ Gets the version information for this interface.
466
+
467
+ </documentation>
468
+ <soap:operation soapAction="urn:iControl:System/Connections"/>
469
+ <input>
470
+ <soap:body
471
+ use="encoded"
472
+ namespace="urn:iControl:System/Connections"
473
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
474
+ </input>
475
+ <output>
476
+ <soap:body
477
+ use="encoded"
478
+ namespace="urn:iControl:System/Connections"
479
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
480
+ </output>
481
+ </operation>
482
+ </binding>
483
+
484
+ <!-- service -->
485
+
486
+ <service name="System.Connections">
487
+ <documentation>
488
+ The Connections interface enables you to get information about a device's connections.
489
+ For example, use Connection interface to get a list of all active connections or to get
490
+ a list of all active connections for a specific client.
491
+
492
+ </documentation>
493
+ <port name="System.ConnectionsPort" binding="tns:System.ConnectionsBinding">
494
+ <soap:address location="https://url_to_service"/>
495
+ </port>
496
+ </service>
497
+ </definitions>