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,722 @@
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.PerformanceSFlow"
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:complexType name="Common.ULongSequence">
32
+ <xsd:complexContent>
33
+ <xsd:restriction base='SOAP-ENC:Array'>
34
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
35
+ </xsd:restriction>
36
+ </xsd:complexContent>
37
+ </xsd:complexType>
38
+ <xsd:complexType name="Common.PortSequence">
39
+ <xsd:complexContent>
40
+ <xsd:restriction base='SOAP-ENC:Array'>
41
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
42
+ </xsd:restriction>
43
+ </xsd:complexContent>
44
+ </xsd:complexType>
45
+ <xsd:complexType name="Common.IPAddressSequence">
46
+ <xsd:complexContent>
47
+ <xsd:restriction base='SOAP-ENC:Array'>
48
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
49
+ </xsd:restriction>
50
+ </xsd:complexContent>
51
+ </xsd:complexType>
52
+ </xsd:schema>
53
+ </types>
54
+
55
+ <!-- message -->
56
+
57
+ <message name="System.PerformanceSFlow.get_listRequest">
58
+ </message>
59
+ <message name="System.PerformanceSFlow.get_listResponse">
60
+ <part name="return" type="tns:Common.StringSequence"/>
61
+ </message>
62
+
63
+ <message name="System.PerformanceSFlow.createRequest">
64
+ <part name="receivers" type="tns:Common.StringSequence"/>
65
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
66
+ </message>
67
+ <message name="System.PerformanceSFlow.createResponse">
68
+ </message>
69
+
70
+ <message name="System.PerformanceSFlow.delete_sflow_receiverRequest">
71
+ <part name="receivers" type="tns:Common.StringSequence"/>
72
+ </message>
73
+ <message name="System.PerformanceSFlow.delete_sflow_receiverResponse">
74
+ </message>
75
+
76
+ <message name="System.PerformanceSFlow.delete_all_sflow_receiversRequest">
77
+ </message>
78
+ <message name="System.PerformanceSFlow.delete_all_sflow_receiversResponse">
79
+ </message>
80
+
81
+ <message name="System.PerformanceSFlow.set_addressRequest">
82
+ <part name="receivers" type="tns:Common.StringSequence"/>
83
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
84
+ </message>
85
+ <message name="System.PerformanceSFlow.set_addressResponse">
86
+ </message>
87
+
88
+ <message name="System.PerformanceSFlow.get_addressRequest">
89
+ <part name="receivers" type="tns:Common.StringSequence"/>
90
+ </message>
91
+ <message name="System.PerformanceSFlow.get_addressResponse">
92
+ <part name="return" type="tns:Common.IPAddressSequence"/>
93
+ </message>
94
+
95
+ <message name="System.PerformanceSFlow.set_portRequest">
96
+ <part name="receivers" type="tns:Common.StringSequence"/>
97
+ <part name="ports" type="tns:Common.PortSequence"/>
98
+ </message>
99
+ <message name="System.PerformanceSFlow.set_portResponse">
100
+ </message>
101
+
102
+ <message name="System.PerformanceSFlow.get_portRequest">
103
+ <part name="receivers" type="tns:Common.StringSequence"/>
104
+ </message>
105
+ <message name="System.PerformanceSFlow.get_portResponse">
106
+ <part name="return" type="tns:Common.PortSequence"/>
107
+ </message>
108
+
109
+ <message name="System.PerformanceSFlow.set_maximum_datagram_sizeRequest">
110
+ <part name="receivers" type="tns:Common.StringSequence"/>
111
+ <part name="sizes" type="tns:Common.ULongSequence"/>
112
+ </message>
113
+ <message name="System.PerformanceSFlow.set_maximum_datagram_sizeResponse">
114
+ </message>
115
+
116
+ <message name="System.PerformanceSFlow.get_maximum_datagram_sizeRequest">
117
+ <part name="receivers" type="tns:Common.StringSequence"/>
118
+ </message>
119
+ <message name="System.PerformanceSFlow.get_maximum_datagram_sizeResponse">
120
+ <part name="return" type="tns:Common.ULongSequence"/>
121
+ </message>
122
+
123
+ <message name="System.PerformanceSFlow.get_datagram_versionRequest">
124
+ <part name="receivers" type="tns:Common.StringSequence"/>
125
+ </message>
126
+ <message name="System.PerformanceSFlow.get_datagram_versionResponse">
127
+ <part name="return" type="tns:Common.ULongSequence"/>
128
+ </message>
129
+
130
+ <message name="System.PerformanceSFlow.set_poll_intervalRequest">
131
+ <part name="receivers" type="tns:Common.StringSequence"/>
132
+ <part name="intervals" type="tns:Common.ULongSequence"/>
133
+ </message>
134
+ <message name="System.PerformanceSFlow.set_poll_intervalResponse">
135
+ </message>
136
+
137
+ <message name="System.PerformanceSFlow.get_poll_intervalRequest">
138
+ <part name="receivers" type="tns:Common.StringSequence"/>
139
+ </message>
140
+ <message name="System.PerformanceSFlow.get_poll_intervalResponse">
141
+ <part name="return" type="tns:Common.ULongSequence"/>
142
+ </message>
143
+
144
+ <message name="System.PerformanceSFlow.get_versionRequest">
145
+ </message>
146
+ <message name="System.PerformanceSFlow.get_versionResponse">
147
+ <part name="return" type="xsd:string"/>
148
+ </message>
149
+
150
+ <!-- portType -->
151
+
152
+ <portType name="System.PerformanceSFlowPortType">
153
+ <operation name="get_list">
154
+ <documentation>
155
+ This method is deprecated (immediately) and should no longer be used.
156
+ Please use Management::SFlowReceiver::get_list in its stead.
157
+
158
+ Gets a list of sFlow receivers on this device.
159
+
160
+ </documentation>
161
+ <input message="tns:System.PerformanceSFlow.get_listRequest"/>
162
+ <output message="tns:System.PerformanceSFlow.get_listResponse"/>
163
+ </operation>
164
+ <operation name="create">
165
+ <documentation>
166
+ This method is deprecated (immediately) and should no longer be used.
167
+ Please use Management::SFlowReceiver::create in its stead.
168
+
169
+ Creates a set of sFlow receivers.
170
+
171
+ </documentation>
172
+ <input message="tns:System.PerformanceSFlow.createRequest"/>
173
+ <output message="tns:System.PerformanceSFlow.createResponse"/>
174
+ </operation>
175
+ <operation name="delete_sflow_receiver">
176
+ <documentation>
177
+ This method is deprecated (immediately) and should no longer be used.
178
+ Please use Management::SFlowReceiver::delete_sflow_receiver
179
+ in its stead.
180
+
181
+ Deletes a set of sFlow receivers.
182
+
183
+ </documentation>
184
+ <input message="tns:System.PerformanceSFlow.delete_sflow_receiverRequest"/>
185
+ <output message="tns:System.PerformanceSFlow.delete_sflow_receiverResponse"/>
186
+ </operation>
187
+ <operation name="delete_all_sflow_receivers">
188
+ <documentation>
189
+ This method is deprecated (immediately) and should no longer be used.
190
+ Please use Management::SFlowReceiver::delete_all_sflow_receivers
191
+ in its stead.
192
+
193
+ Deletes all sFlow receivers on this device.
194
+
195
+ </documentation>
196
+ <input message="tns:System.PerformanceSFlow.delete_all_sflow_receiversRequest"/>
197
+ <output message="tns:System.PerformanceSFlow.delete_all_sflow_receiversResponse"/>
198
+ </operation>
199
+ <operation name="set_address">
200
+ <documentation>
201
+ This method is deprecated (immediately) and should no longer be used.
202
+ Please use Management::SFlowReceiver::set_address in its stead.
203
+
204
+ Sets the IP addresses of the specified sFlow receivers. IP
205
+ addresses can be either IPv4 or IPv6.
206
+
207
+ </documentation>
208
+ <input message="tns:System.PerformanceSFlow.set_addressRequest"/>
209
+ <output message="tns:System.PerformanceSFlow.set_addressResponse"/>
210
+ </operation>
211
+ <operation name="get_address">
212
+ <documentation>
213
+ This method is deprecated (immediately) and should no longer be used.
214
+ Please use Management::SFlowReceiver::get_address in its stead.
215
+
216
+ Gets the IP addresses of the specified sFlow receivers.
217
+
218
+ </documentation>
219
+ <input message="tns:System.PerformanceSFlow.get_addressRequest"/>
220
+ <output message="tns:System.PerformanceSFlow.get_addressResponse"/>
221
+ </operation>
222
+ <operation name="set_port">
223
+ <documentation>
224
+ This method is deprecated (immediately) and should no longer be used.
225
+ Please use Management::SFlowReceiver::set_port in its stead.
226
+
227
+ Sets the listening port numbers for the specified sFlow
228
+ receivers. Defaults to the sFlow standard, which is port
229
+ 6343.
230
+
231
+ </documentation>
232
+ <input message="tns:System.PerformanceSFlow.set_portRequest"/>
233
+ <output message="tns:System.PerformanceSFlow.set_portResponse"/>
234
+ </operation>
235
+ <operation name="get_port">
236
+ <documentation>
237
+ This method is deprecated (immediately) and should no longer be used.
238
+ Please use Management::SFlowReceiver::get_port in its stead.
239
+
240
+ Gets the listening port numbers of the specified sFlow
241
+ receivers.
242
+
243
+ </documentation>
244
+ <input message="tns:System.PerformanceSFlow.get_portRequest"/>
245
+ <output message="tns:System.PerformanceSFlow.get_portResponse"/>
246
+ </operation>
247
+ <operation name="set_maximum_datagram_size">
248
+ <documentation>
249
+ This method is deprecated (immediately) and should no longer be used.
250
+ Please use Management::SFlowReceiver::set_maximum_datagram_size
251
+ in its stead.
252
+
253
+ Sets the maximum datagram size allowed by the specified
254
+ sFlow receivers, from 512 to 1500. Default is 1400.
255
+
256
+ </documentation>
257
+ <input message="tns:System.PerformanceSFlow.set_maximum_datagram_sizeRequest"/>
258
+ <output message="tns:System.PerformanceSFlow.set_maximum_datagram_sizeResponse"/>
259
+ </operation>
260
+ <operation name="get_maximum_datagram_size">
261
+ <documentation>
262
+ This method is deprecated (immediately) and should no longer be used.
263
+ Please use Management::SFlowReceiver::get_maximum_datagram_size
264
+ in its stead.
265
+
266
+ Gets the maximum datagram size allowed by the specified
267
+ sFlow receivers.
268
+
269
+ </documentation>
270
+ <input message="tns:System.PerformanceSFlow.get_maximum_datagram_sizeRequest"/>
271
+ <output message="tns:System.PerformanceSFlow.get_maximum_datagram_sizeResponse"/>
272
+ </operation>
273
+ <operation name="get_datagram_version">
274
+ <documentation>
275
+ This method is deprecated (immediately) and should no longer be used.
276
+ Please use Management::SFlowReceiver::get_datagram_version
277
+ in its stead.
278
+
279
+ Gets the sFlow Datagram versions used by the specified
280
+ sFlow receivers.
281
+
282
+ </documentation>
283
+ <input message="tns:System.PerformanceSFlow.get_datagram_versionRequest"/>
284
+ <output message="tns:System.PerformanceSFlow.get_datagram_versionResponse"/>
285
+ </operation>
286
+ <operation name="set_poll_interval">
287
+ <documentation>
288
+ This method is deprecated (immediately) and should no longer be used.
289
+ Please use methods in Management::SFlowGlobals interface to
290
+ set the global sFlow poll interval for data sources or use
291
+ set_sflow_poll_interval method in Networking::Interfaces,
292
+ Networking::VLAN, or LocalLB::ProfileHttp interfaces to set
293
+ the object-level sFlow poll interval. This method is a no-op.
294
+
295
+ Sets the polling intervals of the specified sFlow
296
+ receivers. This is the time period between successive
297
+ Counter Samples, in seconds. Each counter polling instance
298
+ can have its own independent polling interval. Default is
299
+ 10, but it can be set to a max of 1500.
300
+
301
+ </documentation>
302
+ <input message="tns:System.PerformanceSFlow.set_poll_intervalRequest"/>
303
+ <output message="tns:System.PerformanceSFlow.set_poll_intervalResponse"/>
304
+ </operation>
305
+ <operation name="get_poll_interval">
306
+ <documentation>
307
+ This method is deprecated (immediately) and should no longer be used.
308
+ Please use methods in Management::SFlowGlobals interface to
309
+ get the global sFlow poll interval for data sources or use
310
+ get_sflow_poll_interval method in Networking::Interfaces,
311
+ Networking::VLAN, or LocalLB::ProfileHttp interfaces to get
312
+ the object-level sFlow poll interval. This method will always
313
+ return 0 (zero) for each specified sFlow receiver.
314
+
315
+ Gets the polling intervals of the specified sFlow
316
+ receivers.
317
+
318
+ </documentation>
319
+ <input message="tns:System.PerformanceSFlow.get_poll_intervalRequest"/>
320
+ <output message="tns:System.PerformanceSFlow.get_poll_intervalResponse"/>
321
+ </operation>
322
+ <operation name="get_version">
323
+ <documentation>
324
+ This method is deprecated (immediately) and should no longer be used.
325
+ Please use Management::SFlowReceiver::get_version in its stead.
326
+
327
+ Gets the version information for this interface.
328
+
329
+ </documentation>
330
+ <input message="tns:System.PerformanceSFlow.get_versionRequest"/>
331
+ <output message="tns:System.PerformanceSFlow.get_versionResponse"/>
332
+ </operation>
333
+ </portType>
334
+
335
+ <!-- binding -->
336
+
337
+ <binding name="System.PerformanceSFlowBinding" type="tns:System.PerformanceSFlowPortType">
338
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
339
+ <operation name="get_list">
340
+ <documentation>
341
+ This method is deprecated (immediately) and should no longer be used.
342
+ Please use Management::SFlowReceiver::get_list in its stead.
343
+
344
+ Gets a list of sFlow receivers on this device.
345
+
346
+ </documentation>
347
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
348
+ <input>
349
+ <soap:body
350
+ use="encoded"
351
+ namespace="urn:iControl:System/PerformanceSFlow"
352
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
353
+ </input>
354
+ <output>
355
+ <soap:body
356
+ use="encoded"
357
+ namespace="urn:iControl:System/PerformanceSFlow"
358
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
359
+ </output>
360
+ </operation>
361
+
362
+ <operation name="create">
363
+ <documentation>
364
+ This method is deprecated (immediately) and should no longer be used.
365
+ Please use Management::SFlowReceiver::create in its stead.
366
+
367
+ Creates a set of sFlow receivers.
368
+
369
+ </documentation>
370
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
371
+ <input>
372
+ <soap:body
373
+ use="encoded"
374
+ namespace="urn:iControl:System/PerformanceSFlow"
375
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
376
+ </input>
377
+ <output>
378
+ <soap:body
379
+ use="encoded"
380
+ namespace="urn:iControl:System/PerformanceSFlow"
381
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
382
+ </output>
383
+ </operation>
384
+
385
+ <operation name="delete_sflow_receiver">
386
+ <documentation>
387
+ This method is deprecated (immediately) and should no longer be used.
388
+ Please use Management::SFlowReceiver::delete_sflow_receiver
389
+ in its stead.
390
+
391
+ Deletes a set of sFlow receivers.
392
+
393
+ </documentation>
394
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
395
+ <input>
396
+ <soap:body
397
+ use="encoded"
398
+ namespace="urn:iControl:System/PerformanceSFlow"
399
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
400
+ </input>
401
+ <output>
402
+ <soap:body
403
+ use="encoded"
404
+ namespace="urn:iControl:System/PerformanceSFlow"
405
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
406
+ </output>
407
+ </operation>
408
+
409
+ <operation name="delete_all_sflow_receivers">
410
+ <documentation>
411
+ This method is deprecated (immediately) and should no longer be used.
412
+ Please use Management::SFlowReceiver::delete_all_sflow_receivers
413
+ in its stead.
414
+
415
+ Deletes all sFlow receivers on this device.
416
+
417
+ </documentation>
418
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
419
+ <input>
420
+ <soap:body
421
+ use="encoded"
422
+ namespace="urn:iControl:System/PerformanceSFlow"
423
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
424
+ </input>
425
+ <output>
426
+ <soap:body
427
+ use="encoded"
428
+ namespace="urn:iControl:System/PerformanceSFlow"
429
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
430
+ </output>
431
+ </operation>
432
+
433
+ <operation name="set_address">
434
+ <documentation>
435
+ This method is deprecated (immediately) and should no longer be used.
436
+ Please use Management::SFlowReceiver::set_address in its stead.
437
+
438
+ Sets the IP addresses of the specified sFlow receivers. IP
439
+ addresses can be either IPv4 or IPv6.
440
+
441
+ </documentation>
442
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
443
+ <input>
444
+ <soap:body
445
+ use="encoded"
446
+ namespace="urn:iControl:System/PerformanceSFlow"
447
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
448
+ </input>
449
+ <output>
450
+ <soap:body
451
+ use="encoded"
452
+ namespace="urn:iControl:System/PerformanceSFlow"
453
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
454
+ </output>
455
+ </operation>
456
+
457
+ <operation name="get_address">
458
+ <documentation>
459
+ This method is deprecated (immediately) and should no longer be used.
460
+ Please use Management::SFlowReceiver::get_address in its stead.
461
+
462
+ Gets the IP addresses of the specified sFlow receivers.
463
+
464
+ </documentation>
465
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
466
+ <input>
467
+ <soap:body
468
+ use="encoded"
469
+ namespace="urn:iControl:System/PerformanceSFlow"
470
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
471
+ </input>
472
+ <output>
473
+ <soap:body
474
+ use="encoded"
475
+ namespace="urn:iControl:System/PerformanceSFlow"
476
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
477
+ </output>
478
+ </operation>
479
+
480
+ <operation name="set_port">
481
+ <documentation>
482
+ This method is deprecated (immediately) and should no longer be used.
483
+ Please use Management::SFlowReceiver::set_port in its stead.
484
+
485
+ Sets the listening port numbers for the specified sFlow
486
+ receivers. Defaults to the sFlow standard, which is port
487
+ 6343.
488
+
489
+ </documentation>
490
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
491
+ <input>
492
+ <soap:body
493
+ use="encoded"
494
+ namespace="urn:iControl:System/PerformanceSFlow"
495
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
496
+ </input>
497
+ <output>
498
+ <soap:body
499
+ use="encoded"
500
+ namespace="urn:iControl:System/PerformanceSFlow"
501
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
502
+ </output>
503
+ </operation>
504
+
505
+ <operation name="get_port">
506
+ <documentation>
507
+ This method is deprecated (immediately) and should no longer be used.
508
+ Please use Management::SFlowReceiver::get_port in its stead.
509
+
510
+ Gets the listening port numbers of the specified sFlow
511
+ receivers.
512
+
513
+ </documentation>
514
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
515
+ <input>
516
+ <soap:body
517
+ use="encoded"
518
+ namespace="urn:iControl:System/PerformanceSFlow"
519
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
520
+ </input>
521
+ <output>
522
+ <soap:body
523
+ use="encoded"
524
+ namespace="urn:iControl:System/PerformanceSFlow"
525
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
526
+ </output>
527
+ </operation>
528
+
529
+ <operation name="set_maximum_datagram_size">
530
+ <documentation>
531
+ This method is deprecated (immediately) and should no longer be used.
532
+ Please use Management::SFlowReceiver::set_maximum_datagram_size
533
+ in its stead.
534
+
535
+ Sets the maximum datagram size allowed by the specified
536
+ sFlow receivers, from 512 to 1500. Default is 1400.
537
+
538
+ </documentation>
539
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
540
+ <input>
541
+ <soap:body
542
+ use="encoded"
543
+ namespace="urn:iControl:System/PerformanceSFlow"
544
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
545
+ </input>
546
+ <output>
547
+ <soap:body
548
+ use="encoded"
549
+ namespace="urn:iControl:System/PerformanceSFlow"
550
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
551
+ </output>
552
+ </operation>
553
+
554
+ <operation name="get_maximum_datagram_size">
555
+ <documentation>
556
+ This method is deprecated (immediately) and should no longer be used.
557
+ Please use Management::SFlowReceiver::get_maximum_datagram_size
558
+ in its stead.
559
+
560
+ Gets the maximum datagram size allowed by the specified
561
+ sFlow receivers.
562
+
563
+ </documentation>
564
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
565
+ <input>
566
+ <soap:body
567
+ use="encoded"
568
+ namespace="urn:iControl:System/PerformanceSFlow"
569
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
570
+ </input>
571
+ <output>
572
+ <soap:body
573
+ use="encoded"
574
+ namespace="urn:iControl:System/PerformanceSFlow"
575
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
576
+ </output>
577
+ </operation>
578
+
579
+ <operation name="get_datagram_version">
580
+ <documentation>
581
+ This method is deprecated (immediately) and should no longer be used.
582
+ Please use Management::SFlowReceiver::get_datagram_version
583
+ in its stead.
584
+
585
+ Gets the sFlow Datagram versions used by the specified
586
+ sFlow receivers.
587
+
588
+ </documentation>
589
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
590
+ <input>
591
+ <soap:body
592
+ use="encoded"
593
+ namespace="urn:iControl:System/PerformanceSFlow"
594
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
595
+ </input>
596
+ <output>
597
+ <soap:body
598
+ use="encoded"
599
+ namespace="urn:iControl:System/PerformanceSFlow"
600
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
601
+ </output>
602
+ </operation>
603
+
604
+ <operation name="set_poll_interval">
605
+ <documentation>
606
+ This method is deprecated (immediately) and should no longer be used.
607
+ Please use methods in Management::SFlowGlobals interface to
608
+ set the global sFlow poll interval for data sources or use
609
+ set_sflow_poll_interval method in Networking::Interfaces,
610
+ Networking::VLAN, or LocalLB::ProfileHttp interfaces to set
611
+ the object-level sFlow poll interval. This method is a no-op.
612
+
613
+ Sets the polling intervals of the specified sFlow
614
+ receivers. This is the time period between successive
615
+ Counter Samples, in seconds. Each counter polling instance
616
+ can have its own independent polling interval. Default is
617
+ 10, but it can be set to a max of 1500.
618
+
619
+ </documentation>
620
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
621
+ <input>
622
+ <soap:body
623
+ use="encoded"
624
+ namespace="urn:iControl:System/PerformanceSFlow"
625
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
626
+ </input>
627
+ <output>
628
+ <soap:body
629
+ use="encoded"
630
+ namespace="urn:iControl:System/PerformanceSFlow"
631
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
632
+ </output>
633
+ </operation>
634
+
635
+ <operation name="get_poll_interval">
636
+ <documentation>
637
+ This method is deprecated (immediately) and should no longer be used.
638
+ Please use methods in Management::SFlowGlobals interface to
639
+ get the global sFlow poll interval for data sources or use
640
+ get_sflow_poll_interval method in Networking::Interfaces,
641
+ Networking::VLAN, or LocalLB::ProfileHttp interfaces to get
642
+ the object-level sFlow poll interval. This method will always
643
+ return 0 (zero) for each specified sFlow receiver.
644
+
645
+ Gets the polling intervals of the specified sFlow
646
+ receivers.
647
+
648
+ </documentation>
649
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
650
+ <input>
651
+ <soap:body
652
+ use="encoded"
653
+ namespace="urn:iControl:System/PerformanceSFlow"
654
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
655
+ </input>
656
+ <output>
657
+ <soap:body
658
+ use="encoded"
659
+ namespace="urn:iControl:System/PerformanceSFlow"
660
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
661
+ </output>
662
+ </operation>
663
+
664
+ <operation name="get_version">
665
+ <documentation>
666
+ This method is deprecated (immediately) and should no longer be used.
667
+ Please use Management::SFlowReceiver::get_version in its stead.
668
+
669
+ Gets the version information for this interface.
670
+
671
+ </documentation>
672
+ <soap:operation soapAction="urn:iControl:System/PerformanceSFlow"/>
673
+ <input>
674
+ <soap:body
675
+ use="encoded"
676
+ namespace="urn:iControl:System/PerformanceSFlow"
677
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
678
+ </input>
679
+ <output>
680
+ <soap:body
681
+ use="encoded"
682
+ namespace="urn:iControl:System/PerformanceSFlow"
683
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
684
+ </output>
685
+ </operation>
686
+ </binding>
687
+
688
+ <!-- service -->
689
+
690
+ <service name="System.PerformanceSFlow">
691
+ <documentation>
692
+ *IMPORTANT* This interface is deprecated (immediately).
693
+ Please use Management::SFlowReceiver in its stead.
694
+
695
+ The Performance sFlow interface implements the sFlow monitoring
696
+ standard. The monitoring has two major components: Packet Flow
697
+ Sampling, a random selection of a fraction of the Packet Flows
698
+ observed at a data source, and Counter Sampling, a periodic
699
+ sampling or polling of counters associated with a data
700
+ source. Samples are sent out, as soon as they are taken, with
701
+ at most a second of intentional delay, to offline sFlow
702
+ receivers, through UDP datagrams. It is the responsibility of
703
+ receivers to maintain the collected data, in any proprietary
704
+ format. sFlow analyzers, which understand the receivers or
705
+ their storage format, could be used to analyze the collected
706
+ data, to represent network usage, over a period of time.
707
+
708
+ This interface allows you to configure one or more sFlow
709
+ receivers, by providing the IPv4 or IPv6 address and port on
710
+ which they are listening, along with maximum datagram size and
711
+ datagram revision they support. One or more data sources can be
712
+ selected to monitor for counter/packet-flow sampling along with
713
+ sampling rate. Samples would start to flow to the offline
714
+ receivers at a rate less than or equal to the set sampling
715
+ rate.
716
+
717
+ </documentation>
718
+ <port name="System.PerformanceSFlowPort" binding="tns:System.PerformanceSFlowBinding">
719
+ <soap:address location="https://url_to_service"/>
720
+ </port>
721
+ </service>
722
+ </definitions>