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,1107 @@
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="Networking.BWControllerPolicy"
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.ULongSequenceSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ULongSequence[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:complexType name="Common.ULong64">
32
+ <xsd:sequence>
33
+ <xsd:element name="high" type="xsd:long"/>
34
+ <xsd:element name="low" type="xsd:long"/>
35
+ </xsd:sequence>
36
+ </xsd:complexType>
37
+ <xsd:simpleType name="Common.EnabledState">
38
+ <xsd:restriction base="xsd:string">
39
+ <xsd:enumeration value="STATE_DISABLED">
40
+ <xsd:annotation>
41
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
42
+ </xsd:annotation>
43
+ </xsd:enumeration>
44
+ <xsd:enumeration value="STATE_ENABLED">
45
+ <xsd:annotation>
46
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
47
+ </xsd:annotation>
48
+ </xsd:enumeration>
49
+ </xsd:restriction>
50
+ </xsd:simpleType>
51
+ <xsd:complexType name="Common.StringSequence">
52
+ <xsd:complexContent>
53
+ <xsd:restriction base='SOAP-ENC:Array'>
54
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
55
+ </xsd:restriction>
56
+ </xsd:complexContent>
57
+ </xsd:complexType>
58
+ <xsd:simpleType name="Common.UnitType">
59
+ <xsd:restriction base="xsd:string">
60
+ <xsd:enumeration value="UNIT_UNKNOWN">
61
+ <xsd:annotation>
62
+ <xsd:documentation>UNIT_UNKNOWN</xsd:documentation>
63
+ </xsd:annotation>
64
+ </xsd:enumeration>
65
+ <xsd:enumeration value="UNIT_BPS">
66
+ <xsd:annotation>
67
+ <xsd:documentation>UNIT_BPS</xsd:documentation>
68
+ </xsd:annotation>
69
+ </xsd:enumeration>
70
+ <xsd:enumeration value="UNIT_KBPS">
71
+ <xsd:annotation>
72
+ <xsd:documentation>UNIT_KBPS</xsd:documentation>
73
+ </xsd:annotation>
74
+ </xsd:enumeration>
75
+ <xsd:enumeration value="UNIT_MBPS">
76
+ <xsd:annotation>
77
+ <xsd:documentation>UNIT_MBPS</xsd:documentation>
78
+ </xsd:annotation>
79
+ </xsd:enumeration>
80
+ <xsd:enumeration value="UNIT_GBPS">
81
+ <xsd:annotation>
82
+ <xsd:documentation>UNIT_GBPS</xsd:documentation>
83
+ </xsd:annotation>
84
+ </xsd:enumeration>
85
+ </xsd:restriction>
86
+ </xsd:simpleType>
87
+ <xsd:complexType name="Common.ULongSequence">
88
+ <xsd:complexContent>
89
+ <xsd:restriction base='SOAP-ENC:Array'>
90
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
91
+ </xsd:restriction>
92
+ </xsd:complexContent>
93
+ </xsd:complexType>
94
+ <xsd:complexType name="Common.RateUnitSequence">
95
+ <xsd:complexContent>
96
+ <xsd:restriction base='SOAP-ENC:Array'>
97
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.RateUnit[]'/>
98
+ </xsd:restriction>
99
+ </xsd:complexContent>
100
+ </xsd:complexType>
101
+ <xsd:complexType name="Common.StringSequenceSequence">
102
+ <xsd:complexContent>
103
+ <xsd:restriction base='SOAP-ENC:Array'>
104
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
105
+ </xsd:restriction>
106
+ </xsd:complexContent>
107
+ </xsd:complexType>
108
+ <xsd:complexType name="Common.RateUnit">
109
+ <xsd:sequence>
110
+ <xsd:element name="rate" type="xsd:long"/>
111
+ <xsd:element name="unit" type="tns:Common.UnitType"/>
112
+ <xsd:element name="use64" type="xsd:boolean"/>
113
+ <xsd:element name="rate64" type="tns:Common.ULong64"/>
114
+ </xsd:sequence>
115
+ </xsd:complexType>
116
+ <xsd:complexType name="Common.EnabledStateSequence">
117
+ <xsd:complexContent>
118
+ <xsd:restriction base='SOAP-ENC:Array'>
119
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
120
+ </xsd:restriction>
121
+ </xsd:complexContent>
122
+ </xsd:complexType>
123
+ <xsd:complexType name="Common.RateUnitSequenceSequence">
124
+ <xsd:complexContent>
125
+ <xsd:restriction base='SOAP-ENC:Array'>
126
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.RateUnitSequence[]'/>
127
+ </xsd:restriction>
128
+ </xsd:complexContent>
129
+ </xsd:complexType>
130
+ </xsd:schema>
131
+ </types>
132
+
133
+ <!-- message -->
134
+
135
+ <message name="Networking.BWControllerPolicy.get_listRequest">
136
+ </message>
137
+ <message name="Networking.BWControllerPolicy.get_listResponse">
138
+ <part name="return" type="tns:Common.StringSequence"/>
139
+ </message>
140
+
141
+ <message name="Networking.BWControllerPolicy.createRequest">
142
+ <part name="policies" type="tns:Common.StringSequence"/>
143
+ <part name="rates" type="tns:Common.RateUnitSequence"/>
144
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
145
+ <part name="user_rates" type="tns:Common.RateUnitSequence"/>
146
+ </message>
147
+ <message name="Networking.BWControllerPolicy.createResponse">
148
+ </message>
149
+
150
+ <message name="Networking.BWControllerPolicy.delete_policyRequest">
151
+ <part name="policies" type="tns:Common.StringSequence"/>
152
+ </message>
153
+ <message name="Networking.BWControllerPolicy.delete_policyResponse">
154
+ </message>
155
+
156
+ <message name="Networking.BWControllerPolicy.delete_all_policiesRequest">
157
+ </message>
158
+ <message name="Networking.BWControllerPolicy.delete_all_policiesResponse">
159
+ </message>
160
+
161
+ <message name="Networking.BWControllerPolicy.set_descriptionRequest">
162
+ <part name="policies" type="tns:Common.StringSequence"/>
163
+ <part name="descriptions" type="tns:Common.StringSequence"/>
164
+ </message>
165
+ <message name="Networking.BWControllerPolicy.set_descriptionResponse">
166
+ </message>
167
+
168
+ <message name="Networking.BWControllerPolicy.get_descriptionRequest">
169
+ <part name="policies" type="tns:Common.StringSequence"/>
170
+ </message>
171
+ <message name="Networking.BWControllerPolicy.get_descriptionResponse">
172
+ <part name="return" type="tns:Common.StringSequence"/>
173
+ </message>
174
+
175
+ <message name="Networking.BWControllerPolicy.get_dynamic_stateRequest">
176
+ <part name="policies" type="tns:Common.StringSequence"/>
177
+ </message>
178
+ <message name="Networking.BWControllerPolicy.get_dynamic_stateResponse">
179
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
180
+ </message>
181
+
182
+ <message name="Networking.BWControllerPolicy.set_ip_tosRequest">
183
+ <part name="policies" type="tns:Common.StringSequence"/>
184
+ <part name="values" type="tns:Common.ULongSequence"/>
185
+ </message>
186
+ <message name="Networking.BWControllerPolicy.set_ip_tosResponse">
187
+ </message>
188
+
189
+ <message name="Networking.BWControllerPolicy.get_ip_tosRequest">
190
+ <part name="policies" type="tns:Common.StringSequence"/>
191
+ </message>
192
+ <message name="Networking.BWControllerPolicy.get_ip_tosResponse">
193
+ <part name="return" type="tns:Common.ULongSequence"/>
194
+ </message>
195
+
196
+ <message name="Networking.BWControllerPolicy.set_link_qosRequest">
197
+ <part name="policies" type="tns:Common.StringSequence"/>
198
+ <part name="values" type="tns:Common.ULongSequence"/>
199
+ </message>
200
+ <message name="Networking.BWControllerPolicy.set_link_qosResponse">
201
+ </message>
202
+
203
+ <message name="Networking.BWControllerPolicy.get_link_qosRequest">
204
+ <part name="policies" type="tns:Common.StringSequence"/>
205
+ </message>
206
+ <message name="Networking.BWControllerPolicy.get_link_qosResponse">
207
+ <part name="return" type="tns:Common.ULongSequence"/>
208
+ </message>
209
+
210
+ <message name="Networking.BWControllerPolicy.set_maximum_rateRequest">
211
+ <part name="policies" type="tns:Common.StringSequence"/>
212
+ <part name="rates" type="tns:Common.RateUnitSequence"/>
213
+ </message>
214
+ <message name="Networking.BWControllerPolicy.set_maximum_rateResponse">
215
+ </message>
216
+
217
+ <message name="Networking.BWControllerPolicy.get_maximum_rateRequest">
218
+ <part name="policies" type="tns:Common.StringSequence"/>
219
+ </message>
220
+ <message name="Networking.BWControllerPolicy.get_maximum_rateResponse">
221
+ <part name="return" type="tns:Common.RateUnitSequence"/>
222
+ </message>
223
+
224
+ <message name="Networking.BWControllerPolicy.set_maximum_user_rateRequest">
225
+ <part name="policies" type="tns:Common.StringSequence"/>
226
+ <part name="rates" type="tns:Common.RateUnitSequence"/>
227
+ </message>
228
+ <message name="Networking.BWControllerPolicy.set_maximum_user_rateResponse">
229
+ </message>
230
+
231
+ <message name="Networking.BWControllerPolicy.get_maximum_user_rateRequest">
232
+ <part name="policies" type="tns:Common.StringSequence"/>
233
+ </message>
234
+ <message name="Networking.BWControllerPolicy.get_maximum_user_rateResponse">
235
+ <part name="return" type="tns:Common.RateUnitSequence"/>
236
+ </message>
237
+
238
+ <message name="Networking.BWControllerPolicy.get_categoryRequest">
239
+ <part name="policies" type="tns:Common.StringSequence"/>
240
+ </message>
241
+ <message name="Networking.BWControllerPolicy.get_categoryResponse">
242
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
243
+ </message>
244
+
245
+ <message name="Networking.BWControllerPolicy.add_category_maximum_rateRequest">
246
+ <part name="policies" type="tns:Common.StringSequence"/>
247
+ <part name="categories" type="tns:Common.StringSequenceSequence"/>
248
+ <part name="rates" type="tns:Common.RateUnitSequenceSequence"/>
249
+ </message>
250
+ <message name="Networking.BWControllerPolicy.add_category_maximum_rateResponse">
251
+ </message>
252
+
253
+ <message name="Networking.BWControllerPolicy.add_category_maximum_percentageRequest">
254
+ <part name="policies" type="tns:Common.StringSequence"/>
255
+ <part name="categories" type="tns:Common.StringSequenceSequence"/>
256
+ <part name="percentages" type="tns:Common.ULongSequenceSequence"/>
257
+ </message>
258
+ <message name="Networking.BWControllerPolicy.add_category_maximum_percentageResponse">
259
+ </message>
260
+
261
+ <message name="Networking.BWControllerPolicy.remove_categoryRequest">
262
+ <part name="policies" type="tns:Common.StringSequence"/>
263
+ <part name="categories" type="tns:Common.StringSequenceSequence"/>
264
+ </message>
265
+ <message name="Networking.BWControllerPolicy.remove_categoryResponse">
266
+ </message>
267
+
268
+ <message name="Networking.BWControllerPolicy.remove_all_categoriesRequest">
269
+ <part name="policies" type="tns:Common.StringSequence"/>
270
+ </message>
271
+ <message name="Networking.BWControllerPolicy.remove_all_categoriesResponse">
272
+ </message>
273
+
274
+ <message name="Networking.BWControllerPolicy.set_category_maximum_rateRequest">
275
+ <part name="policies" type="tns:Common.StringSequence"/>
276
+ <part name="categories" type="tns:Common.StringSequenceSequence"/>
277
+ <part name="rates" type="tns:Common.RateUnitSequenceSequence"/>
278
+ </message>
279
+ <message name="Networking.BWControllerPolicy.set_category_maximum_rateResponse">
280
+ </message>
281
+
282
+ <message name="Networking.BWControllerPolicy.get_category_maximum_rateRequest">
283
+ <part name="policies" type="tns:Common.StringSequence"/>
284
+ <part name="categories" type="tns:Common.StringSequenceSequence"/>
285
+ </message>
286
+ <message name="Networking.BWControllerPolicy.get_category_maximum_rateResponse">
287
+ <part name="return" type="tns:Common.RateUnitSequenceSequence"/>
288
+ </message>
289
+
290
+ <message name="Networking.BWControllerPolicy.set_category_maximum_percentageRequest">
291
+ <part name="policies" type="tns:Common.StringSequence"/>
292
+ <part name="categories" type="tns:Common.StringSequenceSequence"/>
293
+ <part name="percentages" type="tns:Common.ULongSequenceSequence"/>
294
+ </message>
295
+ <message name="Networking.BWControllerPolicy.set_category_maximum_percentageResponse">
296
+ </message>
297
+
298
+ <message name="Networking.BWControllerPolicy.get_category_maximum_percentageRequest">
299
+ <part name="policies" type="tns:Common.StringSequence"/>
300
+ <part name="categories" type="tns:Common.StringSequenceSequence"/>
301
+ </message>
302
+ <message name="Networking.BWControllerPolicy.get_category_maximum_percentageResponse">
303
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
304
+ </message>
305
+
306
+ <message name="Networking.BWControllerPolicy.get_versionRequest">
307
+ </message>
308
+ <message name="Networking.BWControllerPolicy.get_versionResponse">
309
+ <part name="return" type="xsd:string"/>
310
+ </message>
311
+
312
+ <!-- portType -->
313
+
314
+ <portType name="Networking.BWControllerPolicyPortType">
315
+ <operation name="get_list">
316
+ <documentation>
317
+ Gets the names of all Bandwidth Controller policies.
318
+
319
+ </documentation>
320
+ <input message="tns:Networking.BWControllerPolicy.get_listRequest"/>
321
+ <output message="tns:Networking.BWControllerPolicy.get_listResponse"/>
322
+ </operation>
323
+ <operation name="create">
324
+ <documentation>
325
+ Creates a set of Bandwidth Controller policies.
326
+
327
+ </documentation>
328
+ <input message="tns:Networking.BWControllerPolicy.createRequest"/>
329
+ <output message="tns:Networking.BWControllerPolicy.createResponse"/>
330
+ </operation>
331
+ <operation name="delete_policy">
332
+ <documentation>
333
+ Deletes a set of Bandwidth Controller policies.
334
+
335
+ </documentation>
336
+ <input message="tns:Networking.BWControllerPolicy.delete_policyRequest"/>
337
+ <output message="tns:Networking.BWControllerPolicy.delete_policyResponse"/>
338
+ </operation>
339
+ <operation name="delete_all_policies">
340
+ <documentation>
341
+ Deletes all Bandwidth Controller policies.
342
+
343
+ </documentation>
344
+ <input message="tns:Networking.BWControllerPolicy.delete_all_policiesRequest"/>
345
+ <output message="tns:Networking.BWControllerPolicy.delete_all_policiesResponse"/>
346
+ </operation>
347
+ <operation name="set_description">
348
+ <documentation>
349
+ Sets the descriptions for the specified Bandwidth Controller policies.
350
+ This is an arbitrary field which can be used for any purpose.
351
+
352
+ </documentation>
353
+ <input message="tns:Networking.BWControllerPolicy.set_descriptionRequest"/>
354
+ <output message="tns:Networking.BWControllerPolicy.set_descriptionResponse"/>
355
+ </operation>
356
+ <operation name="get_description">
357
+ <documentation>
358
+ Gets the descriptions for the specified Bandwidth Controller policies.
359
+
360
+ </documentation>
361
+ <input message="tns:Networking.BWControllerPolicy.get_descriptionRequest"/>
362
+ <output message="tns:Networking.BWControllerPolicy.get_descriptionResponse"/>
363
+ </operation>
364
+ <operation name="get_dynamic_state">
365
+ <documentation>
366
+ Gets the dynamic states of the specified Bandwidth Controller policies.
367
+
368
+ </documentation>
369
+ <input message="tns:Networking.BWControllerPolicy.get_dynamic_stateRequest"/>
370
+ <output message="tns:Networking.BWControllerPolicy.get_dynamic_stateResponse"/>
371
+ </operation>
372
+ <operation name="set_ip_tos">
373
+ <documentation>
374
+ Sets the IP-TOS value for the specified Bandwidth Controller policies.
375
+ If set then all non-conforming Layer 3 packets are set with this value.
376
+ A non-conforming packet is one which exceeds the rate limit of
377
+ the configured Bandwidth policy. A value of 65535 means it's a pass
378
+ through and all the Layer 3 packets are passed as seen by the Bandwidth
379
+ Controller.
380
+
381
+ </documentation>
382
+ <input message="tns:Networking.BWControllerPolicy.set_ip_tosRequest"/>
383
+ <output message="tns:Networking.BWControllerPolicy.set_ip_tosResponse"/>
384
+ </operation>
385
+ <operation name="get_ip_tos">
386
+ <documentation>
387
+ Gets the IP-TOS value for the specified Bandwidth Controller policies.
388
+
389
+ </documentation>
390
+ <input message="tns:Networking.BWControllerPolicy.get_ip_tosRequest"/>
391
+ <output message="tns:Networking.BWControllerPolicy.get_ip_tosResponse"/>
392
+ </operation>
393
+ <operation name="set_link_qos">
394
+ <documentation>
395
+ Sets the Link-QOS for the specified Bandwidth Controller policies.
396
+ All non-conforming Layer 2 packets are set with this value.
397
+ A non-conforming packet is one which exceeds the rate limit of
398
+ the configured Bandwidth policy. A value of 65535 means it's a
399
+ pass through and all the Layer 2 packets are passed as seen by
400
+ the Bandwidth Controller.
401
+
402
+ </documentation>
403
+ <input message="tns:Networking.BWControllerPolicy.set_link_qosRequest"/>
404
+ <output message="tns:Networking.BWControllerPolicy.set_link_qosResponse"/>
405
+ </operation>
406
+ <operation name="get_link_qos">
407
+ <documentation>
408
+ Gets the Link-QOS for the specified Bandwidth Controller policies.
409
+
410
+ </documentation>
411
+ <input message="tns:Networking.BWControllerPolicy.get_link_qosRequest"/>
412
+ <output message="tns:Networking.BWControllerPolicy.get_link_qosResponse"/>
413
+ </operation>
414
+ <operation name="set_maximum_rate">
415
+ <documentation>
416
+ Sets the maximum rate for the specified Bandwidth Controller policies.
417
+ Maximum rates is maximum bandwidth allowed for all the flows going
418
+ going through this policy. Maximum rates value should be between
419
+ 1000000bps and 320000000000 bps.
420
+
421
+ </documentation>
422
+ <input message="tns:Networking.BWControllerPolicy.set_maximum_rateRequest"/>
423
+ <output message="tns:Networking.BWControllerPolicy.set_maximum_rateResponse"/>
424
+ </operation>
425
+ <operation name="get_maximum_rate">
426
+ <documentation>
427
+ Gets the maximum rate for the specified Bandwidth Controller policies.
428
+
429
+ </documentation>
430
+ <input message="tns:Networking.BWControllerPolicy.get_maximum_rateRequest"/>
431
+ <output message="tns:Networking.BWControllerPolicy.get_maximum_rateResponse"/>
432
+ </operation>
433
+ <operation name="set_maximum_user_rate">
434
+ <documentation>
435
+ Sets the maximum user rate for the specified Bandwidth Controller policies.
436
+ Maximum user rates is maximum bandwidth allowed for all the flows
437
+ going through this dynamically created instance of the Bandwidth Controller
438
+ policy. Maximum user rate value should be between 5000 bps and 2000000000 bps.
439
+ Maximum user rate cannot be higher than maximum rate specified for that
440
+ Bandwidth Controller policy.
441
+
442
+ </documentation>
443
+ <input message="tns:Networking.BWControllerPolicy.set_maximum_user_rateRequest"/>
444
+ <output message="tns:Networking.BWControllerPolicy.set_maximum_user_rateResponse"/>
445
+ </operation>
446
+ <operation name="get_maximum_user_rate">
447
+ <documentation>
448
+ Gets the maximum user rate for the specified Bandwidth Controller policies.
449
+
450
+ </documentation>
451
+ <input message="tns:Networking.BWControllerPolicy.get_maximum_user_rateRequest"/>
452
+ <output message="tns:Networking.BWControllerPolicy.get_maximum_user_rateResponse"/>
453
+ </operation>
454
+ <operation name="get_category">
455
+ <documentation>
456
+ Gets the names of all Bandwidth Controller policy categories.
457
+ Categories is a sub-policy of dynamically created instances
458
+ from a dynamic enabled policy.
459
+
460
+ </documentation>
461
+ <input message="tns:Networking.BWControllerPolicy.get_categoryRequest"/>
462
+ <output message="tns:Networking.BWControllerPolicy.get_categoryResponse"/>
463
+ </operation>
464
+ <operation name="add_category_maximum_rate">
465
+ <documentation>
466
+ Creates a set of Bandwidth Controller policy categories with the
467
+ specified maximum rates. Categories is a sub-policy of dynamically
468
+ created instances from a dynamic enabled policies. Maximum rates
469
+ cannot exceed the maximum user rate of the parent Bandwidth
470
+ Controller policy.
471
+
472
+ </documentation>
473
+ <input message="tns:Networking.BWControllerPolicy.add_category_maximum_rateRequest"/>
474
+ <output message="tns:Networking.BWControllerPolicy.add_category_maximum_rateResponse"/>
475
+ </operation>
476
+ <operation name="add_category_maximum_percentage">
477
+ <documentation>
478
+ Creates a set of Bandwidth Controller policy categories with the specified
479
+ maximum rate percentages. Categories is a sub-policy of dynamically
480
+ created instances from a dynamic enabled policies. Maximum rate percentage
481
+ is the maximum percentage of maximum user rate of dynamically enabled
482
+ policy.
483
+
484
+ </documentation>
485
+ <input message="tns:Networking.BWControllerPolicy.add_category_maximum_percentageRequest"/>
486
+ <output message="tns:Networking.BWControllerPolicy.add_category_maximum_percentageResponse"/>
487
+ </operation>
488
+ <operation name="remove_category">
489
+ <documentation>
490
+ Remove categories of the specified Bandwidth Controller policy.
491
+
492
+ </documentation>
493
+ <input message="tns:Networking.BWControllerPolicy.remove_categoryRequest"/>
494
+ <output message="tns:Networking.BWControllerPolicy.remove_categoryResponse"/>
495
+ </operation>
496
+ <operation name="remove_all_categories">
497
+ <documentation>
498
+ Remove all categories of the specified Bandwidth Controller policy.
499
+
500
+ </documentation>
501
+ <input message="tns:Networking.BWControllerPolicy.remove_all_categoriesRequest"/>
502
+ <output message="tns:Networking.BWControllerPolicy.remove_all_categoriesResponse"/>
503
+ </operation>
504
+ <operation name="set_category_maximum_rate">
505
+ <documentation>
506
+ Sets the Bandwidth Controller policy categories with the specified
507
+ specified maximum rates. Maximum rate is the maximum bandwidth allowed for
508
+ all the flows going through this policy category. Maximum rates
509
+ cannot exceed the maximum user rate of the parent Bandwidth
510
+ Controller policy.
511
+
512
+ </documentation>
513
+ <input message="tns:Networking.BWControllerPolicy.set_category_maximum_rateRequest"/>
514
+ <output message="tns:Networking.BWControllerPolicy.set_category_maximum_rateResponse"/>
515
+ </operation>
516
+ <operation name="get_category_maximum_rate">
517
+ <documentation>
518
+ Gets the maximum rates of the Bandwidth Controller policy categories.
519
+
520
+ </documentation>
521
+ <input message="tns:Networking.BWControllerPolicy.get_category_maximum_rateRequest"/>
522
+ <output message="tns:Networking.BWControllerPolicy.get_category_maximum_rateResponse"/>
523
+ </operation>
524
+ <operation name="set_category_maximum_percentage">
525
+ <documentation>
526
+ Sets a set of Bandwidth Controller policy categories with specified rate
527
+ percentages. Rate percentages is maximum percentage of the maximum
528
+ user rate allowed for all the flows going through this Bandwidth Controller
529
+ policy category.
530
+
531
+ </documentation>
532
+ <input message="tns:Networking.BWControllerPolicy.set_category_maximum_percentageRequest"/>
533
+ <output message="tns:Networking.BWControllerPolicy.set_category_maximum_percentageResponse"/>
534
+ </operation>
535
+ <operation name="get_category_maximum_percentage">
536
+ <documentation>
537
+ Gets the maximum percentages of Bandwidth Controller policy categories.
538
+
539
+ </documentation>
540
+ <input message="tns:Networking.BWControllerPolicy.get_category_maximum_percentageRequest"/>
541
+ <output message="tns:Networking.BWControllerPolicy.get_category_maximum_percentageResponse"/>
542
+ </operation>
543
+ <operation name="get_version">
544
+ <documentation>
545
+ Gets the version information for this interface.
546
+
547
+ </documentation>
548
+ <input message="tns:Networking.BWControllerPolicy.get_versionRequest"/>
549
+ <output message="tns:Networking.BWControllerPolicy.get_versionResponse"/>
550
+ </operation>
551
+ </portType>
552
+
553
+ <!-- binding -->
554
+
555
+ <binding name="Networking.BWControllerPolicyBinding" type="tns:Networking.BWControllerPolicyPortType">
556
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
557
+ <operation name="get_list">
558
+ <documentation>
559
+ Gets the names of all Bandwidth Controller policies.
560
+
561
+ </documentation>
562
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
563
+ <input>
564
+ <soap:body
565
+ use="encoded"
566
+ namespace="urn:iControl:Networking/BWControllerPolicy"
567
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
568
+ </input>
569
+ <output>
570
+ <soap:body
571
+ use="encoded"
572
+ namespace="urn:iControl:Networking/BWControllerPolicy"
573
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
574
+ </output>
575
+ </operation>
576
+
577
+ <operation name="create">
578
+ <documentation>
579
+ Creates a set of Bandwidth Controller policies.
580
+
581
+ </documentation>
582
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
583
+ <input>
584
+ <soap:body
585
+ use="encoded"
586
+ namespace="urn:iControl:Networking/BWControllerPolicy"
587
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
588
+ </input>
589
+ <output>
590
+ <soap:body
591
+ use="encoded"
592
+ namespace="urn:iControl:Networking/BWControllerPolicy"
593
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
594
+ </output>
595
+ </operation>
596
+
597
+ <operation name="delete_policy">
598
+ <documentation>
599
+ Deletes a set of Bandwidth Controller policies.
600
+
601
+ </documentation>
602
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
603
+ <input>
604
+ <soap:body
605
+ use="encoded"
606
+ namespace="urn:iControl:Networking/BWControllerPolicy"
607
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
608
+ </input>
609
+ <output>
610
+ <soap:body
611
+ use="encoded"
612
+ namespace="urn:iControl:Networking/BWControllerPolicy"
613
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
614
+ </output>
615
+ </operation>
616
+
617
+ <operation name="delete_all_policies">
618
+ <documentation>
619
+ Deletes all Bandwidth Controller policies.
620
+
621
+ </documentation>
622
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
623
+ <input>
624
+ <soap:body
625
+ use="encoded"
626
+ namespace="urn:iControl:Networking/BWControllerPolicy"
627
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
628
+ </input>
629
+ <output>
630
+ <soap:body
631
+ use="encoded"
632
+ namespace="urn:iControl:Networking/BWControllerPolicy"
633
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
634
+ </output>
635
+ </operation>
636
+
637
+ <operation name="set_description">
638
+ <documentation>
639
+ Sets the descriptions for the specified Bandwidth Controller policies.
640
+ This is an arbitrary field which can be used for any purpose.
641
+
642
+ </documentation>
643
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
644
+ <input>
645
+ <soap:body
646
+ use="encoded"
647
+ namespace="urn:iControl:Networking/BWControllerPolicy"
648
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
649
+ </input>
650
+ <output>
651
+ <soap:body
652
+ use="encoded"
653
+ namespace="urn:iControl:Networking/BWControllerPolicy"
654
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
655
+ </output>
656
+ </operation>
657
+
658
+ <operation name="get_description">
659
+ <documentation>
660
+ Gets the descriptions for the specified Bandwidth Controller policies.
661
+
662
+ </documentation>
663
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
664
+ <input>
665
+ <soap:body
666
+ use="encoded"
667
+ namespace="urn:iControl:Networking/BWControllerPolicy"
668
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
669
+ </input>
670
+ <output>
671
+ <soap:body
672
+ use="encoded"
673
+ namespace="urn:iControl:Networking/BWControllerPolicy"
674
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
675
+ </output>
676
+ </operation>
677
+
678
+ <operation name="get_dynamic_state">
679
+ <documentation>
680
+ Gets the dynamic states of the specified Bandwidth Controller policies.
681
+
682
+ </documentation>
683
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
684
+ <input>
685
+ <soap:body
686
+ use="encoded"
687
+ namespace="urn:iControl:Networking/BWControllerPolicy"
688
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
689
+ </input>
690
+ <output>
691
+ <soap:body
692
+ use="encoded"
693
+ namespace="urn:iControl:Networking/BWControllerPolicy"
694
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
695
+ </output>
696
+ </operation>
697
+
698
+ <operation name="set_ip_tos">
699
+ <documentation>
700
+ Sets the IP-TOS value for the specified Bandwidth Controller policies.
701
+ If set then all non-conforming Layer 3 packets are set with this value.
702
+ A non-conforming packet is one which exceeds the rate limit of
703
+ the configured Bandwidth policy. A value of 65535 means it's a pass
704
+ through and all the Layer 3 packets are passed as seen by the Bandwidth
705
+ Controller.
706
+
707
+ </documentation>
708
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
709
+ <input>
710
+ <soap:body
711
+ use="encoded"
712
+ namespace="urn:iControl:Networking/BWControllerPolicy"
713
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
714
+ </input>
715
+ <output>
716
+ <soap:body
717
+ use="encoded"
718
+ namespace="urn:iControl:Networking/BWControllerPolicy"
719
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
720
+ </output>
721
+ </operation>
722
+
723
+ <operation name="get_ip_tos">
724
+ <documentation>
725
+ Gets the IP-TOS value for the specified Bandwidth Controller policies.
726
+
727
+ </documentation>
728
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
729
+ <input>
730
+ <soap:body
731
+ use="encoded"
732
+ namespace="urn:iControl:Networking/BWControllerPolicy"
733
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
734
+ </input>
735
+ <output>
736
+ <soap:body
737
+ use="encoded"
738
+ namespace="urn:iControl:Networking/BWControllerPolicy"
739
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
740
+ </output>
741
+ </operation>
742
+
743
+ <operation name="set_link_qos">
744
+ <documentation>
745
+ Sets the Link-QOS for the specified Bandwidth Controller policies.
746
+ All non-conforming Layer 2 packets are set with this value.
747
+ A non-conforming packet is one which exceeds the rate limit of
748
+ the configured Bandwidth policy. A value of 65535 means it's a
749
+ pass through and all the Layer 2 packets are passed as seen by
750
+ the Bandwidth Controller.
751
+
752
+ </documentation>
753
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
754
+ <input>
755
+ <soap:body
756
+ use="encoded"
757
+ namespace="urn:iControl:Networking/BWControllerPolicy"
758
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
759
+ </input>
760
+ <output>
761
+ <soap:body
762
+ use="encoded"
763
+ namespace="urn:iControl:Networking/BWControllerPolicy"
764
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
765
+ </output>
766
+ </operation>
767
+
768
+ <operation name="get_link_qos">
769
+ <documentation>
770
+ Gets the Link-QOS for the specified Bandwidth Controller policies.
771
+
772
+ </documentation>
773
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
774
+ <input>
775
+ <soap:body
776
+ use="encoded"
777
+ namespace="urn:iControl:Networking/BWControllerPolicy"
778
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
779
+ </input>
780
+ <output>
781
+ <soap:body
782
+ use="encoded"
783
+ namespace="urn:iControl:Networking/BWControllerPolicy"
784
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
785
+ </output>
786
+ </operation>
787
+
788
+ <operation name="set_maximum_rate">
789
+ <documentation>
790
+ Sets the maximum rate for the specified Bandwidth Controller policies.
791
+ Maximum rates is maximum bandwidth allowed for all the flows going
792
+ going through this policy. Maximum rates value should be between
793
+ 1000000bps and 320000000000 bps.
794
+
795
+ </documentation>
796
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
797
+ <input>
798
+ <soap:body
799
+ use="encoded"
800
+ namespace="urn:iControl:Networking/BWControllerPolicy"
801
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
802
+ </input>
803
+ <output>
804
+ <soap:body
805
+ use="encoded"
806
+ namespace="urn:iControl:Networking/BWControllerPolicy"
807
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
808
+ </output>
809
+ </operation>
810
+
811
+ <operation name="get_maximum_rate">
812
+ <documentation>
813
+ Gets the maximum rate for the specified Bandwidth Controller policies.
814
+
815
+ </documentation>
816
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
817
+ <input>
818
+ <soap:body
819
+ use="encoded"
820
+ namespace="urn:iControl:Networking/BWControllerPolicy"
821
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
822
+ </input>
823
+ <output>
824
+ <soap:body
825
+ use="encoded"
826
+ namespace="urn:iControl:Networking/BWControllerPolicy"
827
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
828
+ </output>
829
+ </operation>
830
+
831
+ <operation name="set_maximum_user_rate">
832
+ <documentation>
833
+ Sets the maximum user rate for the specified Bandwidth Controller policies.
834
+ Maximum user rates is maximum bandwidth allowed for all the flows
835
+ going through this dynamically created instance of the Bandwidth Controller
836
+ policy. Maximum user rate value should be between 5000 bps and 2000000000 bps.
837
+ Maximum user rate cannot be higher than maximum rate specified for that
838
+ Bandwidth Controller policy.
839
+
840
+ </documentation>
841
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
842
+ <input>
843
+ <soap:body
844
+ use="encoded"
845
+ namespace="urn:iControl:Networking/BWControllerPolicy"
846
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
847
+ </input>
848
+ <output>
849
+ <soap:body
850
+ use="encoded"
851
+ namespace="urn:iControl:Networking/BWControllerPolicy"
852
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
853
+ </output>
854
+ </operation>
855
+
856
+ <operation name="get_maximum_user_rate">
857
+ <documentation>
858
+ Gets the maximum user rate for the specified Bandwidth Controller policies.
859
+
860
+ </documentation>
861
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
862
+ <input>
863
+ <soap:body
864
+ use="encoded"
865
+ namespace="urn:iControl:Networking/BWControllerPolicy"
866
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
867
+ </input>
868
+ <output>
869
+ <soap:body
870
+ use="encoded"
871
+ namespace="urn:iControl:Networking/BWControllerPolicy"
872
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
873
+ </output>
874
+ </operation>
875
+
876
+ <operation name="get_category">
877
+ <documentation>
878
+ Gets the names of all Bandwidth Controller policy categories.
879
+ Categories is a sub-policy of dynamically created instances
880
+ from a dynamic enabled policy.
881
+
882
+ </documentation>
883
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
884
+ <input>
885
+ <soap:body
886
+ use="encoded"
887
+ namespace="urn:iControl:Networking/BWControllerPolicy"
888
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
889
+ </input>
890
+ <output>
891
+ <soap:body
892
+ use="encoded"
893
+ namespace="urn:iControl:Networking/BWControllerPolicy"
894
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
895
+ </output>
896
+ </operation>
897
+
898
+ <operation name="add_category_maximum_rate">
899
+ <documentation>
900
+ Creates a set of Bandwidth Controller policy categories with the
901
+ specified maximum rates. Categories is a sub-policy of dynamically
902
+ created instances from a dynamic enabled policies. Maximum rates
903
+ cannot exceed the maximum user rate of the parent Bandwidth
904
+ Controller policy.
905
+
906
+ </documentation>
907
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
908
+ <input>
909
+ <soap:body
910
+ use="encoded"
911
+ namespace="urn:iControl:Networking/BWControllerPolicy"
912
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
913
+ </input>
914
+ <output>
915
+ <soap:body
916
+ use="encoded"
917
+ namespace="urn:iControl:Networking/BWControllerPolicy"
918
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
919
+ </output>
920
+ </operation>
921
+
922
+ <operation name="add_category_maximum_percentage">
923
+ <documentation>
924
+ Creates a set of Bandwidth Controller policy categories with the specified
925
+ maximum rate percentages. Categories is a sub-policy of dynamically
926
+ created instances from a dynamic enabled policies. Maximum rate percentage
927
+ is the maximum percentage of maximum user rate of dynamically enabled
928
+ policy.
929
+
930
+ </documentation>
931
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
932
+ <input>
933
+ <soap:body
934
+ use="encoded"
935
+ namespace="urn:iControl:Networking/BWControllerPolicy"
936
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
937
+ </input>
938
+ <output>
939
+ <soap:body
940
+ use="encoded"
941
+ namespace="urn:iControl:Networking/BWControllerPolicy"
942
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
943
+ </output>
944
+ </operation>
945
+
946
+ <operation name="remove_category">
947
+ <documentation>
948
+ Remove categories of the specified Bandwidth Controller policy.
949
+
950
+ </documentation>
951
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
952
+ <input>
953
+ <soap:body
954
+ use="encoded"
955
+ namespace="urn:iControl:Networking/BWControllerPolicy"
956
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
957
+ </input>
958
+ <output>
959
+ <soap:body
960
+ use="encoded"
961
+ namespace="urn:iControl:Networking/BWControllerPolicy"
962
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
963
+ </output>
964
+ </operation>
965
+
966
+ <operation name="remove_all_categories">
967
+ <documentation>
968
+ Remove all categories of the specified Bandwidth Controller policy.
969
+
970
+ </documentation>
971
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
972
+ <input>
973
+ <soap:body
974
+ use="encoded"
975
+ namespace="urn:iControl:Networking/BWControllerPolicy"
976
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
977
+ </input>
978
+ <output>
979
+ <soap:body
980
+ use="encoded"
981
+ namespace="urn:iControl:Networking/BWControllerPolicy"
982
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
983
+ </output>
984
+ </operation>
985
+
986
+ <operation name="set_category_maximum_rate">
987
+ <documentation>
988
+ Sets the Bandwidth Controller policy categories with the specified
989
+ specified maximum rates. Maximum rate is the maximum bandwidth allowed for
990
+ all the flows going through this policy category. Maximum rates
991
+ cannot exceed the maximum user rate of the parent Bandwidth
992
+ Controller policy.
993
+
994
+ </documentation>
995
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
996
+ <input>
997
+ <soap:body
998
+ use="encoded"
999
+ namespace="urn:iControl:Networking/BWControllerPolicy"
1000
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1001
+ </input>
1002
+ <output>
1003
+ <soap:body
1004
+ use="encoded"
1005
+ namespace="urn:iControl:Networking/BWControllerPolicy"
1006
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1007
+ </output>
1008
+ </operation>
1009
+
1010
+ <operation name="get_category_maximum_rate">
1011
+ <documentation>
1012
+ Gets the maximum rates of the Bandwidth Controller policy categories.
1013
+
1014
+ </documentation>
1015
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
1016
+ <input>
1017
+ <soap:body
1018
+ use="encoded"
1019
+ namespace="urn:iControl:Networking/BWControllerPolicy"
1020
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1021
+ </input>
1022
+ <output>
1023
+ <soap:body
1024
+ use="encoded"
1025
+ namespace="urn:iControl:Networking/BWControllerPolicy"
1026
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1027
+ </output>
1028
+ </operation>
1029
+
1030
+ <operation name="set_category_maximum_percentage">
1031
+ <documentation>
1032
+ Sets a set of Bandwidth Controller policy categories with specified rate
1033
+ percentages. Rate percentages is maximum percentage of the maximum
1034
+ user rate allowed for all the flows going through this Bandwidth Controller
1035
+ policy category.
1036
+
1037
+ </documentation>
1038
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
1039
+ <input>
1040
+ <soap:body
1041
+ use="encoded"
1042
+ namespace="urn:iControl:Networking/BWControllerPolicy"
1043
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1044
+ </input>
1045
+ <output>
1046
+ <soap:body
1047
+ use="encoded"
1048
+ namespace="urn:iControl:Networking/BWControllerPolicy"
1049
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1050
+ </output>
1051
+ </operation>
1052
+
1053
+ <operation name="get_category_maximum_percentage">
1054
+ <documentation>
1055
+ Gets the maximum percentages of Bandwidth Controller policy categories.
1056
+
1057
+ </documentation>
1058
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
1059
+ <input>
1060
+ <soap:body
1061
+ use="encoded"
1062
+ namespace="urn:iControl:Networking/BWControllerPolicy"
1063
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1064
+ </input>
1065
+ <output>
1066
+ <soap:body
1067
+ use="encoded"
1068
+ namespace="urn:iControl:Networking/BWControllerPolicy"
1069
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1070
+ </output>
1071
+ </operation>
1072
+
1073
+ <operation name="get_version">
1074
+ <documentation>
1075
+ Gets the version information for this interface.
1076
+
1077
+ </documentation>
1078
+ <soap:operation soapAction="urn:iControl:Networking/BWControllerPolicy"/>
1079
+ <input>
1080
+ <soap:body
1081
+ use="encoded"
1082
+ namespace="urn:iControl:Networking/BWControllerPolicy"
1083
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1084
+ </input>
1085
+ <output>
1086
+ <soap:body
1087
+ use="encoded"
1088
+ namespace="urn:iControl:Networking/BWControllerPolicy"
1089
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1090
+ </output>
1091
+ </operation>
1092
+ </binding>
1093
+
1094
+ <!-- service -->
1095
+
1096
+ <service name="Networking.BWControllerPolicy">
1097
+ <documentation>
1098
+ This interface configures the Bandwidth Controller policy components
1099
+ to manage the egress bandwidth per policy, per session or subscriber,
1100
+ per application and various combinations of these.
1101
+
1102
+ </documentation>
1103
+ <port name="Networking.BWControllerPolicyPort" binding="tns:Networking.BWControllerPolicyBinding">
1104
+ <soap:address location="https://url_to_service"/>
1105
+ </port>
1106
+ </service>
1107
+ </definitions>