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,826 @@
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="Management.SFlowGlobals"
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.ULong">
25
+ <xsd:restriction base="xsd:long"/>
26
+ </xsd:simpleType>
27
+ </xsd:schema>
28
+ </types>
29
+
30
+ <!-- message -->
31
+
32
+ <message name="Management.SFlowGlobals.set_system_poll_intervalRequest">
33
+ <part name="interval" type="xsd:long"/>
34
+ </message>
35
+ <message name="Management.SFlowGlobals.set_system_poll_intervalResponse">
36
+ </message>
37
+
38
+ <message name="Management.SFlowGlobals.get_system_poll_intervalRequest">
39
+ </message>
40
+ <message name="Management.SFlowGlobals.get_system_poll_intervalResponse">
41
+ <part name="return" type="xsd:long"/>
42
+ </message>
43
+
44
+ <message name="Management.SFlowGlobals.set_system_descriptionRequest">
45
+ <part name="description" type="xsd:string"/>
46
+ </message>
47
+ <message name="Management.SFlowGlobals.set_system_descriptionResponse">
48
+ </message>
49
+
50
+ <message name="Management.SFlowGlobals.get_system_descriptionRequest">
51
+ </message>
52
+ <message name="Management.SFlowGlobals.get_system_descriptionResponse">
53
+ <part name="return" type="xsd:string"/>
54
+ </message>
55
+
56
+ <message name="Management.SFlowGlobals.set_interface_poll_intervalRequest">
57
+ <part name="interval" type="xsd:long"/>
58
+ </message>
59
+ <message name="Management.SFlowGlobals.set_interface_poll_intervalResponse">
60
+ </message>
61
+
62
+ <message name="Management.SFlowGlobals.get_interface_poll_intervalRequest">
63
+ </message>
64
+ <message name="Management.SFlowGlobals.get_interface_poll_intervalResponse">
65
+ <part name="return" type="xsd:long"/>
66
+ </message>
67
+
68
+ <message name="Management.SFlowGlobals.set_interface_descriptionRequest">
69
+ <part name="description" type="xsd:string"/>
70
+ </message>
71
+ <message name="Management.SFlowGlobals.set_interface_descriptionResponse">
72
+ </message>
73
+
74
+ <message name="Management.SFlowGlobals.get_interface_descriptionRequest">
75
+ </message>
76
+ <message name="Management.SFlowGlobals.get_interface_descriptionResponse">
77
+ <part name="return" type="xsd:string"/>
78
+ </message>
79
+
80
+ <message name="Management.SFlowGlobals.set_vlan_poll_intervalRequest">
81
+ <part name="interval" type="xsd:long"/>
82
+ </message>
83
+ <message name="Management.SFlowGlobals.set_vlan_poll_intervalResponse">
84
+ </message>
85
+
86
+ <message name="Management.SFlowGlobals.get_vlan_poll_intervalRequest">
87
+ </message>
88
+ <message name="Management.SFlowGlobals.get_vlan_poll_intervalResponse">
89
+ <part name="return" type="xsd:long"/>
90
+ </message>
91
+
92
+ <message name="Management.SFlowGlobals.set_vlan_sampling_rateRequest">
93
+ <part name="rate" type="xsd:long"/>
94
+ </message>
95
+ <message name="Management.SFlowGlobals.set_vlan_sampling_rateResponse">
96
+ </message>
97
+
98
+ <message name="Management.SFlowGlobals.get_vlan_sampling_rateRequest">
99
+ </message>
100
+ <message name="Management.SFlowGlobals.get_vlan_sampling_rateResponse">
101
+ <part name="return" type="xsd:long"/>
102
+ </message>
103
+
104
+ <message name="Management.SFlowGlobals.set_vlan_descriptionRequest">
105
+ <part name="description" type="xsd:string"/>
106
+ </message>
107
+ <message name="Management.SFlowGlobals.set_vlan_descriptionResponse">
108
+ </message>
109
+
110
+ <message name="Management.SFlowGlobals.get_vlan_descriptionRequest">
111
+ </message>
112
+ <message name="Management.SFlowGlobals.get_vlan_descriptionResponse">
113
+ <part name="return" type="xsd:string"/>
114
+ </message>
115
+
116
+ <message name="Management.SFlowGlobals.set_http_poll_intervalRequest">
117
+ <part name="interval" type="xsd:long"/>
118
+ </message>
119
+ <message name="Management.SFlowGlobals.set_http_poll_intervalResponse">
120
+ </message>
121
+
122
+ <message name="Management.SFlowGlobals.get_http_poll_intervalRequest">
123
+ </message>
124
+ <message name="Management.SFlowGlobals.get_http_poll_intervalResponse">
125
+ <part name="return" type="xsd:long"/>
126
+ </message>
127
+
128
+ <message name="Management.SFlowGlobals.set_http_sampling_rateRequest">
129
+ <part name="rate" type="xsd:long"/>
130
+ </message>
131
+ <message name="Management.SFlowGlobals.set_http_sampling_rateResponse">
132
+ </message>
133
+
134
+ <message name="Management.SFlowGlobals.get_http_sampling_rateRequest">
135
+ </message>
136
+ <message name="Management.SFlowGlobals.get_http_sampling_rateResponse">
137
+ <part name="return" type="xsd:long"/>
138
+ </message>
139
+
140
+ <message name="Management.SFlowGlobals.set_http_descriptionRequest">
141
+ <part name="description" type="xsd:string"/>
142
+ </message>
143
+ <message name="Management.SFlowGlobals.set_http_descriptionResponse">
144
+ </message>
145
+
146
+ <message name="Management.SFlowGlobals.get_http_descriptionRequest">
147
+ </message>
148
+ <message name="Management.SFlowGlobals.get_http_descriptionResponse">
149
+ <part name="return" type="xsd:string"/>
150
+ </message>
151
+
152
+ <message name="Management.SFlowGlobals.get_versionRequest">
153
+ </message>
154
+ <message name="Management.SFlowGlobals.get_versionResponse">
155
+ <part name="return" type="xsd:string"/>
156
+ </message>
157
+
158
+ <!-- portType -->
159
+
160
+ <portType name="Management.SFlowGlobalsPortType">
161
+ <operation name="set_system_poll_interval">
162
+ <documentation>
163
+ Sets the poll interval for the system. This is the maximum
164
+ interval in seconds between polling of the system information
165
+ (e.g., average CPU utilization, total and free memory). The
166
+ default is 10.
167
+
168
+ </documentation>
169
+ <input message="tns:Management.SFlowGlobals.set_system_poll_intervalRequest"/>
170
+ <output message="tns:Management.SFlowGlobals.set_system_poll_intervalResponse"/>
171
+ </operation>
172
+ <operation name="get_system_poll_interval">
173
+ <documentation>
174
+ Gets the poll interval for the system.
175
+
176
+ </documentation>
177
+ <input message="tns:Management.SFlowGlobals.get_system_poll_intervalRequest"/>
178
+ <output message="tns:Management.SFlowGlobals.get_system_poll_intervalResponse"/>
179
+ </operation>
180
+ <operation name="set_system_description">
181
+ <documentation>
182
+ Sets the description for the system (sFlow settings).
183
+
184
+ This is an arbitrary field which can be used for any purpose.
185
+
186
+ </documentation>
187
+ <input message="tns:Management.SFlowGlobals.set_system_descriptionRequest"/>
188
+ <output message="tns:Management.SFlowGlobals.set_system_descriptionResponse"/>
189
+ </operation>
190
+ <operation name="get_system_description">
191
+ <documentation>
192
+ Gets the description for the system (sFlow settings).
193
+
194
+ </documentation>
195
+ <input message="tns:Management.SFlowGlobals.get_system_descriptionRequest"/>
196
+ <output message="tns:Management.SFlowGlobals.get_system_descriptionResponse"/>
197
+ </operation>
198
+ <operation name="set_interface_poll_interval">
199
+ <documentation>
200
+ Sets the poll interval for the interfaces. This is the maximum
201
+ interval in seconds between polling of the monitored interfaces.
202
+ The default is 10.
203
+
204
+ </documentation>
205
+ <input message="tns:Management.SFlowGlobals.set_interface_poll_intervalRequest"/>
206
+ <output message="tns:Management.SFlowGlobals.set_interface_poll_intervalResponse"/>
207
+ </operation>
208
+ <operation name="get_interface_poll_interval">
209
+ <documentation>
210
+ Gets the poll interval for the interfaces.
211
+
212
+ </documentation>
213
+ <input message="tns:Management.SFlowGlobals.get_interface_poll_intervalRequest"/>
214
+ <output message="tns:Management.SFlowGlobals.get_interface_poll_intervalResponse"/>
215
+ </operation>
216
+ <operation name="set_interface_description">
217
+ <documentation>
218
+ Sets the description for the interface (sFlow settings).
219
+
220
+ This is an arbitrary field which can be used for any purpose.
221
+
222
+ </documentation>
223
+ <input message="tns:Management.SFlowGlobals.set_interface_descriptionRequest"/>
224
+ <output message="tns:Management.SFlowGlobals.set_interface_descriptionResponse"/>
225
+ </operation>
226
+ <operation name="get_interface_description">
227
+ <documentation>
228
+ Gets the description for the interface (sFlow settings).
229
+
230
+ </documentation>
231
+ <input message="tns:Management.SFlowGlobals.get_interface_descriptionRequest"/>
232
+ <output message="tns:Management.SFlowGlobals.get_interface_descriptionResponse"/>
233
+ </operation>
234
+ <operation name="set_vlan_poll_interval">
235
+ <documentation>
236
+ Sets the poll interval for the VLANs. This is the maximum
237
+ interval in seconds between polling of the monitored VLANs.
238
+ The default is 10.
239
+
240
+ </documentation>
241
+ <input message="tns:Management.SFlowGlobals.set_vlan_poll_intervalRequest"/>
242
+ <output message="tns:Management.SFlowGlobals.set_vlan_poll_intervalResponse"/>
243
+ </operation>
244
+ <operation name="get_vlan_poll_interval">
245
+ <documentation>
246
+ Gets the poll interval for the VLANs.
247
+
248
+ </documentation>
249
+ <input message="tns:Management.SFlowGlobals.get_vlan_poll_intervalRequest"/>
250
+ <output message="tns:Management.SFlowGlobals.get_vlan_poll_intervalResponse"/>
251
+ </operation>
252
+ <operation name="set_vlan_sampling_rate">
253
+ <documentation>
254
+ Sets the sampling rate for the VLANs. This is the ratio of
255
+ packets observed at the VLANs to the number of samples you
256
+ want the BIG-IP system to generate. For example, a sampling
257
+ rate of 2000 specifies that 1 sample will be randomly generated
258
+ for every 2000 packets observed. The default is 2048.
259
+
260
+ </documentation>
261
+ <input message="tns:Management.SFlowGlobals.set_vlan_sampling_rateRequest"/>
262
+ <output message="tns:Management.SFlowGlobals.set_vlan_sampling_rateResponse"/>
263
+ </operation>
264
+ <operation name="get_vlan_sampling_rate">
265
+ <documentation>
266
+ Gets the sampling rate for the VLANs.
267
+
268
+ </documentation>
269
+ <input message="tns:Management.SFlowGlobals.get_vlan_sampling_rateRequest"/>
270
+ <output message="tns:Management.SFlowGlobals.get_vlan_sampling_rateResponse"/>
271
+ </operation>
272
+ <operation name="set_vlan_description">
273
+ <documentation>
274
+ Sets the description for the VLANs (sFlow settings).
275
+
276
+ This is an arbitrary field which can be used for any purpose.
277
+
278
+ </documentation>
279
+ <input message="tns:Management.SFlowGlobals.set_vlan_descriptionRequest"/>
280
+ <output message="tns:Management.SFlowGlobals.set_vlan_descriptionResponse"/>
281
+ </operation>
282
+ <operation name="get_vlan_description">
283
+ <documentation>
284
+ Gets the description for the VLANs (sFlow settings).
285
+
286
+ </documentation>
287
+ <input message="tns:Management.SFlowGlobals.get_vlan_descriptionRequest"/>
288
+ <output message="tns:Management.SFlowGlobals.get_vlan_descriptionResponse"/>
289
+ </operation>
290
+ <operation name="set_http_poll_interval">
291
+ <documentation>
292
+ Sets the poll interval for the HTTP profiles. This is the
293
+ maximum interval in seconds between polling of the monitored
294
+ virtual servers to which the HTTP profile is assigned. The
295
+ default is 10.
296
+
297
+ </documentation>
298
+ <input message="tns:Management.SFlowGlobals.set_http_poll_intervalRequest"/>
299
+ <output message="tns:Management.SFlowGlobals.set_http_poll_intervalResponse"/>
300
+ </operation>
301
+ <operation name="get_http_poll_interval">
302
+ <documentation>
303
+ Gets the poll interval for the HTTP profiles.
304
+
305
+ </documentation>
306
+ <input message="tns:Management.SFlowGlobals.get_http_poll_intervalRequest"/>
307
+ <output message="tns:Management.SFlowGlobals.get_http_poll_intervalResponse"/>
308
+ </operation>
309
+ <operation name="set_http_sampling_rate">
310
+ <documentation>
311
+ Sets the sampling rate for the HTTP profiles. This is the
312
+ ratio of packets observed at the virtual servers to which
313
+ the HTTP profile is assigned to the number of samples you
314
+ want the BIG-IP system to generate. For example, a sampling
315
+ rate of 2000 specifies that 1 sample will be randomly generated
316
+ for every 2000 packets observed. The default is 1024.
317
+
318
+ </documentation>
319
+ <input message="tns:Management.SFlowGlobals.set_http_sampling_rateRequest"/>
320
+ <output message="tns:Management.SFlowGlobals.set_http_sampling_rateResponse"/>
321
+ </operation>
322
+ <operation name="get_http_sampling_rate">
323
+ <documentation>
324
+ Gets the sampling rate for the HTTP profiles.
325
+
326
+ </documentation>
327
+ <input message="tns:Management.SFlowGlobals.get_http_sampling_rateRequest"/>
328
+ <output message="tns:Management.SFlowGlobals.get_http_sampling_rateResponse"/>
329
+ </operation>
330
+ <operation name="set_http_description">
331
+ <documentation>
332
+ Sets the description for the HTTP profiles (sFlow settings).
333
+
334
+ This is an arbitrary field which can be used for any purpose.
335
+
336
+ </documentation>
337
+ <input message="tns:Management.SFlowGlobals.set_http_descriptionRequest"/>
338
+ <output message="tns:Management.SFlowGlobals.set_http_descriptionResponse"/>
339
+ </operation>
340
+ <operation name="get_http_description">
341
+ <documentation>
342
+ Gets the description for the HTTP profiles (sFlow settings).
343
+
344
+ </documentation>
345
+ <input message="tns:Management.SFlowGlobals.get_http_descriptionRequest"/>
346
+ <output message="tns:Management.SFlowGlobals.get_http_descriptionResponse"/>
347
+ </operation>
348
+ <operation name="get_version">
349
+ <documentation>
350
+ Gets the version information for this interface.
351
+
352
+ </documentation>
353
+ <input message="tns:Management.SFlowGlobals.get_versionRequest"/>
354
+ <output message="tns:Management.SFlowGlobals.get_versionResponse"/>
355
+ </operation>
356
+ </portType>
357
+
358
+ <!-- binding -->
359
+
360
+ <binding name="Management.SFlowGlobalsBinding" type="tns:Management.SFlowGlobalsPortType">
361
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
362
+ <operation name="set_system_poll_interval">
363
+ <documentation>
364
+ Sets the poll interval for the system. This is the maximum
365
+ interval in seconds between polling of the system information
366
+ (e.g., average CPU utilization, total and free memory). The
367
+ default is 10.
368
+
369
+ </documentation>
370
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
371
+ <input>
372
+ <soap:body
373
+ use="encoded"
374
+ namespace="urn:iControl:Management/SFlowGlobals"
375
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
376
+ </input>
377
+ <output>
378
+ <soap:body
379
+ use="encoded"
380
+ namespace="urn:iControl:Management/SFlowGlobals"
381
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
382
+ </output>
383
+ </operation>
384
+
385
+ <operation name="get_system_poll_interval">
386
+ <documentation>
387
+ Gets the poll interval for the system.
388
+
389
+ </documentation>
390
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
391
+ <input>
392
+ <soap:body
393
+ use="encoded"
394
+ namespace="urn:iControl:Management/SFlowGlobals"
395
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
396
+ </input>
397
+ <output>
398
+ <soap:body
399
+ use="encoded"
400
+ namespace="urn:iControl:Management/SFlowGlobals"
401
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
402
+ </output>
403
+ </operation>
404
+
405
+ <operation name="set_system_description">
406
+ <documentation>
407
+ Sets the description for the system (sFlow settings).
408
+
409
+ This is an arbitrary field which can be used for any purpose.
410
+
411
+ </documentation>
412
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
413
+ <input>
414
+ <soap:body
415
+ use="encoded"
416
+ namespace="urn:iControl:Management/SFlowGlobals"
417
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
418
+ </input>
419
+ <output>
420
+ <soap:body
421
+ use="encoded"
422
+ namespace="urn:iControl:Management/SFlowGlobals"
423
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
424
+ </output>
425
+ </operation>
426
+
427
+ <operation name="get_system_description">
428
+ <documentation>
429
+ Gets the description for the system (sFlow settings).
430
+
431
+ </documentation>
432
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
433
+ <input>
434
+ <soap:body
435
+ use="encoded"
436
+ namespace="urn:iControl:Management/SFlowGlobals"
437
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
438
+ </input>
439
+ <output>
440
+ <soap:body
441
+ use="encoded"
442
+ namespace="urn:iControl:Management/SFlowGlobals"
443
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
444
+ </output>
445
+ </operation>
446
+
447
+ <operation name="set_interface_poll_interval">
448
+ <documentation>
449
+ Sets the poll interval for the interfaces. This is the maximum
450
+ interval in seconds between polling of the monitored interfaces.
451
+ The default is 10.
452
+
453
+ </documentation>
454
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
455
+ <input>
456
+ <soap:body
457
+ use="encoded"
458
+ namespace="urn:iControl:Management/SFlowGlobals"
459
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
460
+ </input>
461
+ <output>
462
+ <soap:body
463
+ use="encoded"
464
+ namespace="urn:iControl:Management/SFlowGlobals"
465
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
466
+ </output>
467
+ </operation>
468
+
469
+ <operation name="get_interface_poll_interval">
470
+ <documentation>
471
+ Gets the poll interval for the interfaces.
472
+
473
+ </documentation>
474
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
475
+ <input>
476
+ <soap:body
477
+ use="encoded"
478
+ namespace="urn:iControl:Management/SFlowGlobals"
479
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
480
+ </input>
481
+ <output>
482
+ <soap:body
483
+ use="encoded"
484
+ namespace="urn:iControl:Management/SFlowGlobals"
485
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
486
+ </output>
487
+ </operation>
488
+
489
+ <operation name="set_interface_description">
490
+ <documentation>
491
+ Sets the description for the interface (sFlow settings).
492
+
493
+ This is an arbitrary field which can be used for any purpose.
494
+
495
+ </documentation>
496
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
497
+ <input>
498
+ <soap:body
499
+ use="encoded"
500
+ namespace="urn:iControl:Management/SFlowGlobals"
501
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
502
+ </input>
503
+ <output>
504
+ <soap:body
505
+ use="encoded"
506
+ namespace="urn:iControl:Management/SFlowGlobals"
507
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
508
+ </output>
509
+ </operation>
510
+
511
+ <operation name="get_interface_description">
512
+ <documentation>
513
+ Gets the description for the interface (sFlow settings).
514
+
515
+ </documentation>
516
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
517
+ <input>
518
+ <soap:body
519
+ use="encoded"
520
+ namespace="urn:iControl:Management/SFlowGlobals"
521
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
522
+ </input>
523
+ <output>
524
+ <soap:body
525
+ use="encoded"
526
+ namespace="urn:iControl:Management/SFlowGlobals"
527
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
528
+ </output>
529
+ </operation>
530
+
531
+ <operation name="set_vlan_poll_interval">
532
+ <documentation>
533
+ Sets the poll interval for the VLANs. This is the maximum
534
+ interval in seconds between polling of the monitored VLANs.
535
+ The default is 10.
536
+
537
+ </documentation>
538
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
539
+ <input>
540
+ <soap:body
541
+ use="encoded"
542
+ namespace="urn:iControl:Management/SFlowGlobals"
543
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
544
+ </input>
545
+ <output>
546
+ <soap:body
547
+ use="encoded"
548
+ namespace="urn:iControl:Management/SFlowGlobals"
549
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
550
+ </output>
551
+ </operation>
552
+
553
+ <operation name="get_vlan_poll_interval">
554
+ <documentation>
555
+ Gets the poll interval for the VLANs.
556
+
557
+ </documentation>
558
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
559
+ <input>
560
+ <soap:body
561
+ use="encoded"
562
+ namespace="urn:iControl:Management/SFlowGlobals"
563
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
564
+ </input>
565
+ <output>
566
+ <soap:body
567
+ use="encoded"
568
+ namespace="urn:iControl:Management/SFlowGlobals"
569
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
570
+ </output>
571
+ </operation>
572
+
573
+ <operation name="set_vlan_sampling_rate">
574
+ <documentation>
575
+ Sets the sampling rate for the VLANs. This is the ratio of
576
+ packets observed at the VLANs to the number of samples you
577
+ want the BIG-IP system to generate. For example, a sampling
578
+ rate of 2000 specifies that 1 sample will be randomly generated
579
+ for every 2000 packets observed. The default is 2048.
580
+
581
+ </documentation>
582
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
583
+ <input>
584
+ <soap:body
585
+ use="encoded"
586
+ namespace="urn:iControl:Management/SFlowGlobals"
587
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
588
+ </input>
589
+ <output>
590
+ <soap:body
591
+ use="encoded"
592
+ namespace="urn:iControl:Management/SFlowGlobals"
593
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
594
+ </output>
595
+ </operation>
596
+
597
+ <operation name="get_vlan_sampling_rate">
598
+ <documentation>
599
+ Gets the sampling rate for the VLANs.
600
+
601
+ </documentation>
602
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
603
+ <input>
604
+ <soap:body
605
+ use="encoded"
606
+ namespace="urn:iControl:Management/SFlowGlobals"
607
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
608
+ </input>
609
+ <output>
610
+ <soap:body
611
+ use="encoded"
612
+ namespace="urn:iControl:Management/SFlowGlobals"
613
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
614
+ </output>
615
+ </operation>
616
+
617
+ <operation name="set_vlan_description">
618
+ <documentation>
619
+ Sets the description for the VLANs (sFlow settings).
620
+
621
+ This is an arbitrary field which can be used for any purpose.
622
+
623
+ </documentation>
624
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
625
+ <input>
626
+ <soap:body
627
+ use="encoded"
628
+ namespace="urn:iControl:Management/SFlowGlobals"
629
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
630
+ </input>
631
+ <output>
632
+ <soap:body
633
+ use="encoded"
634
+ namespace="urn:iControl:Management/SFlowGlobals"
635
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
636
+ </output>
637
+ </operation>
638
+
639
+ <operation name="get_vlan_description">
640
+ <documentation>
641
+ Gets the description for the VLANs (sFlow settings).
642
+
643
+ </documentation>
644
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
645
+ <input>
646
+ <soap:body
647
+ use="encoded"
648
+ namespace="urn:iControl:Management/SFlowGlobals"
649
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
650
+ </input>
651
+ <output>
652
+ <soap:body
653
+ use="encoded"
654
+ namespace="urn:iControl:Management/SFlowGlobals"
655
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
656
+ </output>
657
+ </operation>
658
+
659
+ <operation name="set_http_poll_interval">
660
+ <documentation>
661
+ Sets the poll interval for the HTTP profiles. This is the
662
+ maximum interval in seconds between polling of the monitored
663
+ virtual servers to which the HTTP profile is assigned. The
664
+ default is 10.
665
+
666
+ </documentation>
667
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
668
+ <input>
669
+ <soap:body
670
+ use="encoded"
671
+ namespace="urn:iControl:Management/SFlowGlobals"
672
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
673
+ </input>
674
+ <output>
675
+ <soap:body
676
+ use="encoded"
677
+ namespace="urn:iControl:Management/SFlowGlobals"
678
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
679
+ </output>
680
+ </operation>
681
+
682
+ <operation name="get_http_poll_interval">
683
+ <documentation>
684
+ Gets the poll interval for the HTTP profiles.
685
+
686
+ </documentation>
687
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
688
+ <input>
689
+ <soap:body
690
+ use="encoded"
691
+ namespace="urn:iControl:Management/SFlowGlobals"
692
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
693
+ </input>
694
+ <output>
695
+ <soap:body
696
+ use="encoded"
697
+ namespace="urn:iControl:Management/SFlowGlobals"
698
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
699
+ </output>
700
+ </operation>
701
+
702
+ <operation name="set_http_sampling_rate">
703
+ <documentation>
704
+ Sets the sampling rate for the HTTP profiles. This is the
705
+ ratio of packets observed at the virtual servers to which
706
+ the HTTP profile is assigned to the number of samples you
707
+ want the BIG-IP system to generate. For example, a sampling
708
+ rate of 2000 specifies that 1 sample will be randomly generated
709
+ for every 2000 packets observed. The default is 1024.
710
+
711
+ </documentation>
712
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
713
+ <input>
714
+ <soap:body
715
+ use="encoded"
716
+ namespace="urn:iControl:Management/SFlowGlobals"
717
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
718
+ </input>
719
+ <output>
720
+ <soap:body
721
+ use="encoded"
722
+ namespace="urn:iControl:Management/SFlowGlobals"
723
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
724
+ </output>
725
+ </operation>
726
+
727
+ <operation name="get_http_sampling_rate">
728
+ <documentation>
729
+ Gets the sampling rate for the HTTP profiles.
730
+
731
+ </documentation>
732
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
733
+ <input>
734
+ <soap:body
735
+ use="encoded"
736
+ namespace="urn:iControl:Management/SFlowGlobals"
737
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
738
+ </input>
739
+ <output>
740
+ <soap:body
741
+ use="encoded"
742
+ namespace="urn:iControl:Management/SFlowGlobals"
743
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
744
+ </output>
745
+ </operation>
746
+
747
+ <operation name="set_http_description">
748
+ <documentation>
749
+ Sets the description for the HTTP profiles (sFlow settings).
750
+
751
+ This is an arbitrary field which can be used for any purpose.
752
+
753
+ </documentation>
754
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
755
+ <input>
756
+ <soap:body
757
+ use="encoded"
758
+ namespace="urn:iControl:Management/SFlowGlobals"
759
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
760
+ </input>
761
+ <output>
762
+ <soap:body
763
+ use="encoded"
764
+ namespace="urn:iControl:Management/SFlowGlobals"
765
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
766
+ </output>
767
+ </operation>
768
+
769
+ <operation name="get_http_description">
770
+ <documentation>
771
+ Gets the description for the HTTP profiles (sFlow settings).
772
+
773
+ </documentation>
774
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
775
+ <input>
776
+ <soap:body
777
+ use="encoded"
778
+ namespace="urn:iControl:Management/SFlowGlobals"
779
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
780
+ </input>
781
+ <output>
782
+ <soap:body
783
+ use="encoded"
784
+ namespace="urn:iControl:Management/SFlowGlobals"
785
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
786
+ </output>
787
+ </operation>
788
+
789
+ <operation name="get_version">
790
+ <documentation>
791
+ Gets the version information for this interface.
792
+
793
+ </documentation>
794
+ <soap:operation soapAction="urn:iControl:Management/SFlowGlobals"/>
795
+ <input>
796
+ <soap:body
797
+ use="encoded"
798
+ namespace="urn:iControl:Management/SFlowGlobals"
799
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
800
+ </input>
801
+ <output>
802
+ <soap:body
803
+ use="encoded"
804
+ namespace="urn:iControl:Management/SFlowGlobals"
805
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
806
+ </output>
807
+ </operation>
808
+ </binding>
809
+
810
+ <!-- service -->
811
+
812
+ <service name="Management.SFlowGlobals">
813
+ <documentation>
814
+ The SFlowGlobals interface contains the methods for manipulating the
815
+ global attributes of the sFlow monitoring. It allows you to configure
816
+ the global poll interval for the system, interfaces, VLANs, and HTTP
817
+ profiles, and the global sampling rate for the VLANs and HTTP profiles.
818
+ Note: the sampling rate attribute cannot be configured for the system
819
+ and interfaces.
820
+
821
+ </documentation>
822
+ <port name="Management.SFlowGlobalsPort" binding="tns:Management.SFlowGlobalsBinding">
823
+ <soap:address location="https://url_to_service"/>
824
+ </port>
825
+ </service>
826
+ </definitions>