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,953 @@
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="LocalLB.ProfileSPM"
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.BooleanSequence">
32
+ <xsd:complexContent>
33
+ <xsd:restriction base='SOAP-ENC:Array'>
34
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:boolean[]'/>
35
+ </xsd:restriction>
36
+ </xsd:complexContent>
37
+ </xsd:complexType>
38
+ <xsd:complexType name="Common.StringSequenceSequence">
39
+ <xsd:complexContent>
40
+ <xsd:restriction base='SOAP-ENC:Array'>
41
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
42
+ </xsd:restriction>
43
+ </xsd:complexContent>
44
+ </xsd:complexType>
45
+ </xsd:schema>
46
+ </types>
47
+
48
+ <!-- message -->
49
+
50
+ <message name="LocalLB.ProfileSPM.get_listRequest">
51
+ </message>
52
+ <message name="LocalLB.ProfileSPM.get_listResponse">
53
+ <part name="return" type="tns:Common.StringSequence"/>
54
+ </message>
55
+
56
+ <message name="LocalLB.ProfileSPM.createRequest">
57
+ <part name="profile_names" type="tns:Common.StringSequence"/>
58
+ </message>
59
+ <message name="LocalLB.ProfileSPM.createResponse">
60
+ </message>
61
+
62
+ <message name="LocalLB.ProfileSPM.delete_profileRequest">
63
+ <part name="profile_names" type="tns:Common.StringSequence"/>
64
+ </message>
65
+ <message name="LocalLB.ProfileSPM.delete_profileResponse">
66
+ </message>
67
+
68
+ <message name="LocalLB.ProfileSPM.delete_all_profilesRequest">
69
+ </message>
70
+ <message name="LocalLB.ProfileSPM.delete_all_profilesResponse">
71
+ </message>
72
+
73
+ <message name="LocalLB.ProfileSPM.is_base_profileRequest">
74
+ <part name="profile_names" type="tns:Common.StringSequence"/>
75
+ </message>
76
+ <message name="LocalLB.ProfileSPM.is_base_profileResponse">
77
+ <part name="return" type="tns:Common.BooleanSequence"/>
78
+ </message>
79
+
80
+ <message name="LocalLB.ProfileSPM.is_system_profileRequest">
81
+ <part name="profile_names" type="tns:Common.StringSequence"/>
82
+ </message>
83
+ <message name="LocalLB.ProfileSPM.is_system_profileResponse">
84
+ <part name="return" type="tns:Common.BooleanSequence"/>
85
+ </message>
86
+
87
+ <message name="LocalLB.ProfileSPM.set_default_profileRequest">
88
+ <part name="profile_names" type="tns:Common.StringSequence"/>
89
+ <part name="defaults" type="tns:Common.StringSequence"/>
90
+ </message>
91
+ <message name="LocalLB.ProfileSPM.set_default_profileResponse">
92
+ </message>
93
+
94
+ <message name="LocalLB.ProfileSPM.get_default_profileRequest">
95
+ <part name="profile_names" type="tns:Common.StringSequence"/>
96
+ </message>
97
+ <message name="LocalLB.ProfileSPM.get_default_profileResponse">
98
+ <part name="return" type="tns:Common.StringSequence"/>
99
+ </message>
100
+
101
+ <message name="LocalLB.ProfileSPM.get_high_precedence_global_policyRequest">
102
+ <part name="profile_names" type="tns:Common.StringSequence"/>
103
+ </message>
104
+ <message name="LocalLB.ProfileSPM.get_high_precedence_global_policyResponse">
105
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
106
+ </message>
107
+
108
+ <message name="LocalLB.ProfileSPM.add_high_precedence_global_policyRequest">
109
+ <part name="profile_names" type="tns:Common.StringSequence"/>
110
+ <part name="policies" type="tns:Common.StringSequenceSequence"/>
111
+ </message>
112
+ <message name="LocalLB.ProfileSPM.add_high_precedence_global_policyResponse">
113
+ </message>
114
+
115
+ <message name="LocalLB.ProfileSPM.remove_high_precedence_global_policyRequest">
116
+ <part name="profile_names" type="tns:Common.StringSequence"/>
117
+ <part name="policies" type="tns:Common.StringSequenceSequence"/>
118
+ </message>
119
+ <message name="LocalLB.ProfileSPM.remove_high_precedence_global_policyResponse">
120
+ </message>
121
+
122
+ <message name="LocalLB.ProfileSPM.remove_all_high_precedence_global_policiesRequest">
123
+ <part name="profile_names" type="tns:Common.StringSequence"/>
124
+ </message>
125
+ <message name="LocalLB.ProfileSPM.remove_all_high_precedence_global_policiesResponse">
126
+ </message>
127
+
128
+ <message name="LocalLB.ProfileSPM.get_low_precedence_global_policyRequest">
129
+ <part name="profile_names" type="tns:Common.StringSequence"/>
130
+ </message>
131
+ <message name="LocalLB.ProfileSPM.get_low_precedence_global_policyResponse">
132
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
133
+ </message>
134
+
135
+ <message name="LocalLB.ProfileSPM.add_low_precedence_global_policyRequest">
136
+ <part name="profile_names" type="tns:Common.StringSequence"/>
137
+ <part name="policies" type="tns:Common.StringSequenceSequence"/>
138
+ </message>
139
+ <message name="LocalLB.ProfileSPM.add_low_precedence_global_policyResponse">
140
+ </message>
141
+
142
+ <message name="LocalLB.ProfileSPM.remove_low_precedence_global_policyRequest">
143
+ <part name="profile_names" type="tns:Common.StringSequence"/>
144
+ <part name="policies" type="tns:Common.StringSequenceSequence"/>
145
+ </message>
146
+ <message name="LocalLB.ProfileSPM.remove_low_precedence_global_policyResponse">
147
+ </message>
148
+
149
+ <message name="LocalLB.ProfileSPM.remove_all_low_precedence_global_policiesRequest">
150
+ <part name="profile_names" type="tns:Common.StringSequence"/>
151
+ </message>
152
+ <message name="LocalLB.ProfileSPM.remove_all_low_precedence_global_policiesResponse">
153
+ </message>
154
+
155
+ <message name="LocalLB.ProfileSPM.get_unknown_subscriber_policyRequest">
156
+ <part name="profile_names" type="tns:Common.StringSequence"/>
157
+ </message>
158
+ <message name="LocalLB.ProfileSPM.get_unknown_subscriber_policyResponse">
159
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
160
+ </message>
161
+
162
+ <message name="LocalLB.ProfileSPM.add_unknown_subscriber_policyRequest">
163
+ <part name="profile_names" type="tns:Common.StringSequence"/>
164
+ <part name="policies" type="tns:Common.StringSequenceSequence"/>
165
+ </message>
166
+ <message name="LocalLB.ProfileSPM.add_unknown_subscriber_policyResponse">
167
+ </message>
168
+
169
+ <message name="LocalLB.ProfileSPM.remove_unknown_subscriber_policyRequest">
170
+ <part name="profile_names" type="tns:Common.StringSequence"/>
171
+ <part name="policies" type="tns:Common.StringSequenceSequence"/>
172
+ </message>
173
+ <message name="LocalLB.ProfileSPM.remove_unknown_subscriber_policyResponse">
174
+ </message>
175
+
176
+ <message name="LocalLB.ProfileSPM.remove_all_unknown_subscriber_policiesRequest">
177
+ <part name="profile_names" type="tns:Common.StringSequence"/>
178
+ </message>
179
+ <message name="LocalLB.ProfileSPM.remove_all_unknown_subscriber_policiesResponse">
180
+ </message>
181
+
182
+ <message name="LocalLB.ProfileSPM.set_descriptionRequest">
183
+ <part name="profile_names" type="tns:Common.StringSequence"/>
184
+ <part name="descriptions" type="tns:Common.StringSequence"/>
185
+ </message>
186
+ <message name="LocalLB.ProfileSPM.set_descriptionResponse">
187
+ </message>
188
+
189
+ <message name="LocalLB.ProfileSPM.get_descriptionRequest">
190
+ <part name="profile_names" type="tns:Common.StringSequence"/>
191
+ </message>
192
+ <message name="LocalLB.ProfileSPM.get_descriptionResponse">
193
+ <part name="return" type="tns:Common.StringSequence"/>
194
+ </message>
195
+
196
+ <message name="LocalLB.ProfileSPM.get_versionRequest">
197
+ </message>
198
+ <message name="LocalLB.ProfileSPM.get_versionResponse">
199
+ <part name="return" type="xsd:string"/>
200
+ </message>
201
+
202
+ <!-- portType -->
203
+
204
+ <portType name="LocalLB.ProfileSPMPortType">
205
+ <operation name="get_list">
206
+ <documentation>
207
+ Gets a list of all SPM profiles.
208
+
209
+ </documentation>
210
+ <input message="tns:LocalLB.ProfileSPM.get_listRequest"/>
211
+ <output message="tns:LocalLB.ProfileSPM.get_listResponse"/>
212
+ </operation>
213
+ <operation name="create">
214
+ <documentation>
215
+ Creates the specified SPM profiles.
216
+
217
+ </documentation>
218
+ <input message="tns:LocalLB.ProfileSPM.createRequest"/>
219
+ <output message="tns:LocalLB.ProfileSPM.createResponse"/>
220
+ </operation>
221
+ <operation name="delete_profile">
222
+ <documentation>
223
+ Deletes the specified SPM profiles.
224
+
225
+ </documentation>
226
+ <input message="tns:LocalLB.ProfileSPM.delete_profileRequest"/>
227
+ <output message="tns:LocalLB.ProfileSPM.delete_profileResponse"/>
228
+ </operation>
229
+ <operation name="delete_all_profiles">
230
+ <documentation>
231
+ Deletes all SPM profiles.
232
+
233
+ </documentation>
234
+ <input message="tns:LocalLB.ProfileSPM.delete_all_profilesRequest"/>
235
+ <output message="tns:LocalLB.ProfileSPM.delete_all_profilesResponse"/>
236
+ </operation>
237
+ <operation name="is_base_profile">
238
+ <documentation>
239
+ Determines whether the specified SPM profiles are
240
+ base profiles. A base profile sits at the base of the
241
+ profile's inheritance tree, supplying the defaults for every
242
+ profile derived from it. (See also is_system_profile).
243
+
244
+ </documentation>
245
+ <input message="tns:LocalLB.ProfileSPM.is_base_profileRequest"/>
246
+ <output message="tns:LocalLB.ProfileSPM.is_base_profileResponse"/>
247
+ </operation>
248
+ <operation name="is_system_profile">
249
+ <documentation>
250
+ Determines whether the specified SPM profiles are
251
+ system profiles. A system profile is a profile pre-configured
252
+ on the system, ready for use. Non-system profiles are
253
+ profiles created or modified by a user. Note that if a system
254
+ profile is modified, it is no longer considered a system
255
+ profile. (See also is_base_profile).
256
+
257
+ </documentation>
258
+ <input message="tns:LocalLB.ProfileSPM.is_system_profileRequest"/>
259
+ <output message="tns:LocalLB.ProfileSPM.is_system_profileResponse"/>
260
+ </operation>
261
+ <operation name="set_default_profile">
262
+ <documentation>
263
+ Sets the names of the default profiles from which the specified
264
+ profiles will derive default values for attributes.
265
+
266
+ </documentation>
267
+ <input message="tns:LocalLB.ProfileSPM.set_default_profileRequest"/>
268
+ <output message="tns:LocalLB.ProfileSPM.set_default_profileResponse"/>
269
+ </operation>
270
+ <operation name="get_default_profile">
271
+ <documentation>
272
+ Gets the names of the default profiles from which the specified
273
+ profiles will derive default values for attributes.
274
+
275
+ </documentation>
276
+ <input message="tns:LocalLB.ProfileSPM.get_default_profileRequest"/>
277
+ <output message="tns:LocalLB.ProfileSPM.get_default_profileResponse"/>
278
+ </operation>
279
+ <operation name="get_high_precedence_global_policy">
280
+ <documentation>
281
+ Gets a set of global policies with high precedence for the
282
+ specified profiles. This specifies global enforcement policies
283
+ to apply to all subscribers in parallel with the subscriber
284
+ policies. The global policy can be of high or low precedence.
285
+ If rules of this type in the global and subscriber policies
286
+ conflict, the high precedence global policy overrides the
287
+ subscriber policy.
288
+
289
+ </documentation>
290
+ <input message="tns:LocalLB.ProfileSPM.get_high_precedence_global_policyRequest"/>
291
+ <output message="tns:LocalLB.ProfileSPM.get_high_precedence_global_policyResponse"/>
292
+ </operation>
293
+ <operation name="add_high_precedence_global_policy">
294
+ <documentation>
295
+ Adds a set of global policies with high precedence for the
296
+ specified profiles.
297
+
298
+ </documentation>
299
+ <input message="tns:LocalLB.ProfileSPM.add_high_precedence_global_policyRequest"/>
300
+ <output message="tns:LocalLB.ProfileSPM.add_high_precedence_global_policyResponse"/>
301
+ </operation>
302
+ <operation name="remove_high_precedence_global_policy">
303
+ <documentation>
304
+ Removes a set of global policies with high precedence for the
305
+ specified profiles.
306
+
307
+ </documentation>
308
+ <input message="tns:LocalLB.ProfileSPM.remove_high_precedence_global_policyRequest"/>
309
+ <output message="tns:LocalLB.ProfileSPM.remove_high_precedence_global_policyResponse"/>
310
+ </operation>
311
+ <operation name="remove_all_high_precedence_global_policies">
312
+ <documentation>
313
+ Removes all global policies with high precedence for the
314
+ specified profiles.
315
+
316
+ </documentation>
317
+ <input message="tns:LocalLB.ProfileSPM.remove_all_high_precedence_global_policiesRequest"/>
318
+ <output message="tns:LocalLB.ProfileSPM.remove_all_high_precedence_global_policiesResponse"/>
319
+ </operation>
320
+ <operation name="get_low_precedence_global_policy">
321
+ <documentation>
322
+ Gets a set of global policies with low precedence for the
323
+ specified profiles. This specifies global enforcement policies
324
+ to apply to all subscribers in parallel with the subscriber
325
+ policies. The global policy can be of high or low precedence.
326
+ If rules of this type in the global and subscriber policies
327
+ conflict, the subscriber policy overrides the low precedence
328
+ global policy.
329
+
330
+ </documentation>
331
+ <input message="tns:LocalLB.ProfileSPM.get_low_precedence_global_policyRequest"/>
332
+ <output message="tns:LocalLB.ProfileSPM.get_low_precedence_global_policyResponse"/>
333
+ </operation>
334
+ <operation name="add_low_precedence_global_policy">
335
+ <documentation>
336
+ Adds a set of global policies with low precedence for the specified profiles.
337
+
338
+ </documentation>
339
+ <input message="tns:LocalLB.ProfileSPM.add_low_precedence_global_policyRequest"/>
340
+ <output message="tns:LocalLB.ProfileSPM.add_low_precedence_global_policyResponse"/>
341
+ </operation>
342
+ <operation name="remove_low_precedence_global_policy">
343
+ <documentation>
344
+ Removes a set of global policies with low precedence for the
345
+ specified profiles.
346
+
347
+ </documentation>
348
+ <input message="tns:LocalLB.ProfileSPM.remove_low_precedence_global_policyRequest"/>
349
+ <output message="tns:LocalLB.ProfileSPM.remove_low_precedence_global_policyResponse"/>
350
+ </operation>
351
+ <operation name="remove_all_low_precedence_global_policies">
352
+ <documentation>
353
+ Removes all global policies with low precedence for the specified profiles.
354
+
355
+ </documentation>
356
+ <input message="tns:LocalLB.ProfileSPM.remove_all_low_precedence_global_policiesRequest"/>
357
+ <output message="tns:LocalLB.ProfileSPM.remove_all_low_precedence_global_policiesResponse"/>
358
+ </operation>
359
+ <operation name="get_unknown_subscriber_policy">
360
+ <documentation>
361
+ Gets a set of policies for unknown subscribers for the specified
362
+ profiles. This specifies enforcement policies to apply to
363
+ subscribers that do not currently have policies assigned to
364
+ them either dynamically or statically. In more detail, the
365
+ unknown subscribers are defined as those that are in the
366
+ non-provisioned state for any reason. This might include new
367
+ subscribers waiting for the provisioning response from
368
+ Policy Charging Rules Function (PCRF), or established
369
+ subscribers that are neither found in PCRF nor in local
370
+ subscriber registry. The unknown subscriber policy operates
371
+ on the subscriber session concurrently with any global policy
372
+ configured in the system.
373
+
374
+ </documentation>
375
+ <input message="tns:LocalLB.ProfileSPM.get_unknown_subscriber_policyRequest"/>
376
+ <output message="tns:LocalLB.ProfileSPM.get_unknown_subscriber_policyResponse"/>
377
+ </operation>
378
+ <operation name="add_unknown_subscriber_policy">
379
+ <documentation>
380
+ Adds a set of policies for unknown subscribers for the specified
381
+ profiles.
382
+
383
+ </documentation>
384
+ <input message="tns:LocalLB.ProfileSPM.add_unknown_subscriber_policyRequest"/>
385
+ <output message="tns:LocalLB.ProfileSPM.add_unknown_subscriber_policyResponse"/>
386
+ </operation>
387
+ <operation name="remove_unknown_subscriber_policy">
388
+ <documentation>
389
+ Removes a set of policies for unknown subscribers for the specified profiles.
390
+
391
+ </documentation>
392
+ <input message="tns:LocalLB.ProfileSPM.remove_unknown_subscriber_policyRequest"/>
393
+ <output message="tns:LocalLB.ProfileSPM.remove_unknown_subscriber_policyResponse"/>
394
+ </operation>
395
+ <operation name="remove_all_unknown_subscriber_policies">
396
+ <documentation>
397
+ Removes all policies for unknown subscribers for the specified
398
+ profiles.
399
+
400
+ </documentation>
401
+ <input message="tns:LocalLB.ProfileSPM.remove_all_unknown_subscriber_policiesRequest"/>
402
+ <output message="tns:LocalLB.ProfileSPM.remove_all_unknown_subscriber_policiesResponse"/>
403
+ </operation>
404
+ <operation name="set_description">
405
+ <documentation>
406
+ Sets the description for a set of SPM profiles.
407
+ This is an arbitrary field which can be used for any purpose.
408
+
409
+ </documentation>
410
+ <input message="tns:LocalLB.ProfileSPM.set_descriptionRequest"/>
411
+ <output message="tns:LocalLB.ProfileSPM.set_descriptionResponse"/>
412
+ </operation>
413
+ <operation name="get_description">
414
+ <documentation>
415
+ Gets the description for a set of SPM profiles.
416
+
417
+ </documentation>
418
+ <input message="tns:LocalLB.ProfileSPM.get_descriptionRequest"/>
419
+ <output message="tns:LocalLB.ProfileSPM.get_descriptionResponse"/>
420
+ </operation>
421
+ <operation name="get_version">
422
+ <documentation>
423
+ Gets the version information for this interface.
424
+
425
+ </documentation>
426
+ <input message="tns:LocalLB.ProfileSPM.get_versionRequest"/>
427
+ <output message="tns:LocalLB.ProfileSPM.get_versionResponse"/>
428
+ </operation>
429
+ </portType>
430
+
431
+ <!-- binding -->
432
+
433
+ <binding name="LocalLB.ProfileSPMBinding" type="tns:LocalLB.ProfileSPMPortType">
434
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
435
+ <operation name="get_list">
436
+ <documentation>
437
+ Gets a list of all SPM profiles.
438
+
439
+ </documentation>
440
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
441
+ <input>
442
+ <soap:body
443
+ use="encoded"
444
+ namespace="urn:iControl:LocalLB/ProfileSPM"
445
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
446
+ </input>
447
+ <output>
448
+ <soap:body
449
+ use="encoded"
450
+ namespace="urn:iControl:LocalLB/ProfileSPM"
451
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
452
+ </output>
453
+ </operation>
454
+
455
+ <operation name="create">
456
+ <documentation>
457
+ Creates the specified SPM profiles.
458
+
459
+ </documentation>
460
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
461
+ <input>
462
+ <soap:body
463
+ use="encoded"
464
+ namespace="urn:iControl:LocalLB/ProfileSPM"
465
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
466
+ </input>
467
+ <output>
468
+ <soap:body
469
+ use="encoded"
470
+ namespace="urn:iControl:LocalLB/ProfileSPM"
471
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
472
+ </output>
473
+ </operation>
474
+
475
+ <operation name="delete_profile">
476
+ <documentation>
477
+ Deletes the specified SPM profiles.
478
+
479
+ </documentation>
480
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
481
+ <input>
482
+ <soap:body
483
+ use="encoded"
484
+ namespace="urn:iControl:LocalLB/ProfileSPM"
485
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
486
+ </input>
487
+ <output>
488
+ <soap:body
489
+ use="encoded"
490
+ namespace="urn:iControl:LocalLB/ProfileSPM"
491
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
492
+ </output>
493
+ </operation>
494
+
495
+ <operation name="delete_all_profiles">
496
+ <documentation>
497
+ Deletes all SPM profiles.
498
+
499
+ </documentation>
500
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
501
+ <input>
502
+ <soap:body
503
+ use="encoded"
504
+ namespace="urn:iControl:LocalLB/ProfileSPM"
505
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
506
+ </input>
507
+ <output>
508
+ <soap:body
509
+ use="encoded"
510
+ namespace="urn:iControl:LocalLB/ProfileSPM"
511
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
512
+ </output>
513
+ </operation>
514
+
515
+ <operation name="is_base_profile">
516
+ <documentation>
517
+ Determines whether the specified SPM profiles are
518
+ base profiles. A base profile sits at the base of the
519
+ profile's inheritance tree, supplying the defaults for every
520
+ profile derived from it. (See also is_system_profile).
521
+
522
+ </documentation>
523
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
524
+ <input>
525
+ <soap:body
526
+ use="encoded"
527
+ namespace="urn:iControl:LocalLB/ProfileSPM"
528
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
529
+ </input>
530
+ <output>
531
+ <soap:body
532
+ use="encoded"
533
+ namespace="urn:iControl:LocalLB/ProfileSPM"
534
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
535
+ </output>
536
+ </operation>
537
+
538
+ <operation name="is_system_profile">
539
+ <documentation>
540
+ Determines whether the specified SPM profiles are
541
+ system profiles. A system profile is a profile pre-configured
542
+ on the system, ready for use. Non-system profiles are
543
+ profiles created or modified by a user. Note that if a system
544
+ profile is modified, it is no longer considered a system
545
+ profile. (See also is_base_profile).
546
+
547
+ </documentation>
548
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
549
+ <input>
550
+ <soap:body
551
+ use="encoded"
552
+ namespace="urn:iControl:LocalLB/ProfileSPM"
553
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
554
+ </input>
555
+ <output>
556
+ <soap:body
557
+ use="encoded"
558
+ namespace="urn:iControl:LocalLB/ProfileSPM"
559
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
560
+ </output>
561
+ </operation>
562
+
563
+ <operation name="set_default_profile">
564
+ <documentation>
565
+ Sets the names of the default profiles from which the specified
566
+ profiles will derive default values for attributes.
567
+
568
+ </documentation>
569
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
570
+ <input>
571
+ <soap:body
572
+ use="encoded"
573
+ namespace="urn:iControl:LocalLB/ProfileSPM"
574
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
575
+ </input>
576
+ <output>
577
+ <soap:body
578
+ use="encoded"
579
+ namespace="urn:iControl:LocalLB/ProfileSPM"
580
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
581
+ </output>
582
+ </operation>
583
+
584
+ <operation name="get_default_profile">
585
+ <documentation>
586
+ Gets the names of the default profiles from which the specified
587
+ profiles will derive default values for attributes.
588
+
589
+ </documentation>
590
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
591
+ <input>
592
+ <soap:body
593
+ use="encoded"
594
+ namespace="urn:iControl:LocalLB/ProfileSPM"
595
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
596
+ </input>
597
+ <output>
598
+ <soap:body
599
+ use="encoded"
600
+ namespace="urn:iControl:LocalLB/ProfileSPM"
601
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
602
+ </output>
603
+ </operation>
604
+
605
+ <operation name="get_high_precedence_global_policy">
606
+ <documentation>
607
+ Gets a set of global policies with high precedence for the
608
+ specified profiles. This specifies global enforcement policies
609
+ to apply to all subscribers in parallel with the subscriber
610
+ policies. The global policy can be of high or low precedence.
611
+ If rules of this type in the global and subscriber policies
612
+ conflict, the high precedence global policy overrides the
613
+ subscriber policy.
614
+
615
+ </documentation>
616
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
617
+ <input>
618
+ <soap:body
619
+ use="encoded"
620
+ namespace="urn:iControl:LocalLB/ProfileSPM"
621
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
622
+ </input>
623
+ <output>
624
+ <soap:body
625
+ use="encoded"
626
+ namespace="urn:iControl:LocalLB/ProfileSPM"
627
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
628
+ </output>
629
+ </operation>
630
+
631
+ <operation name="add_high_precedence_global_policy">
632
+ <documentation>
633
+ Adds a set of global policies with high precedence for the
634
+ specified profiles.
635
+
636
+ </documentation>
637
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
638
+ <input>
639
+ <soap:body
640
+ use="encoded"
641
+ namespace="urn:iControl:LocalLB/ProfileSPM"
642
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
643
+ </input>
644
+ <output>
645
+ <soap:body
646
+ use="encoded"
647
+ namespace="urn:iControl:LocalLB/ProfileSPM"
648
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
649
+ </output>
650
+ </operation>
651
+
652
+ <operation name="remove_high_precedence_global_policy">
653
+ <documentation>
654
+ Removes a set of global policies with high precedence for the
655
+ specified profiles.
656
+
657
+ </documentation>
658
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
659
+ <input>
660
+ <soap:body
661
+ use="encoded"
662
+ namespace="urn:iControl:LocalLB/ProfileSPM"
663
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
664
+ </input>
665
+ <output>
666
+ <soap:body
667
+ use="encoded"
668
+ namespace="urn:iControl:LocalLB/ProfileSPM"
669
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
670
+ </output>
671
+ </operation>
672
+
673
+ <operation name="remove_all_high_precedence_global_policies">
674
+ <documentation>
675
+ Removes all global policies with high precedence for the
676
+ specified profiles.
677
+
678
+ </documentation>
679
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
680
+ <input>
681
+ <soap:body
682
+ use="encoded"
683
+ namespace="urn:iControl:LocalLB/ProfileSPM"
684
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
685
+ </input>
686
+ <output>
687
+ <soap:body
688
+ use="encoded"
689
+ namespace="urn:iControl:LocalLB/ProfileSPM"
690
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
691
+ </output>
692
+ </operation>
693
+
694
+ <operation name="get_low_precedence_global_policy">
695
+ <documentation>
696
+ Gets a set of global policies with low precedence for the
697
+ specified profiles. This specifies global enforcement policies
698
+ to apply to all subscribers in parallel with the subscriber
699
+ policies. The global policy can be of high or low precedence.
700
+ If rules of this type in the global and subscriber policies
701
+ conflict, the subscriber policy overrides the low precedence
702
+ global policy.
703
+
704
+ </documentation>
705
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
706
+ <input>
707
+ <soap:body
708
+ use="encoded"
709
+ namespace="urn:iControl:LocalLB/ProfileSPM"
710
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
711
+ </input>
712
+ <output>
713
+ <soap:body
714
+ use="encoded"
715
+ namespace="urn:iControl:LocalLB/ProfileSPM"
716
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
717
+ </output>
718
+ </operation>
719
+
720
+ <operation name="add_low_precedence_global_policy">
721
+ <documentation>
722
+ Adds a set of global policies with low precedence for the specified profiles.
723
+
724
+ </documentation>
725
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
726
+ <input>
727
+ <soap:body
728
+ use="encoded"
729
+ namespace="urn:iControl:LocalLB/ProfileSPM"
730
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
731
+ </input>
732
+ <output>
733
+ <soap:body
734
+ use="encoded"
735
+ namespace="urn:iControl:LocalLB/ProfileSPM"
736
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
737
+ </output>
738
+ </operation>
739
+
740
+ <operation name="remove_low_precedence_global_policy">
741
+ <documentation>
742
+ Removes a set of global policies with low precedence for the
743
+ specified profiles.
744
+
745
+ </documentation>
746
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
747
+ <input>
748
+ <soap:body
749
+ use="encoded"
750
+ namespace="urn:iControl:LocalLB/ProfileSPM"
751
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
752
+ </input>
753
+ <output>
754
+ <soap:body
755
+ use="encoded"
756
+ namespace="urn:iControl:LocalLB/ProfileSPM"
757
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
758
+ </output>
759
+ </operation>
760
+
761
+ <operation name="remove_all_low_precedence_global_policies">
762
+ <documentation>
763
+ Removes all global policies with low precedence for the specified profiles.
764
+
765
+ </documentation>
766
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
767
+ <input>
768
+ <soap:body
769
+ use="encoded"
770
+ namespace="urn:iControl:LocalLB/ProfileSPM"
771
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
772
+ </input>
773
+ <output>
774
+ <soap:body
775
+ use="encoded"
776
+ namespace="urn:iControl:LocalLB/ProfileSPM"
777
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
778
+ </output>
779
+ </operation>
780
+
781
+ <operation name="get_unknown_subscriber_policy">
782
+ <documentation>
783
+ Gets a set of policies for unknown subscribers for the specified
784
+ profiles. This specifies enforcement policies to apply to
785
+ subscribers that do not currently have policies assigned to
786
+ them either dynamically or statically. In more detail, the
787
+ unknown subscribers are defined as those that are in the
788
+ non-provisioned state for any reason. This might include new
789
+ subscribers waiting for the provisioning response from
790
+ Policy Charging Rules Function (PCRF), or established
791
+ subscribers that are neither found in PCRF nor in local
792
+ subscriber registry. The unknown subscriber policy operates
793
+ on the subscriber session concurrently with any global policy
794
+ configured in the system.
795
+
796
+ </documentation>
797
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
798
+ <input>
799
+ <soap:body
800
+ use="encoded"
801
+ namespace="urn:iControl:LocalLB/ProfileSPM"
802
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
803
+ </input>
804
+ <output>
805
+ <soap:body
806
+ use="encoded"
807
+ namespace="urn:iControl:LocalLB/ProfileSPM"
808
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
809
+ </output>
810
+ </operation>
811
+
812
+ <operation name="add_unknown_subscriber_policy">
813
+ <documentation>
814
+ Adds a set of policies for unknown subscribers for the specified
815
+ profiles.
816
+
817
+ </documentation>
818
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
819
+ <input>
820
+ <soap:body
821
+ use="encoded"
822
+ namespace="urn:iControl:LocalLB/ProfileSPM"
823
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
824
+ </input>
825
+ <output>
826
+ <soap:body
827
+ use="encoded"
828
+ namespace="urn:iControl:LocalLB/ProfileSPM"
829
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
830
+ </output>
831
+ </operation>
832
+
833
+ <operation name="remove_unknown_subscriber_policy">
834
+ <documentation>
835
+ Removes a set of policies for unknown subscribers for the specified profiles.
836
+
837
+ </documentation>
838
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
839
+ <input>
840
+ <soap:body
841
+ use="encoded"
842
+ namespace="urn:iControl:LocalLB/ProfileSPM"
843
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
844
+ </input>
845
+ <output>
846
+ <soap:body
847
+ use="encoded"
848
+ namespace="urn:iControl:LocalLB/ProfileSPM"
849
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
850
+ </output>
851
+ </operation>
852
+
853
+ <operation name="remove_all_unknown_subscriber_policies">
854
+ <documentation>
855
+ Removes all policies for unknown subscribers for the specified
856
+ profiles.
857
+
858
+ </documentation>
859
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
860
+ <input>
861
+ <soap:body
862
+ use="encoded"
863
+ namespace="urn:iControl:LocalLB/ProfileSPM"
864
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
865
+ </input>
866
+ <output>
867
+ <soap:body
868
+ use="encoded"
869
+ namespace="urn:iControl:LocalLB/ProfileSPM"
870
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
871
+ </output>
872
+ </operation>
873
+
874
+ <operation name="set_description">
875
+ <documentation>
876
+ Sets the description for a set of SPM profiles.
877
+ This is an arbitrary field which can be used for any purpose.
878
+
879
+ </documentation>
880
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
881
+ <input>
882
+ <soap:body
883
+ use="encoded"
884
+ namespace="urn:iControl:LocalLB/ProfileSPM"
885
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
886
+ </input>
887
+ <output>
888
+ <soap:body
889
+ use="encoded"
890
+ namespace="urn:iControl:LocalLB/ProfileSPM"
891
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
892
+ </output>
893
+ </operation>
894
+
895
+ <operation name="get_description">
896
+ <documentation>
897
+ Gets the description for a set of SPM profiles.
898
+
899
+ </documentation>
900
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
901
+ <input>
902
+ <soap:body
903
+ use="encoded"
904
+ namespace="urn:iControl:LocalLB/ProfileSPM"
905
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
906
+ </input>
907
+ <output>
908
+ <soap:body
909
+ use="encoded"
910
+ namespace="urn:iControl:LocalLB/ProfileSPM"
911
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
912
+ </output>
913
+ </operation>
914
+
915
+ <operation name="get_version">
916
+ <documentation>
917
+ Gets the version information for this interface.
918
+
919
+ </documentation>
920
+ <soap:operation soapAction="urn:iControl:LocalLB/ProfileSPM"/>
921
+ <input>
922
+ <soap:body
923
+ use="encoded"
924
+ namespace="urn:iControl:LocalLB/ProfileSPM"
925
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
926
+ </input>
927
+ <output>
928
+ <soap:body
929
+ use="encoded"
930
+ namespace="urn:iControl:LocalLB/ProfileSPM"
931
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
932
+ </output>
933
+ </operation>
934
+ </binding>
935
+
936
+ <!-- service -->
937
+
938
+ <service name="LocalLB.ProfileSPM">
939
+ <documentation>
940
+ The ProfileSPM interface enables you to manipulate a local
941
+ load balancer's Subscriber Policy Manager (SPM) profile.
942
+ If a subscriber does not have policies assigned to it either
943
+ dynamically or statically, it is an unknown subscriber. Otherwise,
944
+ the subscriber has its own policies. On top of that, there are
945
+ global policies that can be applied to all subscribers (subscribers
946
+ with their own polices or unknown subscribers).
947
+
948
+ </documentation>
949
+ <port name="LocalLB.ProfileSPMPort" binding="tns:LocalLB.ProfileSPMBinding">
950
+ <soap:address location="https://url_to_service"/>
951
+ </port>
952
+ </service>
953
+ </definitions>