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,1323 @@
1
+ <?xml version="1.0" ?>
2
+ <!--
3
+ Copyright (c) 1996-2013, F5 Networks, Inc., Seattle, Washington. All rights reserved.
4
+
5
+ F5, F5 Networks, the F5 logo, BIG-IP, 3-DNS, iControl, GLOBAL-SITE, SEE-IT, EDGE-FX, FireGuard, Internet Control Architecture, IP Application Switch, iRules, PACKET VELOCITY, SYN Check, CONTROL YOUR WORLD, OneConnect, ZoneRunner, uRoam, FirePass, and TrafficShield are registered trademarks or trademarks of F5 Networks, Inc., in the U.S. and certain other countries.
6
+
7
+ All other trademarks mentioned in this document are the property of their respective owners. F5 Networks' trademarks may not be used in connection with any product or service except as permitted in writing by F5.
8
+
9
+ -->
10
+ <definitions name="Management.ApplicationTemplate"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:simpleType name="Common.EnabledState">
25
+ <xsd:restriction base="xsd:string">
26
+ <xsd:enumeration value="STATE_DISABLED">
27
+ <xsd:annotation>
28
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
29
+ </xsd:annotation>
30
+ </xsd:enumeration>
31
+ <xsd:enumeration value="STATE_ENABLED">
32
+ <xsd:annotation>
33
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
34
+ </xsd:annotation>
35
+ </xsd:enumeration>
36
+ </xsd:restriction>
37
+ </xsd:simpleType>
38
+ <xsd:complexType name="Common.StringSequence">
39
+ <xsd:complexContent>
40
+ <xsd:restriction base='SOAP-ENC:Array'>
41
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
42
+ </xsd:restriction>
43
+ </xsd:complexContent>
44
+ </xsd:complexType>
45
+ <xsd:simpleType name="Common.VerificationStatus">
46
+ <xsd:restriction base="xsd:string">
47
+ <xsd:enumeration value="VERIFICATION_STATUS_UNKNOWN">
48
+ <xsd:annotation>
49
+ <xsd:documentation>VERIFICATION_STATUS_UNKNOWN</xsd:documentation>
50
+ </xsd:annotation>
51
+ </xsd:enumeration>
52
+ <xsd:enumeration value="VERIFICATION_STATUS_NONE">
53
+ <xsd:annotation>
54
+ <xsd:documentation>VERIFICATION_STATUS_NONE</xsd:documentation>
55
+ </xsd:annotation>
56
+ </xsd:enumeration>
57
+ <xsd:enumeration value="VERIFICATION_STATUS_SIGNATURE_NOT_VERIFIED">
58
+ <xsd:annotation>
59
+ <xsd:documentation>VERIFICATION_STATUS_SIGNATURE_NOT_VERIFIED</xsd:documentation>
60
+ </xsd:annotation>
61
+ </xsd:enumeration>
62
+ <xsd:enumeration value="VERIFICATION_STATUS_SIGNATURE_VERIFIED">
63
+ <xsd:annotation>
64
+ <xsd:documentation>VERIFICATION_STATUS_SIGNATURE_VERIFIED</xsd:documentation>
65
+ </xsd:annotation>
66
+ </xsd:enumeration>
67
+ <xsd:enumeration value="VERIFICATION_STATUS_CHECKSUM_NOT_VERIFIED">
68
+ <xsd:annotation>
69
+ <xsd:documentation>VERIFICATION_STATUS_CHECKSUM_NOT_VERIFIED</xsd:documentation>
70
+ </xsd:annotation>
71
+ </xsd:enumeration>
72
+ <xsd:enumeration value="VERIFICATION_STATUS_CHECKSUM_VERIFIED">
73
+ <xsd:annotation>
74
+ <xsd:documentation>VERIFICATION_STATUS_CHECKSUM_VERIFIED</xsd:documentation>
75
+ </xsd:annotation>
76
+ </xsd:enumeration>
77
+ </xsd:restriction>
78
+ </xsd:simpleType>
79
+ <xsd:complexType name="Common.TMOSModuleSequence">
80
+ <xsd:complexContent>
81
+ <xsd:restriction base='SOAP-ENC:Array'>
82
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.TMOSModule[]'/>
83
+ </xsd:restriction>
84
+ </xsd:complexContent>
85
+ </xsd:complexType>
86
+ <xsd:complexType name="Common.StringSequenceSequence">
87
+ <xsd:complexContent>
88
+ <xsd:restriction base='SOAP-ENC:Array'>
89
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
90
+ </xsd:restriction>
91
+ </xsd:complexContent>
92
+ </xsd:complexType>
93
+ <xsd:complexType name="Common.VerificationStatusSequence">
94
+ <xsd:complexContent>
95
+ <xsd:restriction base='SOAP-ENC:Array'>
96
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.VerificationStatus[]'/>
97
+ </xsd:restriction>
98
+ </xsd:complexContent>
99
+ </xsd:complexType>
100
+ <xsd:simpleType name="Common.TMOSModule">
101
+ <xsd:restriction base="xsd:string">
102
+ <xsd:enumeration value="TMOS_MODULE_ASM">
103
+ <xsd:annotation>
104
+ <xsd:documentation>TMOS_MODULE_ASM</xsd:documentation>
105
+ </xsd:annotation>
106
+ </xsd:enumeration>
107
+ <xsd:enumeration value="TMOS_MODULE_SAM">
108
+ <xsd:annotation>
109
+ <xsd:documentation>TMOS_MODULE_SAM</xsd:documentation>
110
+ </xsd:annotation>
111
+ </xsd:enumeration>
112
+ <xsd:enumeration value="TMOS_MODULE_WAM">
113
+ <xsd:annotation>
114
+ <xsd:documentation>TMOS_MODULE_WAM</xsd:documentation>
115
+ </xsd:annotation>
116
+ </xsd:enumeration>
117
+ <xsd:enumeration value="TMOS_MODULE_PSM">
118
+ <xsd:annotation>
119
+ <xsd:documentation>TMOS_MODULE_PSM</xsd:documentation>
120
+ </xsd:annotation>
121
+ </xsd:enumeration>
122
+ <xsd:enumeration value="TMOS_MODULE_WOM">
123
+ <xsd:annotation>
124
+ <xsd:documentation>TMOS_MODULE_WOM</xsd:documentation>
125
+ </xsd:annotation>
126
+ </xsd:enumeration>
127
+ <xsd:enumeration value="TMOS_MODULE_LC">
128
+ <xsd:annotation>
129
+ <xsd:documentation>TMOS_MODULE_LC</xsd:documentation>
130
+ </xsd:annotation>
131
+ </xsd:enumeration>
132
+ <xsd:enumeration value="TMOS_MODULE_LTM">
133
+ <xsd:annotation>
134
+ <xsd:documentation>TMOS_MODULE_LTM</xsd:documentation>
135
+ </xsd:annotation>
136
+ </xsd:enumeration>
137
+ <xsd:enumeration value="TMOS_MODULE_GTM">
138
+ <xsd:annotation>
139
+ <xsd:documentation>TMOS_MODULE_GTM</xsd:documentation>
140
+ </xsd:annotation>
141
+ </xsd:enumeration>
142
+ <xsd:enumeration value="TMOS_MODULE_UNKNOWN">
143
+ <xsd:annotation>
144
+ <xsd:documentation>TMOS_MODULE_UNKNOWN</xsd:documentation>
145
+ </xsd:annotation>
146
+ </xsd:enumeration>
147
+ <xsd:enumeration value="TMOS_MODULE_WOML">
148
+ <xsd:annotation>
149
+ <xsd:documentation>TMOS_MODULE_WOML</xsd:documentation>
150
+ </xsd:annotation>
151
+ </xsd:enumeration>
152
+ <xsd:enumeration value="TMOS_MODULE_APML">
153
+ <xsd:annotation>
154
+ <xsd:documentation>TMOS_MODULE_APML</xsd:documentation>
155
+ </xsd:annotation>
156
+ </xsd:enumeration>
157
+ <xsd:enumeration value="TMOS_MODULE_EM">
158
+ <xsd:annotation>
159
+ <xsd:documentation>TMOS_MODULE_EM</xsd:documentation>
160
+ </xsd:annotation>
161
+ </xsd:enumeration>
162
+ <xsd:enumeration value="TMOS_MODULE_VCMP">
163
+ <xsd:annotation>
164
+ <xsd:documentation>TMOS_MODULE_VCMP</xsd:documentation>
165
+ </xsd:annotation>
166
+ </xsd:enumeration>
167
+ <xsd:enumeration value="TMOS_MODULE_TMOS">
168
+ <xsd:annotation>
169
+ <xsd:documentation>TMOS_MODULE_TMOS</xsd:documentation>
170
+ </xsd:annotation>
171
+ </xsd:enumeration>
172
+ <xsd:enumeration value="TMOS_MODULE_HOST">
173
+ <xsd:annotation>
174
+ <xsd:documentation>TMOS_MODULE_HOST</xsd:documentation>
175
+ </xsd:annotation>
176
+ </xsd:enumeration>
177
+ <xsd:enumeration value="TMOS_MODULE_UI">
178
+ <xsd:annotation>
179
+ <xsd:documentation>TMOS_MODULE_UI</xsd:documentation>
180
+ </xsd:annotation>
181
+ </xsd:enumeration>
182
+ <xsd:enumeration value="TMOS_MODULE_MONITORS">
183
+ <xsd:annotation>
184
+ <xsd:documentation>TMOS_MODULE_MONITORS</xsd:documentation>
185
+ </xsd:annotation>
186
+ </xsd:enumeration>
187
+ <xsd:enumeration value="TMOS_MODULE_AVR">
188
+ <xsd:annotation>
189
+ <xsd:documentation>TMOS_MODULE_AVR</xsd:documentation>
190
+ </xsd:annotation>
191
+ </xsd:enumeration>
192
+ <xsd:enumeration value="TMOS_MODULE_PEM">
193
+ <xsd:annotation>
194
+ <xsd:documentation>TMOS_MODULE_PEM</xsd:documentation>
195
+ </xsd:annotation>
196
+ </xsd:enumeration>
197
+ <xsd:enumeration value="TMOS_MODULE_CGNAT">
198
+ <xsd:annotation>
199
+ <xsd:documentation>TMOS_MODULE_CGNAT</xsd:documentation>
200
+ </xsd:annotation>
201
+ </xsd:enumeration>
202
+ <xsd:enumeration value="TMOS_MODULE_AFM">
203
+ <xsd:annotation>
204
+ <xsd:documentation>TMOS_MODULE_AFM</xsd:documentation>
205
+ </xsd:annotation>
206
+ </xsd:enumeration>
207
+ <xsd:enumeration value="TMOS_MODULE_AM">
208
+ <xsd:annotation>
209
+ <xsd:documentation>TMOS_MODULE_AM</xsd:documentation>
210
+ </xsd:annotation>
211
+ </xsd:enumeration>
212
+ </xsd:restriction>
213
+ </xsd:simpleType>
214
+ <xsd:complexType name="Common.TMOSModuleSequenceSequence">
215
+ <xsd:complexContent>
216
+ <xsd:restriction base='SOAP-ENC:Array'>
217
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.TMOSModuleSequence[]'/>
218
+ </xsd:restriction>
219
+ </xsd:complexContent>
220
+ </xsd:complexType>
221
+ <xsd:complexType name="Common.EnabledStateSequence">
222
+ <xsd:complexContent>
223
+ <xsd:restriction base='SOAP-ENC:Array'>
224
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
225
+ </xsd:restriction>
226
+ </xsd:complexContent>
227
+ </xsd:complexType>
228
+ </xsd:schema>
229
+ </types>
230
+
231
+ <!-- message -->
232
+
233
+ <message name="Management.ApplicationTemplate.get_listRequest">
234
+ </message>
235
+ <message name="Management.ApplicationTemplate.get_listResponse">
236
+ <part name="return" type="tns:Common.StringSequence"/>
237
+ </message>
238
+
239
+ <message name="Management.ApplicationTemplate.get_action_listRequest">
240
+ <part name="templates" type="tns:Common.StringSequence"/>
241
+ </message>
242
+ <message name="Management.ApplicationTemplate.get_action_listResponse">
243
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
244
+ </message>
245
+
246
+ <message name="Management.ApplicationTemplate.createRequest">
247
+ <part name="templates" type="tns:Common.StringSequence"/>
248
+ </message>
249
+ <message name="Management.ApplicationTemplate.createResponse">
250
+ </message>
251
+
252
+ <message name="Management.ApplicationTemplate.delete_application_templateRequest">
253
+ <part name="templates" type="tns:Common.StringSequence"/>
254
+ </message>
255
+ <message name="Management.ApplicationTemplate.delete_application_templateResponse">
256
+ </message>
257
+
258
+ <message name="Management.ApplicationTemplate.delete_all_templatesRequest">
259
+ </message>
260
+ <message name="Management.ApplicationTemplate.delete_all_templatesResponse">
261
+ </message>
262
+
263
+ <message name="Management.ApplicationTemplate.set_descriptionRequest">
264
+ <part name="templates" type="tns:Common.StringSequence"/>
265
+ <part name="values" type="tns:Common.StringSequence"/>
266
+ </message>
267
+ <message name="Management.ApplicationTemplate.set_descriptionResponse">
268
+ </message>
269
+
270
+ <message name="Management.ApplicationTemplate.get_descriptionRequest">
271
+ <part name="templates" type="tns:Common.StringSequence"/>
272
+ </message>
273
+ <message name="Management.ApplicationTemplate.get_descriptionResponse">
274
+ <part name="return" type="tns:Common.StringSequence"/>
275
+ </message>
276
+
277
+ <message name="Management.ApplicationTemplate.set_prerequisite_bigip_version_minimumRequest">
278
+ <part name="templates" type="tns:Common.StringSequence"/>
279
+ <part name="values" type="tns:Common.StringSequence"/>
280
+ </message>
281
+ <message name="Management.ApplicationTemplate.set_prerequisite_bigip_version_minimumResponse">
282
+ </message>
283
+
284
+ <message name="Management.ApplicationTemplate.add_checksumRequest">
285
+ <part name="templates" type="tns:Common.StringSequence"/>
286
+ </message>
287
+ <message name="Management.ApplicationTemplate.add_checksumResponse">
288
+ </message>
289
+
290
+ <message name="Management.ApplicationTemplate.add_signatureRequest">
291
+ <part name="templates" type="tns:Common.StringSequence"/>
292
+ <part name="signing_key_names" type="tns:Common.StringSequence"/>
293
+ <part name="public_cert_names" type="tns:Common.StringSequence"/>
294
+ </message>
295
+ <message name="Management.ApplicationTemplate.add_signatureResponse">
296
+ </message>
297
+
298
+ <message name="Management.ApplicationTemplate.clear_verificationRequest">
299
+ <part name="templates" type="tns:Common.StringSequence"/>
300
+ </message>
301
+ <message name="Management.ApplicationTemplate.clear_verificationResponse">
302
+ </message>
303
+
304
+ <message name="Management.ApplicationTemplate.set_ignore_verification_stateRequest">
305
+ <part name="templates" type="tns:Common.StringSequence"/>
306
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
307
+ </message>
308
+ <message name="Management.ApplicationTemplate.set_ignore_verification_stateResponse">
309
+ </message>
310
+
311
+ <message name="Management.ApplicationTemplate.get_ignore_verification_stateRequest">
312
+ <part name="templates" type="tns:Common.StringSequence"/>
313
+ </message>
314
+ <message name="Management.ApplicationTemplate.get_ignore_verification_stateResponse">
315
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
316
+ </message>
317
+
318
+ <message name="Management.ApplicationTemplate.get_prerequisite_bigip_version_minimumRequest">
319
+ <part name="templates" type="tns:Common.StringSequence"/>
320
+ </message>
321
+ <message name="Management.ApplicationTemplate.get_prerequisite_bigip_version_minimumResponse">
322
+ <part name="return" type="tns:Common.StringSequence"/>
323
+ </message>
324
+
325
+ <message name="Management.ApplicationTemplate.set_prerequisite_bigip_version_maximumRequest">
326
+ <part name="templates" type="tns:Common.StringSequence"/>
327
+ <part name="values" type="tns:Common.StringSequence"/>
328
+ </message>
329
+ <message name="Management.ApplicationTemplate.set_prerequisite_bigip_version_maximumResponse">
330
+ </message>
331
+
332
+ <message name="Management.ApplicationTemplate.get_prerequisite_bigip_version_maximumRequest">
333
+ <part name="templates" type="tns:Common.StringSequence"/>
334
+ </message>
335
+ <message name="Management.ApplicationTemplate.get_prerequisite_bigip_version_maximumResponse">
336
+ <part name="return" type="tns:Common.StringSequence"/>
337
+ </message>
338
+
339
+ <message name="Management.ApplicationTemplate.set_prerequisite_modulesRequest">
340
+ <part name="templates" type="tns:Common.StringSequence"/>
341
+ <part name="values" type="tns:Common.TMOSModuleSequenceSequence"/>
342
+ </message>
343
+ <message name="Management.ApplicationTemplate.set_prerequisite_modulesResponse">
344
+ </message>
345
+
346
+ <message name="Management.ApplicationTemplate.get_prerequisite_modulesRequest">
347
+ <part name="templates" type="tns:Common.StringSequence"/>
348
+ </message>
349
+ <message name="Management.ApplicationTemplate.get_prerequisite_modulesResponse">
350
+ <part name="return" type="tns:Common.TMOSModuleSequenceSequence"/>
351
+ </message>
352
+
353
+ <message name="Management.ApplicationTemplate.get_prerequisite_errorsRequest">
354
+ <part name="templates" type="tns:Common.StringSequence"/>
355
+ </message>
356
+ <message name="Management.ApplicationTemplate.get_prerequisite_errorsResponse">
357
+ <part name="return" type="tns:Common.StringSequence"/>
358
+ </message>
359
+
360
+ <message name="Management.ApplicationTemplate.get_verification_statusRequest">
361
+ <part name="templates" type="tns:Common.StringSequence"/>
362
+ </message>
363
+ <message name="Management.ApplicationTemplate.get_verification_statusResponse">
364
+ <part name="return" type="tns:Common.VerificationStatusSequence"/>
365
+ </message>
366
+
367
+ <message name="Management.ApplicationTemplate.set_action_presentationRequest">
368
+ <part name="templates" type="tns:Common.StringSequence"/>
369
+ <part name="actions" type="tns:Common.StringSequenceSequence"/>
370
+ <part name="values" type="tns:Common.StringSequenceSequence"/>
371
+ </message>
372
+ <message name="Management.ApplicationTemplate.set_action_presentationResponse">
373
+ </message>
374
+
375
+ <message name="Management.ApplicationTemplate.get_action_presentationRequest">
376
+ <part name="templates" type="tns:Common.StringSequence"/>
377
+ <part name="actions" type="tns:Common.StringSequenceSequence"/>
378
+ </message>
379
+ <message name="Management.ApplicationTemplate.get_action_presentationResponse">
380
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
381
+ </message>
382
+
383
+ <message name="Management.ApplicationTemplate.set_action_implementationRequest">
384
+ <part name="templates" type="tns:Common.StringSequence"/>
385
+ <part name="actions" type="tns:Common.StringSequenceSequence"/>
386
+ <part name="values" type="tns:Common.StringSequenceSequence"/>
387
+ </message>
388
+ <message name="Management.ApplicationTemplate.set_action_implementationResponse">
389
+ </message>
390
+
391
+ <message name="Management.ApplicationTemplate.get_action_implementationRequest">
392
+ <part name="templates" type="tns:Common.StringSequence"/>
393
+ <part name="actions" type="tns:Common.StringSequenceSequence"/>
394
+ </message>
395
+ <message name="Management.ApplicationTemplate.get_action_implementationResponse">
396
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
397
+ </message>
398
+
399
+ <message name="Management.ApplicationTemplate.set_action_presentation_helpRequest">
400
+ <part name="templates" type="tns:Common.StringSequence"/>
401
+ <part name="actions" type="tns:Common.StringSequenceSequence"/>
402
+ <part name="values" type="tns:Common.StringSequenceSequence"/>
403
+ </message>
404
+ <message name="Management.ApplicationTemplate.set_action_presentation_helpResponse">
405
+ </message>
406
+
407
+ <message name="Management.ApplicationTemplate.get_action_presentation_helpRequest">
408
+ <part name="templates" type="tns:Common.StringSequence"/>
409
+ <part name="actions" type="tns:Common.StringSequenceSequence"/>
410
+ </message>
411
+ <message name="Management.ApplicationTemplate.get_action_presentation_helpResponse">
412
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
413
+ </message>
414
+
415
+ <message name="Management.ApplicationTemplate.get_versionRequest">
416
+ </message>
417
+ <message name="Management.ApplicationTemplate.get_versionResponse">
418
+ <part name="return" type="xsd:string"/>
419
+ </message>
420
+
421
+ <!-- portType -->
422
+
423
+ <portType name="Management.ApplicationTemplatePortType">
424
+ <operation name="get_list">
425
+ <documentation>
426
+ Gets the names of all application templates.
427
+
428
+ </documentation>
429
+ <input message="tns:Management.ApplicationTemplate.get_listRequest"/>
430
+ <output message="tns:Management.ApplicationTemplate.get_listResponse"/>
431
+ </operation>
432
+ <operation name="get_action_list">
433
+ <documentation>
434
+ Gets the names of the actions in the application templates.
435
+
436
+ </documentation>
437
+ <input message="tns:Management.ApplicationTemplate.get_action_listRequest"/>
438
+ <output message="tns:Management.ApplicationTemplate.get_action_listResponse"/>
439
+ </operation>
440
+ <operation name="create">
441
+ <documentation>
442
+ Creates a set of application templates. Each template automatically
443
+ is created with a default empty "definition" action.
444
+
445
+ </documentation>
446
+ <input message="tns:Management.ApplicationTemplate.createRequest"/>
447
+ <output message="tns:Management.ApplicationTemplate.createResponse"/>
448
+ </operation>
449
+ <operation name="delete_application_template">
450
+ <documentation>
451
+ Deletes a set of application templates.
452
+
453
+ </documentation>
454
+ <input message="tns:Management.ApplicationTemplate.delete_application_templateRequest"/>
455
+ <output message="tns:Management.ApplicationTemplate.delete_application_templateResponse"/>
456
+ </operation>
457
+ <operation name="delete_all_templates">
458
+ <documentation>
459
+ Deletes all application templates.
460
+
461
+ </documentation>
462
+ <input message="tns:Management.ApplicationTemplate.delete_all_templatesRequest"/>
463
+ <output message="tns:Management.ApplicationTemplate.delete_all_templatesResponse"/>
464
+ </operation>
465
+ <operation name="set_description">
466
+ <documentation>
467
+ Sets the descriptions for the specified appliation templates.
468
+
469
+ </documentation>
470
+ <input message="tns:Management.ApplicationTemplate.set_descriptionRequest"/>
471
+ <output message="tns:Management.ApplicationTemplate.set_descriptionResponse"/>
472
+ </operation>
473
+ <operation name="get_description">
474
+ <documentation>
475
+ Gets the descriptions for the specified application templates.
476
+
477
+ </documentation>
478
+ <input message="tns:Management.ApplicationTemplate.get_descriptionRequest"/>
479
+ <output message="tns:Management.ApplicationTemplate.get_descriptionResponse"/>
480
+ </operation>
481
+ <operation name="set_prerequisite_bigip_version_minimum">
482
+ <documentation>
483
+ Sets the minimum version of BIG-IP for which this template is valid.
484
+ Attempting to create an application from this template on an
485
+ incompatible version of BIG-IP will produce an error.
486
+ The version is of the form #.#.#, #.#, or #. For example,
487
+ "11", "11.1", and "11.1.2" would all be valid version strings.
488
+
489
+ </documentation>
490
+ <input message="tns:Management.ApplicationTemplate.set_prerequisite_bigip_version_minimumRequest"/>
491
+ <output message="tns:Management.ApplicationTemplate.set_prerequisite_bigip_version_minimumResponse"/>
492
+ </operation>
493
+ <operation name="add_checksum">
494
+ <documentation>
495
+ Computes and adds a checksum to each specified template.
496
+ To each template, either checksum or signature can be added but
497
+ not both. The system will throw if both algorithms are attempted
498
+ on one template.
499
+
500
+ </documentation>
501
+ <input message="tns:Management.ApplicationTemplate.add_checksumRequest"/>
502
+ <output message="tns:Management.ApplicationTemplate.add_checksumResponse"/>
503
+ </operation>
504
+ <operation name="add_signature">
505
+ <documentation>
506
+ Computes and adds a signature to each specified template.
507
+ The signature is used during template validation to assure that the
508
+ template's fields - presentation, implementation, help and macro
509
+ have not been modified. To each template, either checksum or
510
+ signature can be added but not both. The system will throw if both
511
+ algorithms are attempted on one template.
512
+
513
+ </documentation>
514
+ <input message="tns:Management.ApplicationTemplate.add_signatureRequest"/>
515
+ <output message="tns:Management.ApplicationTemplate.add_signatureResponse"/>
516
+ </operation>
517
+ <operation name="clear_verification">
518
+ <documentation>
519
+ Clear both signature and checksum fields for the specified
520
+ templates. The difference between enabling "ignore_verification"
521
+ and "clear_verification" is:
522
+ "ignore" suspends the verification temporarily while leaving the
523
+ signature and checksum fields intact. Verification can be resumed.
524
+ "clear" resets for good the signing information as if the templates
525
+ had never been signed.
526
+
527
+ </documentation>
528
+ <input message="tns:Management.ApplicationTemplate.clear_verificationRequest"/>
529
+ <output message="tns:Management.ApplicationTemplate.clear_verificationResponse"/>
530
+ </operation>
531
+ <operation name="set_ignore_verification_state">
532
+ <documentation>
533
+ Sets the ignore verification state for the specified templates.
534
+ If enabled, the system will ignore the signature or checksum.
535
+ Otherwise the signature or checksum is used during template
536
+ validation to assure that the template's field - presentation,
537
+ implementation, help and macro have not been modified.
538
+
539
+ </documentation>
540
+ <input message="tns:Management.ApplicationTemplate.set_ignore_verification_stateRequest"/>
541
+ <output message="tns:Management.ApplicationTemplate.set_ignore_verification_stateResponse"/>
542
+ </operation>
543
+ <operation name="get_ignore_verification_state">
544
+ <documentation>
545
+ Gets the state of ignoring the signature or checksum.
546
+
547
+ </documentation>
548
+ <input message="tns:Management.ApplicationTemplate.get_ignore_verification_stateRequest"/>
549
+ <output message="tns:Management.ApplicationTemplate.get_ignore_verification_stateResponse"/>
550
+ </operation>
551
+ <operation name="get_prerequisite_bigip_version_minimum">
552
+ <documentation>
553
+ Gets the minimum version of BIG-IP for which this template is valid.
554
+
555
+ </documentation>
556
+ <input message="tns:Management.ApplicationTemplate.get_prerequisite_bigip_version_minimumRequest"/>
557
+ <output message="tns:Management.ApplicationTemplate.get_prerequisite_bigip_version_minimumResponse"/>
558
+ </operation>
559
+ <operation name="set_prerequisite_bigip_version_maximum">
560
+ <documentation>
561
+ Sets the maximum version of BIG-IP for which this template is valid.
562
+ Attempting to create an application from this template on an
563
+ incompatible version of BIG-IP will produce an error.
564
+ The version is of the form #.#.#, #.#, or #. For example,
565
+ "11", "11.1", and "11.1.2" would all be valid version strings.
566
+
567
+ </documentation>
568
+ <input message="tns:Management.ApplicationTemplate.set_prerequisite_bigip_version_maximumRequest"/>
569
+ <output message="tns:Management.ApplicationTemplate.set_prerequisite_bigip_version_maximumResponse"/>
570
+ </operation>
571
+ <operation name="get_prerequisite_bigip_version_maximum">
572
+ <documentation>
573
+ Gets the maximum version of BIG-IP for which this template is valid.
574
+
575
+ </documentation>
576
+ <input message="tns:Management.ApplicationTemplate.get_prerequisite_bigip_version_maximumRequest"/>
577
+ <output message="tns:Management.ApplicationTemplate.get_prerequisite_bigip_version_maximumResponse"/>
578
+ </operation>
579
+ <operation name="set_prerequisite_modules">
580
+ <documentation>
581
+ Sets the list of modules required by each template.
582
+ Attempting to create an application from this template
583
+ when one or more of these modules are not provisioned
584
+ will produce an error.
585
+
586
+ Note: Beginning with BIG-IP_v11.4.0 if TMOS_MODULE_WAM,
587
+ TMOS_MODULE_WOM, TMOS_MODULE_WOML, and/or TMOS_MODULE_AM is
588
+ specified then TMOS_MODULE_AM will be set as the prerequisite
589
+ module.
590
+
591
+ </documentation>
592
+ <input message="tns:Management.ApplicationTemplate.set_prerequisite_modulesRequest"/>
593
+ <output message="tns:Management.ApplicationTemplate.set_prerequisite_modulesResponse"/>
594
+ </operation>
595
+ <operation name="get_prerequisite_modules">
596
+ <documentation>
597
+ Gets the list of modules required by the specified
598
+ templates.
599
+
600
+ </documentation>
601
+ <input message="tns:Management.ApplicationTemplate.get_prerequisite_modulesRequest"/>
602
+ <output message="tns:Management.ApplicationTemplate.get_prerequisite_modulesResponse"/>
603
+ </operation>
604
+ <operation name="get_prerequisite_errors">
605
+ <documentation>
606
+ Gets the error string indicating the prerequisite errors
607
+ for a template. A blank string indicates no errors. A
608
+ non-blank error string means that there are prerequisites
609
+ for the template that are not met on that machine, and
610
+ creating a system application object from that template
611
+ on that machine will result in an exception. Note that
612
+ the contents of the error string are meant to be human
613
+ readable. While the presence of a non-blank error string
614
+ can be used programmatically, the contents should only be
615
+ used for non-programmatic purposes.
616
+
617
+ </documentation>
618
+ <input message="tns:Management.ApplicationTemplate.get_prerequisite_errorsRequest"/>
619
+ <output message="tns:Management.ApplicationTemplate.get_prerequisite_errorsResponse"/>
620
+ </operation>
621
+ <operation name="get_verification_status">
622
+ <documentation>
623
+ Gets the verification status for the specified templates.
624
+
625
+ </documentation>
626
+ <input message="tns:Management.ApplicationTemplate.get_verification_statusRequest"/>
627
+ <output message="tns:Management.ApplicationTemplate.get_verification_statusResponse"/>
628
+ </operation>
629
+ <operation name="set_action_presentation">
630
+ <documentation>
631
+ Sets the presentation text for a set of actions in application
632
+ templates.
633
+
634
+ The presentation contains Application Presentation Language (APL)
635
+ text that describes what input is needed and how it should be
636
+ displayed in the UI.
637
+
638
+ </documentation>
639
+ <input message="tns:Management.ApplicationTemplate.set_action_presentationRequest"/>
640
+ <output message="tns:Management.ApplicationTemplate.set_action_presentationResponse"/>
641
+ </operation>
642
+ <operation name="get_action_presentation">
643
+ <documentation>
644
+ Gets the presentation text for the specified application template
645
+ actions.
646
+
647
+ </documentation>
648
+ <input message="tns:Management.ApplicationTemplate.get_action_presentationRequest"/>
649
+ <output message="tns:Management.ApplicationTemplate.get_action_presentationResponse"/>
650
+ </operation>
651
+ <operation name="set_action_implementation">
652
+ <documentation>
653
+ Sets the implementation script text for a set of actions in an
654
+ application templates.
655
+
656
+ The implementation is a TMSH script that can use the answers to the
657
+ questions in the presentation, provided as variables, to create the
658
+ configuration objects that make up the application service. This
659
+ script is executed whenever the application is created or modified.
660
+
661
+ </documentation>
662
+ <input message="tns:Management.ApplicationTemplate.set_action_implementationRequest"/>
663
+ <output message="tns:Management.ApplicationTemplate.set_action_implementationResponse"/>
664
+ </operation>
665
+ <operation name="get_action_implementation">
666
+ <documentation>
667
+ Gets the implementation script text for the specified application
668
+ template actions.
669
+
670
+ </documentation>
671
+ <input message="tns:Management.ApplicationTemplate.get_action_implementationRequest"/>
672
+ <output message="tns:Management.ApplicationTemplate.get_action_implementationResponse"/>
673
+ </operation>
674
+ <operation name="set_action_presentation_help">
675
+ <documentation>
676
+ Sets the HTML help text for a set of actions in application
677
+ templates.
678
+
679
+ </documentation>
680
+ <input message="tns:Management.ApplicationTemplate.set_action_presentation_helpRequest"/>
681
+ <output message="tns:Management.ApplicationTemplate.set_action_presentation_helpResponse"/>
682
+ </operation>
683
+ <operation name="get_action_presentation_help">
684
+ <documentation>
685
+ Gets the HTML help text for the specified application template
686
+ actions.
687
+
688
+ </documentation>
689
+ <input message="tns:Management.ApplicationTemplate.get_action_presentation_helpRequest"/>
690
+ <output message="tns:Management.ApplicationTemplate.get_action_presentation_helpResponse"/>
691
+ </operation>
692
+ <operation name="get_version">
693
+ <documentation>
694
+ Gets the version information for this interface.
695
+
696
+ </documentation>
697
+ <input message="tns:Management.ApplicationTemplate.get_versionRequest"/>
698
+ <output message="tns:Management.ApplicationTemplate.get_versionResponse"/>
699
+ </operation>
700
+ </portType>
701
+
702
+ <!-- binding -->
703
+
704
+ <binding name="Management.ApplicationTemplateBinding" type="tns:Management.ApplicationTemplatePortType">
705
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
706
+ <operation name="get_list">
707
+ <documentation>
708
+ Gets the names of all application templates.
709
+
710
+ </documentation>
711
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
712
+ <input>
713
+ <soap:body
714
+ use="encoded"
715
+ namespace="urn:iControl:Management/ApplicationTemplate"
716
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
717
+ </input>
718
+ <output>
719
+ <soap:body
720
+ use="encoded"
721
+ namespace="urn:iControl:Management/ApplicationTemplate"
722
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
723
+ </output>
724
+ </operation>
725
+
726
+ <operation name="get_action_list">
727
+ <documentation>
728
+ Gets the names of the actions in the application templates.
729
+
730
+ </documentation>
731
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
732
+ <input>
733
+ <soap:body
734
+ use="encoded"
735
+ namespace="urn:iControl:Management/ApplicationTemplate"
736
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
737
+ </input>
738
+ <output>
739
+ <soap:body
740
+ use="encoded"
741
+ namespace="urn:iControl:Management/ApplicationTemplate"
742
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
743
+ </output>
744
+ </operation>
745
+
746
+ <operation name="create">
747
+ <documentation>
748
+ Creates a set of application templates. Each template automatically
749
+ is created with a default empty "definition" action.
750
+
751
+ </documentation>
752
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
753
+ <input>
754
+ <soap:body
755
+ use="encoded"
756
+ namespace="urn:iControl:Management/ApplicationTemplate"
757
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
758
+ </input>
759
+ <output>
760
+ <soap:body
761
+ use="encoded"
762
+ namespace="urn:iControl:Management/ApplicationTemplate"
763
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
764
+ </output>
765
+ </operation>
766
+
767
+ <operation name="delete_application_template">
768
+ <documentation>
769
+ Deletes a set of application templates.
770
+
771
+ </documentation>
772
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
773
+ <input>
774
+ <soap:body
775
+ use="encoded"
776
+ namespace="urn:iControl:Management/ApplicationTemplate"
777
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
778
+ </input>
779
+ <output>
780
+ <soap:body
781
+ use="encoded"
782
+ namespace="urn:iControl:Management/ApplicationTemplate"
783
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
784
+ </output>
785
+ </operation>
786
+
787
+ <operation name="delete_all_templates">
788
+ <documentation>
789
+ Deletes all application templates.
790
+
791
+ </documentation>
792
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
793
+ <input>
794
+ <soap:body
795
+ use="encoded"
796
+ namespace="urn:iControl:Management/ApplicationTemplate"
797
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
798
+ </input>
799
+ <output>
800
+ <soap:body
801
+ use="encoded"
802
+ namespace="urn:iControl:Management/ApplicationTemplate"
803
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
804
+ </output>
805
+ </operation>
806
+
807
+ <operation name="set_description">
808
+ <documentation>
809
+ Sets the descriptions for the specified appliation templates.
810
+
811
+ </documentation>
812
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
813
+ <input>
814
+ <soap:body
815
+ use="encoded"
816
+ namespace="urn:iControl:Management/ApplicationTemplate"
817
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
818
+ </input>
819
+ <output>
820
+ <soap:body
821
+ use="encoded"
822
+ namespace="urn:iControl:Management/ApplicationTemplate"
823
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
824
+ </output>
825
+ </operation>
826
+
827
+ <operation name="get_description">
828
+ <documentation>
829
+ Gets the descriptions for the specified application templates.
830
+
831
+ </documentation>
832
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
833
+ <input>
834
+ <soap:body
835
+ use="encoded"
836
+ namespace="urn:iControl:Management/ApplicationTemplate"
837
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
838
+ </input>
839
+ <output>
840
+ <soap:body
841
+ use="encoded"
842
+ namespace="urn:iControl:Management/ApplicationTemplate"
843
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
844
+ </output>
845
+ </operation>
846
+
847
+ <operation name="set_prerequisite_bigip_version_minimum">
848
+ <documentation>
849
+ Sets the minimum version of BIG-IP for which this template is valid.
850
+ Attempting to create an application from this template on an
851
+ incompatible version of BIG-IP will produce an error.
852
+ The version is of the form #.#.#, #.#, or #. For example,
853
+ "11", "11.1", and "11.1.2" would all be valid version strings.
854
+
855
+ </documentation>
856
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
857
+ <input>
858
+ <soap:body
859
+ use="encoded"
860
+ namespace="urn:iControl:Management/ApplicationTemplate"
861
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
862
+ </input>
863
+ <output>
864
+ <soap:body
865
+ use="encoded"
866
+ namespace="urn:iControl:Management/ApplicationTemplate"
867
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
868
+ </output>
869
+ </operation>
870
+
871
+ <operation name="add_checksum">
872
+ <documentation>
873
+ Computes and adds a checksum to each specified template.
874
+ To each template, either checksum or signature can be added but
875
+ not both. The system will throw if both algorithms are attempted
876
+ on one template.
877
+
878
+ </documentation>
879
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
880
+ <input>
881
+ <soap:body
882
+ use="encoded"
883
+ namespace="urn:iControl:Management/ApplicationTemplate"
884
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
885
+ </input>
886
+ <output>
887
+ <soap:body
888
+ use="encoded"
889
+ namespace="urn:iControl:Management/ApplicationTemplate"
890
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
891
+ </output>
892
+ </operation>
893
+
894
+ <operation name="add_signature">
895
+ <documentation>
896
+ Computes and adds a signature to each specified template.
897
+ The signature is used during template validation to assure that the
898
+ template's fields - presentation, implementation, help and macro
899
+ have not been modified. To each template, either checksum or
900
+ signature can be added but not both. The system will throw if both
901
+ algorithms are attempted on one template.
902
+
903
+ </documentation>
904
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
905
+ <input>
906
+ <soap:body
907
+ use="encoded"
908
+ namespace="urn:iControl:Management/ApplicationTemplate"
909
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
910
+ </input>
911
+ <output>
912
+ <soap:body
913
+ use="encoded"
914
+ namespace="urn:iControl:Management/ApplicationTemplate"
915
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
916
+ </output>
917
+ </operation>
918
+
919
+ <operation name="clear_verification">
920
+ <documentation>
921
+ Clear both signature and checksum fields for the specified
922
+ templates. The difference between enabling "ignore_verification"
923
+ and "clear_verification" is:
924
+ "ignore" suspends the verification temporarily while leaving the
925
+ signature and checksum fields intact. Verification can be resumed.
926
+ "clear" resets for good the signing information as if the templates
927
+ had never been signed.
928
+
929
+ </documentation>
930
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
931
+ <input>
932
+ <soap:body
933
+ use="encoded"
934
+ namespace="urn:iControl:Management/ApplicationTemplate"
935
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
936
+ </input>
937
+ <output>
938
+ <soap:body
939
+ use="encoded"
940
+ namespace="urn:iControl:Management/ApplicationTemplate"
941
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
942
+ </output>
943
+ </operation>
944
+
945
+ <operation name="set_ignore_verification_state">
946
+ <documentation>
947
+ Sets the ignore verification state for the specified templates.
948
+ If enabled, the system will ignore the signature or checksum.
949
+ Otherwise the signature or checksum is used during template
950
+ validation to assure that the template's field - presentation,
951
+ implementation, help and macro have not been modified.
952
+
953
+ </documentation>
954
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
955
+ <input>
956
+ <soap:body
957
+ use="encoded"
958
+ namespace="urn:iControl:Management/ApplicationTemplate"
959
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
960
+ </input>
961
+ <output>
962
+ <soap:body
963
+ use="encoded"
964
+ namespace="urn:iControl:Management/ApplicationTemplate"
965
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
966
+ </output>
967
+ </operation>
968
+
969
+ <operation name="get_ignore_verification_state">
970
+ <documentation>
971
+ Gets the state of ignoring the signature or checksum.
972
+
973
+ </documentation>
974
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
975
+ <input>
976
+ <soap:body
977
+ use="encoded"
978
+ namespace="urn:iControl:Management/ApplicationTemplate"
979
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
980
+ </input>
981
+ <output>
982
+ <soap:body
983
+ use="encoded"
984
+ namespace="urn:iControl:Management/ApplicationTemplate"
985
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
986
+ </output>
987
+ </operation>
988
+
989
+ <operation name="get_prerequisite_bigip_version_minimum">
990
+ <documentation>
991
+ Gets the minimum version of BIG-IP for which this template is valid.
992
+
993
+ </documentation>
994
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
995
+ <input>
996
+ <soap:body
997
+ use="encoded"
998
+ namespace="urn:iControl:Management/ApplicationTemplate"
999
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1000
+ </input>
1001
+ <output>
1002
+ <soap:body
1003
+ use="encoded"
1004
+ namespace="urn:iControl:Management/ApplicationTemplate"
1005
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1006
+ </output>
1007
+ </operation>
1008
+
1009
+ <operation name="set_prerequisite_bigip_version_maximum">
1010
+ <documentation>
1011
+ Sets the maximum version of BIG-IP for which this template is valid.
1012
+ Attempting to create an application from this template on an
1013
+ incompatible version of BIG-IP will produce an error.
1014
+ The version is of the form #.#.#, #.#, or #. For example,
1015
+ "11", "11.1", and "11.1.2" would all be valid version strings.
1016
+
1017
+ </documentation>
1018
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1019
+ <input>
1020
+ <soap:body
1021
+ use="encoded"
1022
+ namespace="urn:iControl:Management/ApplicationTemplate"
1023
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1024
+ </input>
1025
+ <output>
1026
+ <soap:body
1027
+ use="encoded"
1028
+ namespace="urn:iControl:Management/ApplicationTemplate"
1029
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1030
+ </output>
1031
+ </operation>
1032
+
1033
+ <operation name="get_prerequisite_bigip_version_maximum">
1034
+ <documentation>
1035
+ Gets the maximum version of BIG-IP for which this template is valid.
1036
+
1037
+ </documentation>
1038
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1039
+ <input>
1040
+ <soap:body
1041
+ use="encoded"
1042
+ namespace="urn:iControl:Management/ApplicationTemplate"
1043
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1044
+ </input>
1045
+ <output>
1046
+ <soap:body
1047
+ use="encoded"
1048
+ namespace="urn:iControl:Management/ApplicationTemplate"
1049
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1050
+ </output>
1051
+ </operation>
1052
+
1053
+ <operation name="set_prerequisite_modules">
1054
+ <documentation>
1055
+ Sets the list of modules required by each template.
1056
+ Attempting to create an application from this template
1057
+ when one or more of these modules are not provisioned
1058
+ will produce an error.
1059
+
1060
+ Note: Beginning with BIG-IP_v11.4.0 if TMOS_MODULE_WAM,
1061
+ TMOS_MODULE_WOM, TMOS_MODULE_WOML, and/or TMOS_MODULE_AM is
1062
+ specified then TMOS_MODULE_AM will be set as the prerequisite
1063
+ module.
1064
+
1065
+ </documentation>
1066
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1067
+ <input>
1068
+ <soap:body
1069
+ use="encoded"
1070
+ namespace="urn:iControl:Management/ApplicationTemplate"
1071
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1072
+ </input>
1073
+ <output>
1074
+ <soap:body
1075
+ use="encoded"
1076
+ namespace="urn:iControl:Management/ApplicationTemplate"
1077
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1078
+ </output>
1079
+ </operation>
1080
+
1081
+ <operation name="get_prerequisite_modules">
1082
+ <documentation>
1083
+ Gets the list of modules required by the specified
1084
+ templates.
1085
+
1086
+ </documentation>
1087
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1088
+ <input>
1089
+ <soap:body
1090
+ use="encoded"
1091
+ namespace="urn:iControl:Management/ApplicationTemplate"
1092
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1093
+ </input>
1094
+ <output>
1095
+ <soap:body
1096
+ use="encoded"
1097
+ namespace="urn:iControl:Management/ApplicationTemplate"
1098
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1099
+ </output>
1100
+ </operation>
1101
+
1102
+ <operation name="get_prerequisite_errors">
1103
+ <documentation>
1104
+ Gets the error string indicating the prerequisite errors
1105
+ for a template. A blank string indicates no errors. A
1106
+ non-blank error string means that there are prerequisites
1107
+ for the template that are not met on that machine, and
1108
+ creating a system application object from that template
1109
+ on that machine will result in an exception. Note that
1110
+ the contents of the error string are meant to be human
1111
+ readable. While the presence of a non-blank error string
1112
+ can be used programmatically, the contents should only be
1113
+ used for non-programmatic purposes.
1114
+
1115
+ </documentation>
1116
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1117
+ <input>
1118
+ <soap:body
1119
+ use="encoded"
1120
+ namespace="urn:iControl:Management/ApplicationTemplate"
1121
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1122
+ </input>
1123
+ <output>
1124
+ <soap:body
1125
+ use="encoded"
1126
+ namespace="urn:iControl:Management/ApplicationTemplate"
1127
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1128
+ </output>
1129
+ </operation>
1130
+
1131
+ <operation name="get_verification_status">
1132
+ <documentation>
1133
+ Gets the verification status for the specified templates.
1134
+
1135
+ </documentation>
1136
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1137
+ <input>
1138
+ <soap:body
1139
+ use="encoded"
1140
+ namespace="urn:iControl:Management/ApplicationTemplate"
1141
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1142
+ </input>
1143
+ <output>
1144
+ <soap:body
1145
+ use="encoded"
1146
+ namespace="urn:iControl:Management/ApplicationTemplate"
1147
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1148
+ </output>
1149
+ </operation>
1150
+
1151
+ <operation name="set_action_presentation">
1152
+ <documentation>
1153
+ Sets the presentation text for a set of actions in application
1154
+ templates.
1155
+
1156
+ The presentation contains Application Presentation Language (APL)
1157
+ text that describes what input is needed and how it should be
1158
+ displayed in the UI.
1159
+
1160
+ </documentation>
1161
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1162
+ <input>
1163
+ <soap:body
1164
+ use="encoded"
1165
+ namespace="urn:iControl:Management/ApplicationTemplate"
1166
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1167
+ </input>
1168
+ <output>
1169
+ <soap:body
1170
+ use="encoded"
1171
+ namespace="urn:iControl:Management/ApplicationTemplate"
1172
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1173
+ </output>
1174
+ </operation>
1175
+
1176
+ <operation name="get_action_presentation">
1177
+ <documentation>
1178
+ Gets the presentation text for the specified application template
1179
+ actions.
1180
+
1181
+ </documentation>
1182
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1183
+ <input>
1184
+ <soap:body
1185
+ use="encoded"
1186
+ namespace="urn:iControl:Management/ApplicationTemplate"
1187
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1188
+ </input>
1189
+ <output>
1190
+ <soap:body
1191
+ use="encoded"
1192
+ namespace="urn:iControl:Management/ApplicationTemplate"
1193
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1194
+ </output>
1195
+ </operation>
1196
+
1197
+ <operation name="set_action_implementation">
1198
+ <documentation>
1199
+ Sets the implementation script text for a set of actions in an
1200
+ application templates.
1201
+
1202
+ The implementation is a TMSH script that can use the answers to the
1203
+ questions in the presentation, provided as variables, to create the
1204
+ configuration objects that make up the application service. This
1205
+ script is executed whenever the application is created or modified.
1206
+
1207
+ </documentation>
1208
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1209
+ <input>
1210
+ <soap:body
1211
+ use="encoded"
1212
+ namespace="urn:iControl:Management/ApplicationTemplate"
1213
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1214
+ </input>
1215
+ <output>
1216
+ <soap:body
1217
+ use="encoded"
1218
+ namespace="urn:iControl:Management/ApplicationTemplate"
1219
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1220
+ </output>
1221
+ </operation>
1222
+
1223
+ <operation name="get_action_implementation">
1224
+ <documentation>
1225
+ Gets the implementation script text for the specified application
1226
+ template actions.
1227
+
1228
+ </documentation>
1229
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1230
+ <input>
1231
+ <soap:body
1232
+ use="encoded"
1233
+ namespace="urn:iControl:Management/ApplicationTemplate"
1234
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1235
+ </input>
1236
+ <output>
1237
+ <soap:body
1238
+ use="encoded"
1239
+ namespace="urn:iControl:Management/ApplicationTemplate"
1240
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1241
+ </output>
1242
+ </operation>
1243
+
1244
+ <operation name="set_action_presentation_help">
1245
+ <documentation>
1246
+ Sets the HTML help text for a set of actions in application
1247
+ templates.
1248
+
1249
+ </documentation>
1250
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1251
+ <input>
1252
+ <soap:body
1253
+ use="encoded"
1254
+ namespace="urn:iControl:Management/ApplicationTemplate"
1255
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1256
+ </input>
1257
+ <output>
1258
+ <soap:body
1259
+ use="encoded"
1260
+ namespace="urn:iControl:Management/ApplicationTemplate"
1261
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1262
+ </output>
1263
+ </operation>
1264
+
1265
+ <operation name="get_action_presentation_help">
1266
+ <documentation>
1267
+ Gets the HTML help text for the specified application template
1268
+ actions.
1269
+
1270
+ </documentation>
1271
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1272
+ <input>
1273
+ <soap:body
1274
+ use="encoded"
1275
+ namespace="urn:iControl:Management/ApplicationTemplate"
1276
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1277
+ </input>
1278
+ <output>
1279
+ <soap:body
1280
+ use="encoded"
1281
+ namespace="urn:iControl:Management/ApplicationTemplate"
1282
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1283
+ </output>
1284
+ </operation>
1285
+
1286
+ <operation name="get_version">
1287
+ <documentation>
1288
+ Gets the version information for this interface.
1289
+
1290
+ </documentation>
1291
+ <soap:operation soapAction="urn:iControl:Management/ApplicationTemplate"/>
1292
+ <input>
1293
+ <soap:body
1294
+ use="encoded"
1295
+ namespace="urn:iControl:Management/ApplicationTemplate"
1296
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1297
+ </input>
1298
+ <output>
1299
+ <soap:body
1300
+ use="encoded"
1301
+ namespace="urn:iControl:Management/ApplicationTemplate"
1302
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1303
+ </output>
1304
+ </operation>
1305
+ </binding>
1306
+
1307
+ <!-- service -->
1308
+
1309
+ <service name="Management.ApplicationTemplate">
1310
+ <documentation>
1311
+ An Application Template is used to create and modify Application
1312
+ Services. The template provides a custom UI (presentation) to present
1313
+ questions to the user that are needed to create the application. The
1314
+ implementation script is executed when the application is created or
1315
+ modified to create the necessary configuration objects from the user
1316
+ supplied answers to the presentation questions.
1317
+
1318
+ </documentation>
1319
+ <port name="Management.ApplicationTemplatePort" binding="tns:Management.ApplicationTemplateBinding">
1320
+ <soap:address location="https://url_to_service"/>
1321
+ </port>
1322
+ </service>
1323
+ </definitions>