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,1138 @@
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="ASM.WebApplication"
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="ASM.ApplyLearning">
25
+ <xsd:sequence>
26
+ <xsd:element name="type" type="tns:ASM.ApplyLearningType"/>
27
+ <xsd:element name="policy_name" type="xsd:string"/>
28
+ </xsd:sequence>
29
+ </xsd:complexType>
30
+ <xsd:complexType name="ASM.WebApplicationLanguageSequence">
31
+ <xsd:complexContent>
32
+ <xsd:restriction base='SOAP-ENC:Array'>
33
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:ASM.WebApplicationLanguage[]'/>
34
+ </xsd:restriction>
35
+ </xsd:complexContent>
36
+ </xsd:complexType>
37
+ <xsd:complexType name="Common.StringSequence">
38
+ <xsd:complexContent>
39
+ <xsd:restriction base='SOAP-ENC:Array'>
40
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
41
+ </xsd:restriction>
42
+ </xsd:complexContent>
43
+ </xsd:complexType>
44
+ <xsd:simpleType name="ASM.ApplyLearningType">
45
+ <xsd:restriction base="xsd:string">
46
+ <xsd:enumeration value="APPLY_LEARNING_ALL_POLICIES">
47
+ <xsd:annotation>
48
+ <xsd:documentation>APPLY_LEARNING_ALL_POLICIES</xsd:documentation>
49
+ </xsd:annotation>
50
+ </xsd:enumeration>
51
+ <xsd:enumeration value="APPLY_LEARNING_ACTIVE_POLICY">
52
+ <xsd:annotation>
53
+ <xsd:documentation>APPLY_LEARNING_ACTIVE_POLICY</xsd:documentation>
54
+ </xsd:annotation>
55
+ </xsd:enumeration>
56
+ <xsd:enumeration value="APPLY_LEARNING_SPECIFIC_POLICY">
57
+ <xsd:annotation>
58
+ <xsd:documentation>APPLY_LEARNING_SPECIFIC_POLICY</xsd:documentation>
59
+ </xsd:annotation>
60
+ </xsd:enumeration>
61
+ </xsd:restriction>
62
+ </xsd:simpleType>
63
+ <xsd:complexType name="ASM.PolicyTemplateSequence">
64
+ <xsd:complexContent>
65
+ <xsd:restriction base='SOAP-ENC:Array'>
66
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:ASM.PolicyTemplate[]'/>
67
+ </xsd:restriction>
68
+ </xsd:complexContent>
69
+ </xsd:complexType>
70
+ <xsd:complexType name="Common.BooleanSequence">
71
+ <xsd:complexContent>
72
+ <xsd:restriction base='SOAP-ENC:Array'>
73
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:boolean[]'/>
74
+ </xsd:restriction>
75
+ </xsd:complexContent>
76
+ </xsd:complexType>
77
+ <xsd:simpleType name="Common.ULong">
78
+ <xsd:restriction base="xsd:long"/>
79
+ </xsd:simpleType>
80
+ <xsd:complexType name="Common.StringSequenceSequence">
81
+ <xsd:complexContent>
82
+ <xsd:restriction base='SOAP-ENC:Array'>
83
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
84
+ </xsd:restriction>
85
+ </xsd:complexContent>
86
+ </xsd:complexType>
87
+ <xsd:simpleType name="ASM.WebApplicationLanguage">
88
+ <xsd:restriction base="xsd:string">
89
+ <xsd:enumeration value="LANGUAGE_UNDEFINED">
90
+ <xsd:annotation>
91
+ <xsd:documentation>LANGUAGE_UNDEFINED</xsd:documentation>
92
+ </xsd:annotation>
93
+ </xsd:enumeration>
94
+ <xsd:enumeration value="UNICODE_UTF_8">
95
+ <xsd:annotation>
96
+ <xsd:documentation>UNICODE_UTF_8</xsd:documentation>
97
+ </xsd:annotation>
98
+ </xsd:enumeration>
99
+ <xsd:enumeration value="WESTERN_EUROPEAN_ISO_8859_1">
100
+ <xsd:annotation>
101
+ <xsd:documentation>WESTERN_EUROPEAN_ISO_8859_1</xsd:documentation>
102
+ </xsd:annotation>
103
+ </xsd:enumeration>
104
+ <xsd:enumeration value="WESTERN_EUROPEAN_WINDOWS_1252">
105
+ <xsd:annotation>
106
+ <xsd:documentation>WESTERN_EUROPEAN_WINDOWS_1252</xsd:documentation>
107
+ </xsd:annotation>
108
+ </xsd:enumeration>
109
+ <xsd:enumeration value="WESTERN_EUROPEAN_ISO_8859_15">
110
+ <xsd:annotation>
111
+ <xsd:documentation>WESTERN_EUROPEAN_ISO_8859_15</xsd:documentation>
112
+ </xsd:annotation>
113
+ </xsd:enumeration>
114
+ <xsd:enumeration value="CENTRAL_EUROPEAN_ISO_8859_2">
115
+ <xsd:annotation>
116
+ <xsd:documentation>CENTRAL_EUROPEAN_ISO_8859_2</xsd:documentation>
117
+ </xsd:annotation>
118
+ </xsd:enumeration>
119
+ <xsd:enumeration value="CENTRAL_EUROPEAN_WINDOWS_1250">
120
+ <xsd:annotation>
121
+ <xsd:documentation>CENTRAL_EUROPEAN_WINDOWS_1250</xsd:documentation>
122
+ </xsd:annotation>
123
+ </xsd:enumeration>
124
+ <xsd:enumeration value="SOUTH_EUROPEAN_ISO_8859_3">
125
+ <xsd:annotation>
126
+ <xsd:documentation>SOUTH_EUROPEAN_ISO_8859_3</xsd:documentation>
127
+ </xsd:annotation>
128
+ </xsd:enumeration>
129
+ <xsd:enumeration value="GREEK_ISO_8859_7">
130
+ <xsd:annotation>
131
+ <xsd:documentation>GREEK_ISO_8859_7</xsd:documentation>
132
+ </xsd:annotation>
133
+ </xsd:enumeration>
134
+ <xsd:enumeration value="GREEK_WINDOWS_1253">
135
+ <xsd:annotation>
136
+ <xsd:documentation>GREEK_WINDOWS_1253</xsd:documentation>
137
+ </xsd:annotation>
138
+ </xsd:enumeration>
139
+ <xsd:enumeration value="NORDIC_ISO_8859_10">
140
+ <xsd:annotation>
141
+ <xsd:documentation>NORDIC_ISO_8859_10</xsd:documentation>
142
+ </xsd:annotation>
143
+ </xsd:enumeration>
144
+ <xsd:enumeration value="CYRILLIC_WINDOWS_1251">
145
+ <xsd:annotation>
146
+ <xsd:documentation>CYRILLIC_WINDOWS_1251</xsd:documentation>
147
+ </xsd:annotation>
148
+ </xsd:enumeration>
149
+ <xsd:enumeration value="CYRILLIC_KOI8_R">
150
+ <xsd:annotation>
151
+ <xsd:documentation>CYRILLIC_KOI8_R</xsd:documentation>
152
+ </xsd:annotation>
153
+ </xsd:enumeration>
154
+ <xsd:enumeration value="CYRILLIC_ISO_8859_5">
155
+ <xsd:annotation>
156
+ <xsd:documentation>CYRILLIC_ISO_8859_5</xsd:documentation>
157
+ </xsd:annotation>
158
+ </xsd:enumeration>
159
+ <xsd:enumeration value="ROMANIAN_ISO_8859_16">
160
+ <xsd:annotation>
161
+ <xsd:documentation>ROMANIAN_ISO_8859_16</xsd:documentation>
162
+ </xsd:annotation>
163
+ </xsd:enumeration>
164
+ <xsd:enumeration value="BALTIC_ISO_8859_4">
165
+ <xsd:annotation>
166
+ <xsd:documentation>BALTIC_ISO_8859_4</xsd:documentation>
167
+ </xsd:annotation>
168
+ </xsd:enumeration>
169
+ <xsd:enumeration value="BALTIC_ISO_8859_13">
170
+ <xsd:annotation>
171
+ <xsd:documentation>BALTIC_ISO_8859_13</xsd:documentation>
172
+ </xsd:annotation>
173
+ </xsd:enumeration>
174
+ <xsd:enumeration value="BALTIC_WINDOWS_1257">
175
+ <xsd:annotation>
176
+ <xsd:documentation>BALTIC_WINDOWS_1257</xsd:documentation>
177
+ </xsd:annotation>
178
+ </xsd:enumeration>
179
+ <xsd:enumeration value="HEBREW_WINDOWS_1255">
180
+ <xsd:annotation>
181
+ <xsd:documentation>HEBREW_WINDOWS_1255</xsd:documentation>
182
+ </xsd:annotation>
183
+ </xsd:enumeration>
184
+ <xsd:enumeration value="HEBREW_ISO_8859_8">
185
+ <xsd:annotation>
186
+ <xsd:documentation>HEBREW_ISO_8859_8</xsd:documentation>
187
+ </xsd:annotation>
188
+ </xsd:enumeration>
189
+ <xsd:enumeration value="JAPANESE_SHIFT_JIS">
190
+ <xsd:annotation>
191
+ <xsd:documentation>JAPANESE_SHIFT_JIS</xsd:documentation>
192
+ </xsd:annotation>
193
+ </xsd:enumeration>
194
+ <xsd:enumeration value="JAPANESE_EUC_JP">
195
+ <xsd:annotation>
196
+ <xsd:documentation>JAPANESE_EUC_JP</xsd:documentation>
197
+ </xsd:annotation>
198
+ </xsd:enumeration>
199
+ <xsd:enumeration value="KOREAN_EUC_KR">
200
+ <xsd:annotation>
201
+ <xsd:documentation>KOREAN_EUC_KR</xsd:documentation>
202
+ </xsd:annotation>
203
+ </xsd:enumeration>
204
+ <xsd:enumeration value="CHINESE_BIG5">
205
+ <xsd:annotation>
206
+ <xsd:documentation>CHINESE_BIG5</xsd:documentation>
207
+ </xsd:annotation>
208
+ </xsd:enumeration>
209
+ <xsd:enumeration value="CHINESE_GB2312">
210
+ <xsd:annotation>
211
+ <xsd:documentation>CHINESE_GB2312</xsd:documentation>
212
+ </xsd:annotation>
213
+ </xsd:enumeration>
214
+ <xsd:enumeration value="THAI_CP874">
215
+ <xsd:annotation>
216
+ <xsd:documentation>THAI_CP874</xsd:documentation>
217
+ </xsd:annotation>
218
+ </xsd:enumeration>
219
+ <xsd:enumeration value="ARABIC_ISO_8859_6">
220
+ <xsd:annotation>
221
+ <xsd:documentation>ARABIC_ISO_8859_6</xsd:documentation>
222
+ </xsd:annotation>
223
+ </xsd:enumeration>
224
+ <xsd:enumeration value="CHINESE_GBK">
225
+ <xsd:annotation>
226
+ <xsd:documentation>CHINESE_GBK</xsd:documentation>
227
+ </xsd:annotation>
228
+ </xsd:enumeration>
229
+ <xsd:enumeration value="CHINESE_GB18030">
230
+ <xsd:annotation>
231
+ <xsd:documentation>CHINESE_GB18030</xsd:documentation>
232
+ </xsd:annotation>
233
+ </xsd:enumeration>
234
+ <xsd:enumeration value="TURKISH_ISO_8859_9">
235
+ <xsd:annotation>
236
+ <xsd:documentation>TURKISH_ISO_8859_9</xsd:documentation>
237
+ </xsd:annotation>
238
+ </xsd:enumeration>
239
+ </xsd:restriction>
240
+ </xsd:simpleType>
241
+ <xsd:simpleType name="ASM.PolicyTemplate">
242
+ <xsd:restriction base="xsd:string">
243
+ <xsd:enumeration value="POLICY_TEMPLATE_EMPTY">
244
+ <xsd:annotation>
245
+ <xsd:documentation>POLICY_TEMPLATE_EMPTY</xsd:documentation>
246
+ </xsd:annotation>
247
+ </xsd:enumeration>
248
+ <xsd:enumeration value="POLICY_TEMPLATE_SHAREPOINT_2007_HTTP">
249
+ <xsd:annotation>
250
+ <xsd:documentation>POLICY_TEMPLATE_SHAREPOINT_2007_HTTP</xsd:documentation>
251
+ </xsd:annotation>
252
+ </xsd:enumeration>
253
+ <xsd:enumeration value="POLICY_TEMPLATE_SHAREPOINT_2007_HTTPS">
254
+ <xsd:annotation>
255
+ <xsd:documentation>POLICY_TEMPLATE_SHAREPOINT_2007_HTTPS</xsd:documentation>
256
+ </xsd:annotation>
257
+ </xsd:enumeration>
258
+ <xsd:enumeration value="POLICY_TEMPLATE_OWA_EXCHANGE_2003_HTTP">
259
+ <xsd:annotation>
260
+ <xsd:documentation>POLICY_TEMPLATE_OWA_EXCHANGE_2003_HTTP</xsd:documentation>
261
+ </xsd:annotation>
262
+ </xsd:enumeration>
263
+ <xsd:enumeration value="POLICY_TEMPLATE_OWA_EXCHANGE_2003_HTTPS">
264
+ <xsd:annotation>
265
+ <xsd:documentation>POLICY_TEMPLATE_OWA_EXCHANGE_2003_HTTPS</xsd:documentation>
266
+ </xsd:annotation>
267
+ </xsd:enumeration>
268
+ <xsd:enumeration value="POLICY_TEMPLATE_ORACLE_APPLICATIONS_11I_HTTP">
269
+ <xsd:annotation>
270
+ <xsd:documentation>POLICY_TEMPLATE_ORACLE_APPLICATIONS_11I_HTTP</xsd:documentation>
271
+ </xsd:annotation>
272
+ </xsd:enumeration>
273
+ <xsd:enumeration value="POLICY_TEMPLATE_ORACLE_APPLICATIONS_11I_HTTPS">
274
+ <xsd:annotation>
275
+ <xsd:documentation>POLICY_TEMPLATE_ORACLE_APPLICATIONS_11I_HTTPS</xsd:documentation>
276
+ </xsd:annotation>
277
+ </xsd:enumeration>
278
+ <xsd:enumeration value="POLICY_TEMPLATE_LOTUSDOMINO_6_5_HTTP">
279
+ <xsd:annotation>
280
+ <xsd:documentation>POLICY_TEMPLATE_LOTUSDOMINO_6_5_HTTP</xsd:documentation>
281
+ </xsd:annotation>
282
+ </xsd:enumeration>
283
+ <xsd:enumeration value="POLICY_TEMPLATE_LOTUSDOMINO_6_5_HTTPS">
284
+ <xsd:annotation>
285
+ <xsd:documentation>POLICY_TEMPLATE_LOTUSDOMINO_6_5_HTTPS</xsd:documentation>
286
+ </xsd:annotation>
287
+ </xsd:enumeration>
288
+ <xsd:enumeration value="POLICY_TEMPLATE_OWA_EXCHANGE_2007_HTTP">
289
+ <xsd:annotation>
290
+ <xsd:documentation>POLICY_TEMPLATE_OWA_EXCHANGE_2007_HTTP</xsd:documentation>
291
+ </xsd:annotation>
292
+ </xsd:enumeration>
293
+ <xsd:enumeration value="POLICY_TEMPLATE_OWA_EXCHANGE_2007_HTTPS">
294
+ <xsd:annotation>
295
+ <xsd:documentation>POLICY_TEMPLATE_OWA_EXCHANGE_2007_HTTPS</xsd:documentation>
296
+ </xsd:annotation>
297
+ </xsd:enumeration>
298
+ <xsd:enumeration value="POLICY_TEMPLATE_SAP_NETWEAVER_7_HTTP">
299
+ <xsd:annotation>
300
+ <xsd:documentation>POLICY_TEMPLATE_SAP_NETWEAVER_7_HTTP</xsd:documentation>
301
+ </xsd:annotation>
302
+ </xsd:enumeration>
303
+ <xsd:enumeration value="POLICY_TEMPLATE_SAP_NETWEAVER_7_HTTPS">
304
+ <xsd:annotation>
305
+ <xsd:documentation>POLICY_TEMPLATE_SAP_NETWEAVER_7_HTTPS</xsd:documentation>
306
+ </xsd:annotation>
307
+ </xsd:enumeration>
308
+ <xsd:enumeration value="POLICY_TEMPLATE_RAPID_DEPLOYMENT_HTTP">
309
+ <xsd:annotation>
310
+ <xsd:documentation>POLICY_TEMPLATE_RAPID_DEPLOYMENT_HTTP</xsd:documentation>
311
+ </xsd:annotation>
312
+ </xsd:enumeration>
313
+ <xsd:enumeration value="POLICY_TEMPLATE_RAPID_DEPLOYMENT_HTTPS">
314
+ <xsd:annotation>
315
+ <xsd:documentation>POLICY_TEMPLATE_RAPID_DEPLOYMENT_HTTPS</xsd:documentation>
316
+ </xsd:annotation>
317
+ </xsd:enumeration>
318
+ <xsd:enumeration value="POLICY_TEMPLATE_PEOPLESOFT_PORTAL_9_HTTP">
319
+ <xsd:annotation>
320
+ <xsd:documentation>POLICY_TEMPLATE_PEOPLESOFT_PORTAL_9_HTTP</xsd:documentation>
321
+ </xsd:annotation>
322
+ </xsd:enumeration>
323
+ <xsd:enumeration value="POLICY_TEMPLATE_PEOPLESOFT_PORTAL_9_HTTPS">
324
+ <xsd:annotation>
325
+ <xsd:documentation>POLICY_TEMPLATE_PEOPLESOFT_PORTAL_9_HTTPS</xsd:documentation>
326
+ </xsd:annotation>
327
+ </xsd:enumeration>
328
+ <xsd:enumeration value="POLICY_TEMPLATE_ORACLE_10G_PORTAL_HTTP">
329
+ <xsd:annotation>
330
+ <xsd:documentation>POLICY_TEMPLATE_ORACLE_10G_PORTAL_HTTP</xsd:documentation>
331
+ </xsd:annotation>
332
+ </xsd:enumeration>
333
+ <xsd:enumeration value="POLICY_TEMPLATE_ORACLE_10G_PORTAL_HTTPS">
334
+ <xsd:annotation>
335
+ <xsd:documentation>POLICY_TEMPLATE_ORACLE_10G_PORTAL_HTTPS</xsd:documentation>
336
+ </xsd:annotation>
337
+ </xsd:enumeration>
338
+ <xsd:enumeration value="POLICY_TEMPLATE_SHAREPOINT_2003_HTTP">
339
+ <xsd:annotation>
340
+ <xsd:documentation>POLICY_TEMPLATE_SHAREPOINT_2003_HTTP</xsd:documentation>
341
+ </xsd:annotation>
342
+ </xsd:enumeration>
343
+ <xsd:enumeration value="POLICY_TEMPLATE_SHAREPOINT_2003_HTTPS">
344
+ <xsd:annotation>
345
+ <xsd:documentation>POLICY_TEMPLATE_SHAREPOINT_2003_HTTPS</xsd:documentation>
346
+ </xsd:annotation>
347
+ </xsd:enumeration>
348
+ <xsd:enumeration value="POLICY_TEMPLATE_ACTIVESYNC_V1_0_V2_0_HTTP">
349
+ <xsd:annotation>
350
+ <xsd:documentation>POLICY_TEMPLATE_ACTIVESYNC_V1_0_V2_0_HTTP</xsd:documentation>
351
+ </xsd:annotation>
352
+ </xsd:enumeration>
353
+ <xsd:enumeration value="POLICY_TEMPLATE_ACTIVESYNC_V1_0_V2_0_HTTPS">
354
+ <xsd:annotation>
355
+ <xsd:documentation>POLICY_TEMPLATE_ACTIVESYNC_V1_0_V2_0_HTTPS</xsd:documentation>
356
+ </xsd:annotation>
357
+ </xsd:enumeration>
358
+ <xsd:enumeration value="POLICY_TEMPLATE_OWA_EXCHANGE_2007_WITH_ACTIVESYNC_HTTP">
359
+ <xsd:annotation>
360
+ <xsd:documentation>POLICY_TEMPLATE_OWA_EXCHANGE_2007_WITH_ACTIVESYNC_HTTP</xsd:documentation>
361
+ </xsd:annotation>
362
+ </xsd:enumeration>
363
+ <xsd:enumeration value="POLICY_TEMPLATE_OWA_EXCHANGE_2007_WITH_ACTIVESYNC_HTTPS">
364
+ <xsd:annotation>
365
+ <xsd:documentation>POLICY_TEMPLATE_OWA_EXCHANGE_2007_WITH_ACTIVESYNC_HTTPS</xsd:documentation>
366
+ </xsd:annotation>
367
+ </xsd:enumeration>
368
+ <xsd:enumeration value="POLICY_TEMPLATE_OWA_EXCHANGE_2003_WITH_ACTIVESYNC_HTTP">
369
+ <xsd:annotation>
370
+ <xsd:documentation>POLICY_TEMPLATE_OWA_EXCHANGE_2003_WITH_ACTIVESYNC_HTTP</xsd:documentation>
371
+ </xsd:annotation>
372
+ </xsd:enumeration>
373
+ <xsd:enumeration value="POLICY_TEMPLATE_OWA_EXCHANGE_2003_WITH_ACTIVESYNC_HTTPS">
374
+ <xsd:annotation>
375
+ <xsd:documentation>POLICY_TEMPLATE_OWA_EXCHANGE_2003_WITH_ACTIVESYNC_HTTPS</xsd:documentation>
376
+ </xsd:annotation>
377
+ </xsd:enumeration>
378
+ <xsd:enumeration value="POLICY_TEMPLATE_WHITEHAT_SENTINEL_BASELINE">
379
+ <xsd:annotation>
380
+ <xsd:documentation>POLICY_TEMPLATE_WHITEHAT_SENTINEL_BASELINE</xsd:documentation>
381
+ </xsd:annotation>
382
+ </xsd:enumeration>
383
+ <xsd:enumeration value="POLICY_TEMPLATE_OWA_EXCHANGE_2010_HTTP">
384
+ <xsd:annotation>
385
+ <xsd:documentation>POLICY_TEMPLATE_OWA_EXCHANGE_2010_HTTP</xsd:documentation>
386
+ </xsd:annotation>
387
+ </xsd:enumeration>
388
+ <xsd:enumeration value="POLICY_TEMPLATE_OWA_EXCHANGE_2010_HTTPS">
389
+ <xsd:annotation>
390
+ <xsd:documentation>POLICY_TEMPLATE_OWA_EXCHANGE_2010_HTTPS</xsd:documentation>
391
+ </xsd:annotation>
392
+ </xsd:enumeration>
393
+ <xsd:enumeration value="POLICY_TEMPLATE_SHAREPOINT_2010_HTTP">
394
+ <xsd:annotation>
395
+ <xsd:documentation>POLICY_TEMPLATE_SHAREPOINT_2010_HTTP</xsd:documentation>
396
+ </xsd:annotation>
397
+ </xsd:enumeration>
398
+ <xsd:enumeration value="POLICY_TEMPLATE_SHAREPOINT_2010_HTTPS">
399
+ <xsd:annotation>
400
+ <xsd:documentation>POLICY_TEMPLATE_SHAREPOINT_2010_HTTPS</xsd:documentation>
401
+ </xsd:annotation>
402
+ </xsd:enumeration>
403
+ <xsd:enumeration value="POLICY_TEMPLATE_RAPID_DEPLOYMENT">
404
+ <xsd:annotation>
405
+ <xsd:documentation>POLICY_TEMPLATE_RAPID_DEPLOYMENT</xsd:documentation>
406
+ </xsd:annotation>
407
+ </xsd:enumeration>
408
+ <xsd:enumeration value="POLICY_TEMPLATE_RAPID_DEPLOYMENT_PB">
409
+ <xsd:annotation>
410
+ <xsd:documentation>POLICY_TEMPLATE_RAPID_DEPLOYMENT_PB</xsd:documentation>
411
+ </xsd:annotation>
412
+ </xsd:enumeration>
413
+ </xsd:restriction>
414
+ </xsd:simpleType>
415
+ <xsd:complexType name="ASM.ApplyLearningSequence">
416
+ <xsd:complexContent>
417
+ <xsd:restriction base='SOAP-ENC:Array'>
418
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:ASM.ApplyLearning[]'/>
419
+ </xsd:restriction>
420
+ </xsd:complexContent>
421
+ </xsd:complexType>
422
+ </xsd:schema>
423
+ </types>
424
+
425
+ <!-- message -->
426
+
427
+ <message name="ASM.WebApplication.get_listRequest">
428
+ </message>
429
+ <message name="ASM.WebApplication.get_listResponse">
430
+ <part name="return" type="tns:Common.StringSequence"/>
431
+ </message>
432
+
433
+ <message name="ASM.WebApplication.delete_all_non_active_policiesRequest">
434
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
435
+ </message>
436
+ <message name="ASM.WebApplication.delete_all_non_active_policiesResponse">
437
+ </message>
438
+
439
+ <message name="ASM.WebApplication.delete_all_disabled_webappsRequest">
440
+ </message>
441
+ <message name="ASM.WebApplication.delete_all_disabled_webappsResponse">
442
+ </message>
443
+
444
+ <message name="ASM.WebApplication.set_languageRequest">
445
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
446
+ <part name="languages" type="tns:ASM.WebApplicationLanguageSequence"/>
447
+ </message>
448
+ <message name="ASM.WebApplication.set_languageResponse">
449
+ </message>
450
+
451
+ <message name="ASM.WebApplication.get_languageRequest">
452
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
453
+ </message>
454
+ <message name="ASM.WebApplication.get_languageResponse">
455
+ <part name="return" type="tns:ASM.WebApplicationLanguageSequence"/>
456
+ </message>
457
+
458
+ <message name="ASM.WebApplication.set_apply_learningRequest">
459
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
460
+ <part name="settings" type="tns:ASM.ApplyLearningSequence"/>
461
+ </message>
462
+ <message name="ASM.WebApplication.set_apply_learningResponse">
463
+ </message>
464
+
465
+ <message name="ASM.WebApplication.get_apply_learningRequest">
466
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
467
+ </message>
468
+ <message name="ASM.WebApplication.get_apply_learningResponse">
469
+ <part name="return" type="tns:ASM.ApplyLearningSequence"/>
470
+ </message>
471
+
472
+ <message name="ASM.WebApplication.set_active_policyRequest">
473
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
474
+ <part name="policy_names" type="tns:Common.StringSequence"/>
475
+ </message>
476
+ <message name="ASM.WebApplication.set_active_policyResponse">
477
+ </message>
478
+
479
+ <message name="ASM.WebApplication.get_active_policyRequest">
480
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
481
+ </message>
482
+ <message name="ASM.WebApplication.get_active_policyResponse">
483
+ <part name="return" type="tns:Common.StringSequence"/>
484
+ </message>
485
+
486
+ <message name="ASM.WebApplication.get_policy_listRequest">
487
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
488
+ </message>
489
+ <message name="ASM.WebApplication.get_policy_listResponse">
490
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
491
+ </message>
492
+
493
+ <message name="ASM.WebApplication.get_enabled_stateRequest">
494
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
495
+ </message>
496
+ <message name="ASM.WebApplication.get_enabled_stateResponse">
497
+ <part name="return" type="tns:Common.BooleanSequence"/>
498
+ </message>
499
+
500
+ <message name="ASM.WebApplication.delete_webappRequest">
501
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
502
+ </message>
503
+ <message name="ASM.WebApplication.delete_webappResponse">
504
+ </message>
505
+
506
+ <message name="ASM.WebApplication.set_logging_profileRequest">
507
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
508
+ <part name="logprof_names" type="tns:Common.StringSequence"/>
509
+ </message>
510
+ <message name="ASM.WebApplication.set_logging_profileResponse">
511
+ </message>
512
+
513
+ <message name="ASM.WebApplication.get_logging_profileRequest">
514
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
515
+ </message>
516
+ <message name="ASM.WebApplication.get_logging_profileResponse">
517
+ <part name="return" type="tns:Common.StringSequence"/>
518
+ </message>
519
+
520
+ <message name="ASM.WebApplication.reconfigureRequest">
521
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
522
+ </message>
523
+ <message name="ASM.WebApplication.reconfigureResponse">
524
+ </message>
525
+
526
+ <message name="ASM.WebApplication.set_language_extendedRequest">
527
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
528
+ <part name="languages" type="tns:ASM.WebApplicationLanguageSequence"/>
529
+ <part name="policy_names" type="tns:Common.StringSequence"/>
530
+ <part name="policy_template_names" type="tns:ASM.PolicyTemplateSequence"/>
531
+ <part name="timeout" type="xsd:long"/>
532
+ </message>
533
+ <message name="ASM.WebApplication.set_language_extendedResponse">
534
+ </message>
535
+
536
+ <message name="ASM.WebApplication.set_language_extended_template_namesRequest">
537
+ <part name="webapp_names" type="tns:Common.StringSequence"/>
538
+ <part name="languages" type="tns:ASM.WebApplicationLanguageSequence"/>
539
+ <part name="policy_names" type="tns:Common.StringSequence"/>
540
+ <part name="policy_template_names" type="tns:Common.StringSequence"/>
541
+ <part name="timeout" type="xsd:long"/>
542
+ </message>
543
+ <message name="ASM.WebApplication.set_language_extended_template_namesResponse">
544
+ </message>
545
+
546
+ <message name="ASM.WebApplication.get_versionRequest">
547
+ </message>
548
+ <message name="ASM.WebApplication.get_versionResponse">
549
+ <part name="return" type="xsd:string"/>
550
+ </message>
551
+
552
+ <!-- portType -->
553
+
554
+ <portType name="ASM.WebApplicationPortType">
555
+ <operation name="get_list">
556
+ <documentation>
557
+ Gets a list of all HTTP classes.
558
+
559
+ </documentation>
560
+ <input message="tns:ASM.WebApplication.get_listRequest"/>
561
+ <output message="tns:ASM.WebApplication.get_listResponse"/>
562
+ </operation>
563
+ <operation name="delete_all_non_active_policies">
564
+ <documentation>
565
+ Deletes all non-active policies for HTTP classes. The active policy will not be deleted.
566
+
567
+ As of v11.1.0, all offline policies will be deleted. HTTP class names will be ignored.
568
+
569
+ </documentation>
570
+ <input message="tns:ASM.WebApplication.delete_all_non_active_policiesRequest"/>
571
+ <output message="tns:ASM.WebApplication.delete_all_non_active_policiesResponse"/>
572
+ </operation>
573
+ <operation name="delete_all_disabled_webapps">
574
+ <documentation>
575
+ Deletes all disabled HTTP classes.
576
+ The corresponding HTTP Class profiles are not deleted.
577
+
578
+ </documentation>
579
+ <input message="tns:ASM.WebApplication.delete_all_disabled_webappsRequest"/>
580
+ <output message="tns:ASM.WebApplication.delete_all_disabled_webappsResponse"/>
581
+ </operation>
582
+ <operation name="set_language">
583
+ <documentation>
584
+ Set the language for the specified HTTP classes.
585
+ Note that the language can only be set once for an HTTP class.
586
+
587
+ </documentation>
588
+ <input message="tns:ASM.WebApplication.set_languageRequest"/>
589
+ <output message="tns:ASM.WebApplication.set_languageResponse"/>
590
+ </operation>
591
+ <operation name="get_language">
592
+ <documentation>
593
+ Gets the language for the specified HTTP classes.
594
+
595
+
596
+ </documentation>
597
+ <input message="tns:ASM.WebApplication.get_languageRequest"/>
598
+ <output message="tns:ASM.WebApplication.get_languageResponse"/>
599
+ </operation>
600
+ <operation name="set_apply_learning">
601
+ <documentation>
602
+ This method has been deprecated.
603
+ Set the "apply learning" for the specified HTTP classes.
604
+
605
+ </documentation>
606
+ <input message="tns:ASM.WebApplication.set_apply_learningRequest"/>
607
+ <output message="tns:ASM.WebApplication.set_apply_learningResponse"/>
608
+ </operation>
609
+ <operation name="get_apply_learning">
610
+ <documentation>
611
+ This method has been deprecated.
612
+ Get the "apply learning" for the specified HTTP classes.
613
+
614
+ </documentation>
615
+ <input message="tns:ASM.WebApplication.get_apply_learningRequest"/>
616
+ <output message="tns:ASM.WebApplication.get_apply_learningResponse"/>
617
+ </operation>
618
+ <operation name="set_active_policy">
619
+ <documentation>
620
+ Set the active policy for the specified HTTP classes.
621
+ This applies the specified policy to the enforcer.
622
+
623
+ </documentation>
624
+ <input message="tns:ASM.WebApplication.set_active_policyRequest"/>
625
+ <output message="tns:ASM.WebApplication.set_active_policyResponse"/>
626
+ </operation>
627
+ <operation name="get_active_policy">
628
+ <documentation>
629
+ Get the active policy for the specified HTTP classes.
630
+
631
+ </documentation>
632
+ <input message="tns:ASM.WebApplication.get_active_policyRequest"/>
633
+ <output message="tns:ASM.WebApplication.get_active_policyResponse"/>
634
+ </operation>
635
+ <operation name="get_policy_list">
636
+ <documentation>
637
+ Returns a list of the policies associated with the specified HTTP class.
638
+
639
+ </documentation>
640
+ <input message="tns:ASM.WebApplication.get_policy_listRequest"/>
641
+ <output message="tns:ASM.WebApplication.get_policy_listResponse"/>
642
+ </operation>
643
+ <operation name="get_enabled_state">
644
+ <documentation>
645
+ Returns the enabled flag of specified HTTP class.
646
+
647
+ </documentation>
648
+ <input message="tns:ASM.WebApplication.get_enabled_stateRequest"/>
649
+ <output message="tns:ASM.WebApplication.get_enabled_stateResponse"/>
650
+ </operation>
651
+ <operation name="delete_webapp">
652
+ <documentation>
653
+ Deletes the specified HTTP classes. Only disabled HTTP classes can be deleted.
654
+ The corresponding HTTP Class profiles are not deleted.
655
+
656
+ </documentation>
657
+ <input message="tns:ASM.WebApplication.delete_webappRequest"/>
658
+ <output message="tns:ASM.WebApplication.delete_webappResponse"/>
659
+ </operation>
660
+ <operation name="set_logging_profile">
661
+ <documentation>
662
+ This method has been deprecated. As of v11.3.0, there is separate Security log profile,
663
+ which is assigned to VS, so logging profile is not associated with ASM directly.
664
+
665
+ Set the logging profile for the specified HTTP classes.
666
+
667
+ </documentation>
668
+ <input message="tns:ASM.WebApplication.set_logging_profileRequest"/>
669
+ <output message="tns:ASM.WebApplication.set_logging_profileResponse"/>
670
+ </operation>
671
+ <operation name="get_logging_profile">
672
+ <documentation>
673
+ This method has been deprecated. As of v11.3.0, there is separate Security log profile,
674
+ which is assigned to VS, so logging profile is not associated with ASM directly.
675
+
676
+ Get the logging profile for the specified HTTP classes.
677
+
678
+ </documentation>
679
+ <input message="tns:ASM.WebApplication.get_logging_profileRequest"/>
680
+ <output message="tns:ASM.WebApplication.get_logging_profileResponse"/>
681
+ </operation>
682
+ <operation name="reconfigure">
683
+ <documentation>
684
+ Reconfigures the specified HTTP classes. This resets all properties of the HTTP class and its active security policy.
685
+
686
+
687
+ </documentation>
688
+ <input message="tns:ASM.WebApplication.reconfigureRequest"/>
689
+ <output message="tns:ASM.WebApplication.reconfigureResponse"/>
690
+ </operation>
691
+ <operation name="set_language_extended">
692
+ <documentation>
693
+ Configures the specified HTTP classes in one-step.
694
+ For each HTTP class:
695
+ sets the language
696
+ adds a policy created from the specified template
697
+ sets the policy active
698
+ removes the original default policy
699
+
700
+ </documentation>
701
+ <input message="tns:ASM.WebApplication.set_language_extendedRequest"/>
702
+ <output message="tns:ASM.WebApplication.set_language_extendedResponse"/>
703
+ </operation>
704
+ <operation name="set_language_extended_template_names">
705
+ <documentation>
706
+ Confugures the specified HTTP classes in one-step.
707
+ For each HTTP class:
708
+ sets the language
709
+ adds a policy created from the specified template (specified by icontrol_name)
710
+ sets the policy active
711
+ removes the original default policy
712
+
713
+ </documentation>
714
+ <input message="tns:ASM.WebApplication.set_language_extended_template_namesRequest"/>
715
+ <output message="tns:ASM.WebApplication.set_language_extended_template_namesResponse"/>
716
+ </operation>
717
+ <operation name="get_version">
718
+ <documentation>
719
+ Gets the version information for this interface.
720
+
721
+
722
+ </documentation>
723
+ <input message="tns:ASM.WebApplication.get_versionRequest"/>
724
+ <output message="tns:ASM.WebApplication.get_versionResponse"/>
725
+ </operation>
726
+ </portType>
727
+
728
+ <!-- binding -->
729
+
730
+ <binding name="ASM.WebApplicationBinding" type="tns:ASM.WebApplicationPortType">
731
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
732
+ <operation name="get_list">
733
+ <documentation>
734
+ Gets a list of all HTTP classes.
735
+
736
+ </documentation>
737
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
738
+ <input>
739
+ <soap:body
740
+ use="encoded"
741
+ namespace="urn:iControl:ASM/WebApplication"
742
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
743
+ </input>
744
+ <output>
745
+ <soap:body
746
+ use="encoded"
747
+ namespace="urn:iControl:ASM/WebApplication"
748
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
749
+ </output>
750
+ </operation>
751
+
752
+ <operation name="delete_all_non_active_policies">
753
+ <documentation>
754
+ Deletes all non-active policies for HTTP classes. The active policy will not be deleted.
755
+
756
+ As of v11.1.0, all offline policies will be deleted. HTTP class names will be ignored.
757
+
758
+ </documentation>
759
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
760
+ <input>
761
+ <soap:body
762
+ use="encoded"
763
+ namespace="urn:iControl:ASM/WebApplication"
764
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
765
+ </input>
766
+ <output>
767
+ <soap:body
768
+ use="encoded"
769
+ namespace="urn:iControl:ASM/WebApplication"
770
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
771
+ </output>
772
+ </operation>
773
+
774
+ <operation name="delete_all_disabled_webapps">
775
+ <documentation>
776
+ Deletes all disabled HTTP classes.
777
+ The corresponding HTTP Class profiles are not deleted.
778
+
779
+ </documentation>
780
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
781
+ <input>
782
+ <soap:body
783
+ use="encoded"
784
+ namespace="urn:iControl:ASM/WebApplication"
785
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
786
+ </input>
787
+ <output>
788
+ <soap:body
789
+ use="encoded"
790
+ namespace="urn:iControl:ASM/WebApplication"
791
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
792
+ </output>
793
+ </operation>
794
+
795
+ <operation name="set_language">
796
+ <documentation>
797
+ Set the language for the specified HTTP classes.
798
+ Note that the language can only be set once for an HTTP class.
799
+
800
+ </documentation>
801
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
802
+ <input>
803
+ <soap:body
804
+ use="encoded"
805
+ namespace="urn:iControl:ASM/WebApplication"
806
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
807
+ </input>
808
+ <output>
809
+ <soap:body
810
+ use="encoded"
811
+ namespace="urn:iControl:ASM/WebApplication"
812
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
813
+ </output>
814
+ </operation>
815
+
816
+ <operation name="get_language">
817
+ <documentation>
818
+ Gets the language for the specified HTTP classes.
819
+
820
+
821
+ </documentation>
822
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
823
+ <input>
824
+ <soap:body
825
+ use="encoded"
826
+ namespace="urn:iControl:ASM/WebApplication"
827
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
828
+ </input>
829
+ <output>
830
+ <soap:body
831
+ use="encoded"
832
+ namespace="urn:iControl:ASM/WebApplication"
833
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
834
+ </output>
835
+ </operation>
836
+
837
+ <operation name="set_apply_learning">
838
+ <documentation>
839
+ This method has been deprecated.
840
+ Set the "apply learning" for the specified HTTP classes.
841
+
842
+ </documentation>
843
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
844
+ <input>
845
+ <soap:body
846
+ use="encoded"
847
+ namespace="urn:iControl:ASM/WebApplication"
848
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
849
+ </input>
850
+ <output>
851
+ <soap:body
852
+ use="encoded"
853
+ namespace="urn:iControl:ASM/WebApplication"
854
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
855
+ </output>
856
+ </operation>
857
+
858
+ <operation name="get_apply_learning">
859
+ <documentation>
860
+ This method has been deprecated.
861
+ Get the "apply learning" for the specified HTTP classes.
862
+
863
+ </documentation>
864
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
865
+ <input>
866
+ <soap:body
867
+ use="encoded"
868
+ namespace="urn:iControl:ASM/WebApplication"
869
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
870
+ </input>
871
+ <output>
872
+ <soap:body
873
+ use="encoded"
874
+ namespace="urn:iControl:ASM/WebApplication"
875
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
876
+ </output>
877
+ </operation>
878
+
879
+ <operation name="set_active_policy">
880
+ <documentation>
881
+ Set the active policy for the specified HTTP classes.
882
+ This applies the specified policy to the enforcer.
883
+
884
+ </documentation>
885
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
886
+ <input>
887
+ <soap:body
888
+ use="encoded"
889
+ namespace="urn:iControl:ASM/WebApplication"
890
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
891
+ </input>
892
+ <output>
893
+ <soap:body
894
+ use="encoded"
895
+ namespace="urn:iControl:ASM/WebApplication"
896
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
897
+ </output>
898
+ </operation>
899
+
900
+ <operation name="get_active_policy">
901
+ <documentation>
902
+ Get the active policy for the specified HTTP classes.
903
+
904
+ </documentation>
905
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
906
+ <input>
907
+ <soap:body
908
+ use="encoded"
909
+ namespace="urn:iControl:ASM/WebApplication"
910
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
911
+ </input>
912
+ <output>
913
+ <soap:body
914
+ use="encoded"
915
+ namespace="urn:iControl:ASM/WebApplication"
916
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
917
+ </output>
918
+ </operation>
919
+
920
+ <operation name="get_policy_list">
921
+ <documentation>
922
+ Returns a list of the policies associated with the specified HTTP class.
923
+
924
+ </documentation>
925
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
926
+ <input>
927
+ <soap:body
928
+ use="encoded"
929
+ namespace="urn:iControl:ASM/WebApplication"
930
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
931
+ </input>
932
+ <output>
933
+ <soap:body
934
+ use="encoded"
935
+ namespace="urn:iControl:ASM/WebApplication"
936
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
937
+ </output>
938
+ </operation>
939
+
940
+ <operation name="get_enabled_state">
941
+ <documentation>
942
+ Returns the enabled flag of specified HTTP class.
943
+
944
+ </documentation>
945
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
946
+ <input>
947
+ <soap:body
948
+ use="encoded"
949
+ namespace="urn:iControl:ASM/WebApplication"
950
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
951
+ </input>
952
+ <output>
953
+ <soap:body
954
+ use="encoded"
955
+ namespace="urn:iControl:ASM/WebApplication"
956
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
957
+ </output>
958
+ </operation>
959
+
960
+ <operation name="delete_webapp">
961
+ <documentation>
962
+ Deletes the specified HTTP classes. Only disabled HTTP classes can be deleted.
963
+ The corresponding HTTP Class profiles are not deleted.
964
+
965
+ </documentation>
966
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
967
+ <input>
968
+ <soap:body
969
+ use="encoded"
970
+ namespace="urn:iControl:ASM/WebApplication"
971
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
972
+ </input>
973
+ <output>
974
+ <soap:body
975
+ use="encoded"
976
+ namespace="urn:iControl:ASM/WebApplication"
977
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
978
+ </output>
979
+ </operation>
980
+
981
+ <operation name="set_logging_profile">
982
+ <documentation>
983
+ This method has been deprecated. As of v11.3.0, there is separate Security log profile,
984
+ which is assigned to VS, so logging profile is not associated with ASM directly.
985
+
986
+ Set the logging profile for the specified HTTP classes.
987
+
988
+ </documentation>
989
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
990
+ <input>
991
+ <soap:body
992
+ use="encoded"
993
+ namespace="urn:iControl:ASM/WebApplication"
994
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
995
+ </input>
996
+ <output>
997
+ <soap:body
998
+ use="encoded"
999
+ namespace="urn:iControl:ASM/WebApplication"
1000
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1001
+ </output>
1002
+ </operation>
1003
+
1004
+ <operation name="get_logging_profile">
1005
+ <documentation>
1006
+ This method has been deprecated. As of v11.3.0, there is separate Security log profile,
1007
+ which is assigned to VS, so logging profile is not associated with ASM directly.
1008
+
1009
+ Get the logging profile for the specified HTTP classes.
1010
+
1011
+ </documentation>
1012
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
1013
+ <input>
1014
+ <soap:body
1015
+ use="encoded"
1016
+ namespace="urn:iControl:ASM/WebApplication"
1017
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1018
+ </input>
1019
+ <output>
1020
+ <soap:body
1021
+ use="encoded"
1022
+ namespace="urn:iControl:ASM/WebApplication"
1023
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1024
+ </output>
1025
+ </operation>
1026
+
1027
+ <operation name="reconfigure">
1028
+ <documentation>
1029
+ Reconfigures the specified HTTP classes. This resets all properties of the HTTP class and its active security policy.
1030
+
1031
+
1032
+ </documentation>
1033
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
1034
+ <input>
1035
+ <soap:body
1036
+ use="encoded"
1037
+ namespace="urn:iControl:ASM/WebApplication"
1038
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1039
+ </input>
1040
+ <output>
1041
+ <soap:body
1042
+ use="encoded"
1043
+ namespace="urn:iControl:ASM/WebApplication"
1044
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1045
+ </output>
1046
+ </operation>
1047
+
1048
+ <operation name="set_language_extended">
1049
+ <documentation>
1050
+ Configures the specified HTTP classes in one-step.
1051
+ For each HTTP class:
1052
+ sets the language
1053
+ adds a policy created from the specified template
1054
+ sets the policy active
1055
+ removes the original default policy
1056
+
1057
+ </documentation>
1058
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
1059
+ <input>
1060
+ <soap:body
1061
+ use="encoded"
1062
+ namespace="urn:iControl:ASM/WebApplication"
1063
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1064
+ </input>
1065
+ <output>
1066
+ <soap:body
1067
+ use="encoded"
1068
+ namespace="urn:iControl:ASM/WebApplication"
1069
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1070
+ </output>
1071
+ </operation>
1072
+
1073
+ <operation name="set_language_extended_template_names">
1074
+ <documentation>
1075
+ Confugures the specified HTTP classes in one-step.
1076
+ For each HTTP class:
1077
+ sets the language
1078
+ adds a policy created from the specified template (specified by icontrol_name)
1079
+ sets the policy active
1080
+ removes the original default policy
1081
+
1082
+ </documentation>
1083
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
1084
+ <input>
1085
+ <soap:body
1086
+ use="encoded"
1087
+ namespace="urn:iControl:ASM/WebApplication"
1088
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1089
+ </input>
1090
+ <output>
1091
+ <soap:body
1092
+ use="encoded"
1093
+ namespace="urn:iControl:ASM/WebApplication"
1094
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1095
+ </output>
1096
+ </operation>
1097
+
1098
+ <operation name="get_version">
1099
+ <documentation>
1100
+ Gets the version information for this interface.
1101
+
1102
+
1103
+ </documentation>
1104
+ <soap:operation soapAction="urn:iControl:ASM/WebApplication"/>
1105
+ <input>
1106
+ <soap:body
1107
+ use="encoded"
1108
+ namespace="urn:iControl:ASM/WebApplication"
1109
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1110
+ </input>
1111
+ <output>
1112
+ <soap:body
1113
+ use="encoded"
1114
+ namespace="urn:iControl:ASM/WebApplication"
1115
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1116
+ </output>
1117
+ </operation>
1118
+ </binding>
1119
+
1120
+ <!-- service -->
1121
+
1122
+ <service name="ASM.WebApplication">
1123
+ <documentation>
1124
+ *IMPORTANT* This entire interface has been deprecated (as of
1125
+ 11.4.0). Its functionality has been moved to the Policy
1126
+ interface.
1127
+
1128
+ The WebApplication interface enables you to manipulate Application Security Policies (until v11.1.0, ASM Web Applications)
1129
+ associated with HTTP Class profiles.
1130
+
1131
+ This interface does not support transactions.
1132
+
1133
+ </documentation>
1134
+ <port name="ASM.WebApplicationPort" binding="tns:ASM.WebApplicationBinding">
1135
+ <soap:address location="https://url_to_service"/>
1136
+ </port>
1137
+ </service>
1138
+ </definitions>