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,1804 @@
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.ApplicationService"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:complexType name="Common.MetadataPersistenceSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.MetadataPersistence[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:simpleType name="Common.EnabledState">
32
+ <xsd:restriction base="xsd:string">
33
+ <xsd:enumeration value="STATE_DISABLED">
34
+ <xsd:annotation>
35
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
36
+ </xsd:annotation>
37
+ </xsd:enumeration>
38
+ <xsd:enumeration value="STATE_ENABLED">
39
+ <xsd:annotation>
40
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
41
+ </xsd:annotation>
42
+ </xsd:enumeration>
43
+ </xsd:restriction>
44
+ </xsd:simpleType>
45
+ <xsd:complexType name="Management.ApplicationService.ScalarVar">
46
+ <xsd:sequence>
47
+ <xsd:element name="name" type="xsd:string"/>
48
+ <xsd:element name="value" type="xsd:string"/>
49
+ </xsd:sequence>
50
+ </xsd:complexType>
51
+ <xsd:complexType name="Management.ApplicationService.ScalarVarExtended">
52
+ <xsd:sequence>
53
+ <xsd:element name="name" type="xsd:string"/>
54
+ <xsd:element name="value" type="xsd:string"/>
55
+ <xsd:element name="encrypted" type="xsd:boolean"/>
56
+ </xsd:sequence>
57
+ </xsd:complexType>
58
+ <xsd:complexType name="Common.StringSequence">
59
+ <xsd:complexContent>
60
+ <xsd:restriction base='SOAP-ENC:Array'>
61
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
62
+ </xsd:restriction>
63
+ </xsd:complexContent>
64
+ </xsd:complexType>
65
+ <xsd:complexType name="Management.ApplicationService.TableVarSequenceSequence">
66
+ <xsd:complexContent>
67
+ <xsd:restriction base='SOAP-ENC:Array'>
68
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.ApplicationService.TableVarSequence[]'/>
69
+ </xsd:restriction>
70
+ </xsd:complexContent>
71
+ </xsd:complexType>
72
+ <xsd:complexType name="Management.ApplicationService.TableVarExtendedSequence">
73
+ <xsd:complexContent>
74
+ <xsd:restriction base='SOAP-ENC:Array'>
75
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.ApplicationService.TableVarExtended[]'/>
76
+ </xsd:restriction>
77
+ </xsd:complexContent>
78
+ </xsd:complexType>
79
+ <xsd:complexType name="Management.ApplicationService.ListVarExtendedSequenceSequence">
80
+ <xsd:complexContent>
81
+ <xsd:restriction base='SOAP-ENC:Array'>
82
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.ApplicationService.ListVarExtendedSequence[]'/>
83
+ </xsd:restriction>
84
+ </xsd:complexContent>
85
+ </xsd:complexType>
86
+ <xsd:complexType name="Common.BooleanSequence">
87
+ <xsd:complexContent>
88
+ <xsd:restriction base='SOAP-ENC:Array'>
89
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:boolean[]'/>
90
+ </xsd:restriction>
91
+ </xsd:complexContent>
92
+ </xsd:complexType>
93
+ <xsd:complexType name="Management.ApplicationService.TableVarExtended">
94
+ <xsd:sequence>
95
+ <xsd:element name="name" type="xsd:string"/>
96
+ <xsd:element name="column_names" type="tns:Common.StringSequence"/>
97
+ <xsd:element name="encrypted_columns" type="tns:Common.StringSequence"/>
98
+ <xsd:element name="values" type="tns:Common.StringSequenceSequence"/>
99
+ </xsd:sequence>
100
+ </xsd:complexType>
101
+ <xsd:complexType name="Management.ApplicationService.ListVarSequence">
102
+ <xsd:complexContent>
103
+ <xsd:restriction base='SOAP-ENC:Array'>
104
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.ApplicationService.ListVar[]'/>
105
+ </xsd:restriction>
106
+ </xsd:complexContent>
107
+ </xsd:complexType>
108
+ <xsd:complexType name="Management.ApplicationService.ScalarVarSequence">
109
+ <xsd:complexContent>
110
+ <xsd:restriction base='SOAP-ENC:Array'>
111
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.ApplicationService.ScalarVar[]'/>
112
+ </xsd:restriction>
113
+ </xsd:complexContent>
114
+ </xsd:complexType>
115
+ <xsd:complexType name="Management.ApplicationService.ListVar">
116
+ <xsd:sequence>
117
+ <xsd:element name="name" type="xsd:string"/>
118
+ <xsd:element name="values" type="tns:Common.StringSequence"/>
119
+ </xsd:sequence>
120
+ </xsd:complexType>
121
+ <xsd:simpleType name="Common.MetadataPersistence">
122
+ <xsd:restriction base="xsd:string">
123
+ <xsd:enumeration value="METADATA_UNKNOWN">
124
+ <xsd:annotation>
125
+ <xsd:documentation>METADATA_UNKNOWN</xsd:documentation>
126
+ </xsd:annotation>
127
+ </xsd:enumeration>
128
+ <xsd:enumeration value="METADATA_EPHEMERAL">
129
+ <xsd:annotation>
130
+ <xsd:documentation>METADATA_EPHEMERAL</xsd:documentation>
131
+ </xsd:annotation>
132
+ </xsd:enumeration>
133
+ <xsd:enumeration value="METADATA_PERSISTENT">
134
+ <xsd:annotation>
135
+ <xsd:documentation>METADATA_PERSISTENT</xsd:documentation>
136
+ </xsd:annotation>
137
+ </xsd:enumeration>
138
+ </xsd:restriction>
139
+ </xsd:simpleType>
140
+ <xsd:complexType name="Management.ApplicationService.ScalarVarExtendedSequenceSequence">
141
+ <xsd:complexContent>
142
+ <xsd:restriction base='SOAP-ENC:Array'>
143
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.ApplicationService.ScalarVarExtendedSequence[]'/>
144
+ </xsd:restriction>
145
+ </xsd:complexContent>
146
+ </xsd:complexType>
147
+ <xsd:complexType name="Management.ApplicationService.ScalarVarExtendedSequence">
148
+ <xsd:complexContent>
149
+ <xsd:restriction base='SOAP-ENC:Array'>
150
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.ApplicationService.ScalarVarExtended[]'/>
151
+ </xsd:restriction>
152
+ </xsd:complexContent>
153
+ </xsd:complexType>
154
+ <xsd:complexType name="Common.StringSequenceSequence">
155
+ <xsd:complexContent>
156
+ <xsd:restriction base='SOAP-ENC:Array'>
157
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
158
+ </xsd:restriction>
159
+ </xsd:complexContent>
160
+ </xsd:complexType>
161
+ <xsd:complexType name="Management.ApplicationService.ScalarVarSequenceSequence">
162
+ <xsd:complexContent>
163
+ <xsd:restriction base='SOAP-ENC:Array'>
164
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.ApplicationService.ScalarVarSequence[]'/>
165
+ </xsd:restriction>
166
+ </xsd:complexContent>
167
+ </xsd:complexType>
168
+ <xsd:complexType name="Management.ApplicationService.TableVarExtendedSequenceSequence">
169
+ <xsd:complexContent>
170
+ <xsd:restriction base='SOAP-ENC:Array'>
171
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.ApplicationService.TableVarExtendedSequence[]'/>
172
+ </xsd:restriction>
173
+ </xsd:complexContent>
174
+ </xsd:complexType>
175
+ <xsd:complexType name="Management.ApplicationService.TableVar">
176
+ <xsd:sequence>
177
+ <xsd:element name="name" type="xsd:string"/>
178
+ <xsd:element name="column_names" type="tns:Common.StringSequence"/>
179
+ <xsd:element name="values" type="tns:Common.StringSequenceSequence"/>
180
+ </xsd:sequence>
181
+ </xsd:complexType>
182
+ <xsd:complexType name="Common.MetadataPersistenceSequenceSequence">
183
+ <xsd:complexContent>
184
+ <xsd:restriction base='SOAP-ENC:Array'>
185
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.MetadataPersistenceSequence[]'/>
186
+ </xsd:restriction>
187
+ </xsd:complexContent>
188
+ </xsd:complexType>
189
+ <xsd:complexType name="Management.ApplicationService.ListVarExtended">
190
+ <xsd:sequence>
191
+ <xsd:element name="name" type="xsd:string"/>
192
+ <xsd:element name="values" type="tns:Common.StringSequence"/>
193
+ <xsd:element name="encrypted" type="xsd:boolean"/>
194
+ </xsd:sequence>
195
+ </xsd:complexType>
196
+ <xsd:complexType name="Management.ApplicationService.TableVarSequence">
197
+ <xsd:complexContent>
198
+ <xsd:restriction base='SOAP-ENC:Array'>
199
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.ApplicationService.TableVar[]'/>
200
+ </xsd:restriction>
201
+ </xsd:complexContent>
202
+ </xsd:complexType>
203
+ <xsd:complexType name="Management.ApplicationService.ListVarExtendedSequence">
204
+ <xsd:complexContent>
205
+ <xsd:restriction base='SOAP-ENC:Array'>
206
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.ApplicationService.ListVarExtended[]'/>
207
+ </xsd:restriction>
208
+ </xsd:complexContent>
209
+ </xsd:complexType>
210
+ <xsd:complexType name="Management.ApplicationService.ListVarSequenceSequence">
211
+ <xsd:complexContent>
212
+ <xsd:restriction base='SOAP-ENC:Array'>
213
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.ApplicationService.ListVarSequence[]'/>
214
+ </xsd:restriction>
215
+ </xsd:complexContent>
216
+ </xsd:complexType>
217
+ <xsd:complexType name="Common.EnabledStateSequence">
218
+ <xsd:complexContent>
219
+ <xsd:restriction base='SOAP-ENC:Array'>
220
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
221
+ </xsd:restriction>
222
+ </xsd:complexContent>
223
+ </xsd:complexType>
224
+ </xsd:schema>
225
+ </types>
226
+
227
+ <!-- message -->
228
+
229
+ <message name="Management.ApplicationService.get_listRequest">
230
+ </message>
231
+ <message name="Management.ApplicationService.get_listResponse">
232
+ <part name="return" type="tns:Common.StringSequence"/>
233
+ </message>
234
+
235
+ <message name="Management.ApplicationService.createRequest">
236
+ <part name="apps" type="tns:Common.StringSequence"/>
237
+ <part name="templates" type="tns:Common.StringSequence"/>
238
+ <part name="scalar_vars" type="tns:Management.ApplicationService.ScalarVarSequenceSequence"/>
239
+ <part name="list_vars" type="tns:Management.ApplicationService.ListVarSequenceSequence"/>
240
+ <part name="table_vars" type="tns:Management.ApplicationService.TableVarSequenceSequence"/>
241
+ </message>
242
+ <message name="Management.ApplicationService.createResponse">
243
+ </message>
244
+
245
+ <message name="Management.ApplicationService.create_extendedRequest">
246
+ <part name="apps" type="tns:Common.StringSequence"/>
247
+ <part name="templates" type="tns:Common.StringSequence"/>
248
+ <part name="scalar_vars" type="tns:Management.ApplicationService.ScalarVarExtendedSequenceSequence"/>
249
+ <part name="list_vars" type="tns:Management.ApplicationService.ListVarExtendedSequenceSequence"/>
250
+ <part name="table_vars" type="tns:Management.ApplicationService.TableVarExtendedSequenceSequence"/>
251
+ </message>
252
+ <message name="Management.ApplicationService.create_extendedResponse">
253
+ </message>
254
+
255
+ <message name="Management.ApplicationService.create_genericRequest">
256
+ <part name="apps" type="tns:Common.StringSequence"/>
257
+ </message>
258
+ <message name="Management.ApplicationService.create_genericResponse">
259
+ </message>
260
+
261
+ <message name="Management.ApplicationService.modifyRequest">
262
+ <part name="apps" type="tns:Common.StringSequence"/>
263
+ <part name="templates" type="tns:Common.StringSequence"/>
264
+ <part name="scalar_vars" type="tns:Management.ApplicationService.ScalarVarSequenceSequence"/>
265
+ <part name="list_vars" type="tns:Management.ApplicationService.ListVarSequenceSequence"/>
266
+ <part name="table_vars" type="tns:Management.ApplicationService.TableVarSequenceSequence"/>
267
+ </message>
268
+ <message name="Management.ApplicationService.modifyResponse">
269
+ </message>
270
+
271
+ <message name="Management.ApplicationService.modify_extendedRequest">
272
+ <part name="apps" type="tns:Common.StringSequence"/>
273
+ <part name="templates" type="tns:Common.StringSequence"/>
274
+ <part name="scalar_vars" type="tns:Management.ApplicationService.ScalarVarExtendedSequenceSequence"/>
275
+ <part name="list_vars" type="tns:Management.ApplicationService.ListVarExtendedSequenceSequence"/>
276
+ <part name="table_vars" type="tns:Management.ApplicationService.TableVarExtendedSequenceSequence"/>
277
+ </message>
278
+ <message name="Management.ApplicationService.modify_extendedResponse">
279
+ </message>
280
+
281
+ <message name="Management.ApplicationService.convert_to_genericRequest">
282
+ <part name="apps" type="tns:Common.StringSequence"/>
283
+ </message>
284
+ <message name="Management.ApplicationService.convert_to_genericResponse">
285
+ </message>
286
+
287
+ <message name="Management.ApplicationService.delete_application_serviceRequest">
288
+ <part name="apps" type="tns:Common.StringSequence"/>
289
+ </message>
290
+ <message name="Management.ApplicationService.delete_application_serviceResponse">
291
+ </message>
292
+
293
+ <message name="Management.ApplicationService.delete_all_application_servicesRequest">
294
+ </message>
295
+ <message name="Management.ApplicationService.delete_all_application_servicesResponse">
296
+ </message>
297
+
298
+ <message name="Management.ApplicationService.set_descriptionRequest">
299
+ <part name="apps" type="tns:Common.StringSequence"/>
300
+ <part name="values" type="tns:Common.StringSequence"/>
301
+ </message>
302
+ <message name="Management.ApplicationService.set_descriptionResponse">
303
+ </message>
304
+
305
+ <message name="Management.ApplicationService.get_descriptionRequest">
306
+ <part name="apps" type="tns:Common.StringSequence"/>
307
+ </message>
308
+ <message name="Management.ApplicationService.get_descriptionResponse">
309
+ <part name="return" type="tns:Common.StringSequence"/>
310
+ </message>
311
+
312
+ <message name="Management.ApplicationService.get_templateRequest">
313
+ <part name="apps" type="tns:Common.StringSequence"/>
314
+ </message>
315
+ <message name="Management.ApplicationService.get_templateResponse">
316
+ <part name="return" type="tns:Common.StringSequence"/>
317
+ </message>
318
+
319
+ <message name="Management.ApplicationService.set_device_groupRequest">
320
+ <part name="apps" type="tns:Common.StringSequence"/>
321
+ <part name="values" type="tns:Common.StringSequence"/>
322
+ </message>
323
+ <message name="Management.ApplicationService.set_device_groupResponse">
324
+ </message>
325
+
326
+ <message name="Management.ApplicationService.get_device_groupRequest">
327
+ <part name="apps" type="tns:Common.StringSequence"/>
328
+ </message>
329
+ <message name="Management.ApplicationService.get_device_groupResponse">
330
+ <part name="return" type="tns:Common.StringSequence"/>
331
+ </message>
332
+
333
+ <message name="Management.ApplicationService.is_device_group_inheritedRequest">
334
+ <part name="apps" type="tns:Common.StringSequence"/>
335
+ </message>
336
+ <message name="Management.ApplicationService.is_device_group_inheritedResponse">
337
+ <part name="return" type="tns:Common.BooleanSequence"/>
338
+ </message>
339
+
340
+ <message name="Management.ApplicationService.set_traffic_groupRequest">
341
+ <part name="apps" type="tns:Common.StringSequence"/>
342
+ <part name="values" type="tns:Common.StringSequence"/>
343
+ </message>
344
+ <message name="Management.ApplicationService.set_traffic_groupResponse">
345
+ </message>
346
+
347
+ <message name="Management.ApplicationService.get_traffic_groupRequest">
348
+ <part name="apps" type="tns:Common.StringSequence"/>
349
+ </message>
350
+ <message name="Management.ApplicationService.get_traffic_groupResponse">
351
+ <part name="return" type="tns:Common.StringSequence"/>
352
+ </message>
353
+
354
+ <message name="Management.ApplicationService.is_traffic_group_inheritedRequest">
355
+ <part name="apps" type="tns:Common.StringSequence"/>
356
+ </message>
357
+ <message name="Management.ApplicationService.is_traffic_group_inheritedResponse">
358
+ <part name="return" type="tns:Common.BooleanSequence"/>
359
+ </message>
360
+
361
+ <message name="Management.ApplicationService.set_strict_updates_stateRequest">
362
+ <part name="apps" type="tns:Common.StringSequence"/>
363
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
364
+ </message>
365
+ <message name="Management.ApplicationService.set_strict_updates_stateResponse">
366
+ </message>
367
+
368
+ <message name="Management.ApplicationService.get_strict_updates_stateRequest">
369
+ <part name="apps" type="tns:Common.StringSequence"/>
370
+ </message>
371
+ <message name="Management.ApplicationService.get_strict_updates_stateResponse">
372
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
373
+ </message>
374
+
375
+ <message name="Management.ApplicationService.is_template_modifiedRequest">
376
+ <part name="apps" type="tns:Common.StringSequence"/>
377
+ </message>
378
+ <message name="Management.ApplicationService.is_template_modifiedResponse">
379
+ <part name="return" type="tns:Common.BooleanSequence"/>
380
+ </message>
381
+
382
+ <message name="Management.ApplicationService.get_scalar_varsRequest">
383
+ <part name="apps" type="tns:Common.StringSequence"/>
384
+ </message>
385
+ <message name="Management.ApplicationService.get_scalar_varsResponse">
386
+ <part name="return" type="tns:Management.ApplicationService.ScalarVarSequenceSequence"/>
387
+ </message>
388
+
389
+ <message name="Management.ApplicationService.get_scalar_vars_extendedRequest">
390
+ <part name="apps" type="tns:Common.StringSequence"/>
391
+ </message>
392
+ <message name="Management.ApplicationService.get_scalar_vars_extendedResponse">
393
+ <part name="return" type="tns:Management.ApplicationService.ScalarVarExtendedSequenceSequence"/>
394
+ </message>
395
+
396
+ <message name="Management.ApplicationService.get_list_varsRequest">
397
+ <part name="apps" type="tns:Common.StringSequence"/>
398
+ </message>
399
+ <message name="Management.ApplicationService.get_list_varsResponse">
400
+ <part name="return" type="tns:Management.ApplicationService.ListVarSequenceSequence"/>
401
+ </message>
402
+
403
+ <message name="Management.ApplicationService.get_list_vars_extendedRequest">
404
+ <part name="apps" type="tns:Common.StringSequence"/>
405
+ </message>
406
+ <message name="Management.ApplicationService.get_list_vars_extendedResponse">
407
+ <part name="return" type="tns:Management.ApplicationService.ListVarExtendedSequenceSequence"/>
408
+ </message>
409
+
410
+ <message name="Management.ApplicationService.get_table_varsRequest">
411
+ <part name="apps" type="tns:Common.StringSequence"/>
412
+ </message>
413
+ <message name="Management.ApplicationService.get_table_varsResponse">
414
+ <part name="return" type="tns:Management.ApplicationService.TableVarSequenceSequence"/>
415
+ </message>
416
+
417
+ <message name="Management.ApplicationService.get_table_vars_extendedRequest">
418
+ <part name="apps" type="tns:Common.StringSequence"/>
419
+ </message>
420
+ <message name="Management.ApplicationService.get_table_vars_extendedResponse">
421
+ <part name="return" type="tns:Management.ApplicationService.TableVarExtendedSequenceSequence"/>
422
+ </message>
423
+
424
+ <message name="Management.ApplicationService.get_metadataRequest">
425
+ <part name="apps" type="tns:Common.StringSequence"/>
426
+ </message>
427
+ <message name="Management.ApplicationService.get_metadataResponse">
428
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
429
+ </message>
430
+
431
+ <message name="Management.ApplicationService.add_metadataRequest">
432
+ <part name="apps" type="tns:Common.StringSequence"/>
433
+ <part name="names" type="tns:Common.StringSequenceSequence"/>
434
+ <part name="values" type="tns:Common.StringSequenceSequence"/>
435
+ </message>
436
+ <message name="Management.ApplicationService.add_metadataResponse">
437
+ </message>
438
+
439
+ <message name="Management.ApplicationService.remove_metadataRequest">
440
+ <part name="apps" type="tns:Common.StringSequence"/>
441
+ <part name="names" type="tns:Common.StringSequenceSequence"/>
442
+ </message>
443
+ <message name="Management.ApplicationService.remove_metadataResponse">
444
+ </message>
445
+
446
+ <message name="Management.ApplicationService.remove_all_metadataRequest">
447
+ <part name="apps" type="tns:Common.StringSequence"/>
448
+ </message>
449
+ <message name="Management.ApplicationService.remove_all_metadataResponse">
450
+ </message>
451
+
452
+ <message name="Management.ApplicationService.set_metadata_valueRequest">
453
+ <part name="apps" type="tns:Common.StringSequence"/>
454
+ <part name="names" type="tns:Common.StringSequenceSequence"/>
455
+ <part name="values" type="tns:Common.StringSequenceSequence"/>
456
+ </message>
457
+ <message name="Management.ApplicationService.set_metadata_valueResponse">
458
+ </message>
459
+
460
+ <message name="Management.ApplicationService.get_metadata_valueRequest">
461
+ <part name="apps" type="tns:Common.StringSequence"/>
462
+ <part name="names" type="tns:Common.StringSequenceSequence"/>
463
+ </message>
464
+ <message name="Management.ApplicationService.get_metadata_valueResponse">
465
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
466
+ </message>
467
+
468
+ <message name="Management.ApplicationService.set_metadata_descriptionRequest">
469
+ <part name="apps" type="tns:Common.StringSequence"/>
470
+ <part name="names" type="tns:Common.StringSequenceSequence"/>
471
+ <part name="descriptions" type="tns:Common.StringSequenceSequence"/>
472
+ </message>
473
+ <message name="Management.ApplicationService.set_metadata_descriptionResponse">
474
+ </message>
475
+
476
+ <message name="Management.ApplicationService.get_metadata_descriptionRequest">
477
+ <part name="apps" type="tns:Common.StringSequence"/>
478
+ <part name="names" type="tns:Common.StringSequenceSequence"/>
479
+ </message>
480
+ <message name="Management.ApplicationService.get_metadata_descriptionResponse">
481
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
482
+ </message>
483
+
484
+ <message name="Management.ApplicationService.set_metadata_persistenceRequest">
485
+ <part name="apps" type="tns:Common.StringSequence"/>
486
+ <part name="names" type="tns:Common.StringSequenceSequence"/>
487
+ <part name="values" type="tns:Common.MetadataPersistenceSequenceSequence"/>
488
+ </message>
489
+ <message name="Management.ApplicationService.set_metadata_persistenceResponse">
490
+ </message>
491
+
492
+ <message name="Management.ApplicationService.get_metadata_persistenceRequest">
493
+ <part name="apps" type="tns:Common.StringSequence"/>
494
+ <part name="names" type="tns:Common.StringSequenceSequence"/>
495
+ </message>
496
+ <message name="Management.ApplicationService.get_metadata_persistenceResponse">
497
+ <part name="return" type="tns:Common.MetadataPersistenceSequenceSequence"/>
498
+ </message>
499
+
500
+ <message name="Management.ApplicationService.get_versionRequest">
501
+ </message>
502
+ <message name="Management.ApplicationService.get_versionResponse">
503
+ <part name="return" type="xsd:string"/>
504
+ </message>
505
+
506
+ <!-- portType -->
507
+
508
+ <portType name="Management.ApplicationServicePortType">
509
+ <operation name="get_list">
510
+ <documentation>
511
+ Gets the names of all application services. Note that Application
512
+ Services are always created in a subfolder so if you call get_list
513
+ immediately after creating an Application Service you will not get
514
+ the application in the results unless you set the app folder as the
515
+ active folder or you enable recursive queries.
516
+
517
+ </documentation>
518
+ <input message="tns:Management.ApplicationService.get_listRequest"/>
519
+ <output message="tns:Management.ApplicationService.get_listResponse"/>
520
+ </operation>
521
+ <operation name="create">
522
+ <documentation>
523
+ Creates a new Application Service. This method first creates a
524
+ folder named after the application with a ".app" suffix, then
525
+ executes the application template implementation script to create the
526
+ objects owned by the application. For example, for an application
527
+ service named "myapp", and application template named "myapp_tpl",
528
+ the system creates a folder named "myapp.app" in the current folder,
529
+ perhaps with a pool and virtual in the new folder, if the
530
+ application template script so directs.
531
+
532
+ </documentation>
533
+ <input message="tns:Management.ApplicationService.createRequest"/>
534
+ <output message="tns:Management.ApplicationService.createResponse"/>
535
+ </operation>
536
+ <operation name="create_extended">
537
+ <documentation>
538
+ Creates a new Application Service with extended variables. Extended
539
+ variables allows you to specify more than just name and value. This
540
+ method first creates a folder named after the application with a
541
+ ".app" suffix, then executes the application template implementation
542
+ script to create the objects owned by the application. For example,
543
+ for an application service named "myapp", and application template
544
+ named "myapp_tpl", the system creates a folder named "myapp.app" in
545
+ the current folder, perhaps with a pool and virtual in the new
546
+ folder, if the application template script so directs.
547
+ If a variable is marked as encrypted, then the value will be
548
+ encrypted by the system.
549
+
550
+ </documentation>
551
+ <input message="tns:Management.ApplicationService.create_extendedRequest"/>
552
+ <output message="tns:Management.ApplicationService.create_extendedResponse"/>
553
+ </operation>
554
+ <operation name="create_generic">
555
+ <documentation>
556
+ Creates a generic Application service. This method automatically
557
+ creates a folder named after the application with a ".app" suffix.
558
+ Any object created in this folder will become owned by the
559
+ application.
560
+
561
+ </documentation>
562
+ <input message="tns:Management.ApplicationService.create_genericRequest"/>
563
+ <output message="tns:Management.ApplicationService.create_genericResponse"/>
564
+ </operation>
565
+ <operation name="modify">
566
+ <documentation>
567
+ Modifies an existing application service. All existing application
568
+ variables and values are replaced with the given sets of variables.
569
+ The application template implementation script is also executed
570
+ which may create new objects as directed by the script. Existing
571
+ objects owned by the application will be deleted if they are not
572
+ recreated by the script.
573
+
574
+ </documentation>
575
+ <input message="tns:Management.ApplicationService.modifyRequest"/>
576
+ <output message="tns:Management.ApplicationService.modifyResponse"/>
577
+ </operation>
578
+ <operation name="modify_extended">
579
+ <documentation>
580
+ Modifies an existing application service. This causes previous
581
+ variables to be replaced by any new variables, where specified, and
582
+ causes the application template implementation script to be rerun,
583
+ which may create new objects, as directed by the script. Existing
584
+ objects owned by the application will be deleted if they are not
585
+ recreated by the script.
586
+ If a variable is marked as encrypted, then it will be encrypted by
587
+ the system if it is not already. If a variable is to be changed
588
+ from encrypted to unencrypted, then a new plain-text value must
589
+ also be provided.
590
+
591
+ </documentation>
592
+ <input message="tns:Management.ApplicationService.modify_extendedRequest"/>
593
+ <output message="tns:Management.ApplicationService.modify_extendedResponse"/>
594
+ </operation>
595
+ <operation name="convert_to_generic">
596
+ <documentation>
597
+ Modifies an existing application service to remove the association
598
+ with the application template. All objects that were created by the
599
+ template will continue to be owned by the application service and the
600
+ application variables will be preserved. The modify method can be
601
+ used to reassociate a generic application service with a template.
602
+
603
+ </documentation>
604
+ <input message="tns:Management.ApplicationService.convert_to_genericRequest"/>
605
+ <output message="tns:Management.ApplicationService.convert_to_genericResponse"/>
606
+ </operation>
607
+ <operation name="delete_application_service">
608
+ <documentation>
609
+ Deletes the specified application services. All objects owned by the
610
+ application and the application folder are also deleted.
611
+
612
+ </documentation>
613
+ <input message="tns:Management.ApplicationService.delete_application_serviceRequest"/>
614
+ <output message="tns:Management.ApplicationService.delete_application_serviceResponse"/>
615
+ </operation>
616
+ <operation name="delete_all_application_services">
617
+ <documentation>
618
+ Deletes all application services.
619
+
620
+ Note: To use this method in 11.4.0 and later, you will need
621
+ to use System::Session::set_recursive_query_state to enable
622
+ the recursive query/operation state (it applies to delete
623
+ as well). This is because the application services reside
624
+ in folders below the active folder.
625
+
626
+ </documentation>
627
+ <input message="tns:Management.ApplicationService.delete_all_application_servicesRequest"/>
628
+ <output message="tns:Management.ApplicationService.delete_all_application_servicesResponse"/>
629
+ </operation>
630
+ <operation name="set_description">
631
+ <documentation>
632
+ Sets the descriptions for the the specified application services.
633
+
634
+ </documentation>
635
+ <input message="tns:Management.ApplicationService.set_descriptionRequest"/>
636
+ <output message="tns:Management.ApplicationService.set_descriptionResponse"/>
637
+ </operation>
638
+ <operation name="get_description">
639
+ <documentation>
640
+ Gets the descriptions for the the specified application services.
641
+
642
+ </documentation>
643
+ <input message="tns:Management.ApplicationService.get_descriptionRequest"/>
644
+ <output message="tns:Management.ApplicationService.get_descriptionResponse"/>
645
+ </operation>
646
+ <operation name="get_template">
647
+ <documentation>
648
+ Gets the name of the template used to manage the configuration owned
649
+ by the specified application services. If the application does not
650
+ currently have a template an empty string will be returned.
651
+
652
+ </documentation>
653
+ <input message="tns:Management.ApplicationService.get_templateRequest"/>
654
+ <output message="tns:Management.ApplicationService.get_templateResponse"/>
655
+ </operation>
656
+ <operation name="set_device_group">
657
+ <documentation>
658
+ Set the device group that will be used to sync the application
659
+ objects to other devices.
660
+
661
+ </documentation>
662
+ <input message="tns:Management.ApplicationService.set_device_groupRequest"/>
663
+ <output message="tns:Management.ApplicationService.set_device_groupResponse"/>
664
+ </operation>
665
+ <operation name="get_device_group">
666
+ <documentation>
667
+ Gets the name of the device group for the application. Note that if
668
+ the keyword "default" was used to set the device group, the value
669
+ returned here will be the actual name of the device group that was
670
+ inherited.
671
+
672
+ </documentation>
673
+ <input message="tns:Management.ApplicationService.get_device_groupRequest"/>
674
+ <output message="tns:Management.ApplicationService.get_device_groupResponse"/>
675
+ </operation>
676
+ <operation name="is_device_group_inherited">
677
+ <documentation>
678
+ Gets whether the value returned by get_device_group was inherited
679
+ from the parent folder.
680
+
681
+ </documentation>
682
+ <input message="tns:Management.ApplicationService.is_device_group_inheritedRequest"/>
683
+ <output message="tns:Management.ApplicationService.is_device_group_inheritedResponse"/>
684
+ </operation>
685
+ <operation name="set_traffic_group">
686
+ <documentation>
687
+ Set the traffic group that will be used for failover with the
688
+ application services.
689
+
690
+ </documentation>
691
+ <input message="tns:Management.ApplicationService.set_traffic_groupRequest"/>
692
+ <output message="tns:Management.ApplicationService.set_traffic_groupResponse"/>
693
+ </operation>
694
+ <operation name="get_traffic_group">
695
+ <documentation>
696
+ Gets the name of the application's traffic group. Note that if
697
+ the keyword "default" was used to set the traffic group, the value
698
+ returned here will be the actual name of the traffic group that was
699
+ inherited.
700
+
701
+ </documentation>
702
+ <input message="tns:Management.ApplicationService.get_traffic_groupRequest"/>
703
+ <output message="tns:Management.ApplicationService.get_traffic_groupResponse"/>
704
+ </operation>
705
+ <operation name="is_traffic_group_inherited">
706
+ <documentation>
707
+ Gets whether the value returned by get_traffic_group was inherited
708
+ from the parent folder.
709
+
710
+ </documentation>
711
+ <input message="tns:Management.ApplicationService.is_traffic_group_inheritedRequest"/>
712
+ <output message="tns:Management.ApplicationService.is_traffic_group_inheritedResponse"/>
713
+ </operation>
714
+ <operation name="set_strict_updates_state">
715
+ <documentation>
716
+ Sets the state to enforce strict-updates checking for the object
717
+ owned by the application service.
718
+
719
+ If set, all modifications made directly to the objects owned by the
720
+ application will be rejected. All changes must be made by modifying
721
+ the application variables and executing the appropriate application
722
+ template action.
723
+
724
+ </documentation>
725
+ <input message="tns:Management.ApplicationService.set_strict_updates_stateRequest"/>
726
+ <output message="tns:Management.ApplicationService.set_strict_updates_stateResponse"/>
727
+ </operation>
728
+ <operation name="get_strict_updates_state">
729
+ <documentation>
730
+ Gets the state to enforce strict-update checking for a set of
731
+ application services.
732
+
733
+ </documentation>
734
+ <input message="tns:Management.ApplicationService.get_strict_updates_stateRequest"/>
735
+ <output message="tns:Management.ApplicationService.get_strict_updates_stateResponse"/>
736
+ </operation>
737
+ <operation name="is_template_modified">
738
+ <documentation>
739
+ Gets a booleann indicating whether the template that was used to create the
740
+ application service has been modified and the application service should
741
+ be updated using the modify method.
742
+
743
+ </documentation>
744
+ <input message="tns:Management.ApplicationService.is_template_modifiedRequest"/>
745
+ <output message="tns:Management.ApplicationService.is_template_modifiedResponse"/>
746
+ </operation>
747
+ <operation name="get_scalar_vars">
748
+ <documentation>
749
+ Gets the scalar variables for the application.
750
+
751
+ </documentation>
752
+ <input message="tns:Management.ApplicationService.get_scalar_varsRequest"/>
753
+ <output message="tns:Management.ApplicationService.get_scalar_varsResponse"/>
754
+ </operation>
755
+ <operation name="get_scalar_vars_extended">
756
+ <documentation>
757
+ Gets the scalar variables for the application with extended
758
+ information.
759
+ If a variable is marked as encrypted, then it has been encrypted by
760
+ the system.
761
+
762
+ </documentation>
763
+ <input message="tns:Management.ApplicationService.get_scalar_vars_extendedRequest"/>
764
+ <output message="tns:Management.ApplicationService.get_scalar_vars_extendedResponse"/>
765
+ </operation>
766
+ <operation name="get_list_vars">
767
+ <documentation>
768
+ Gets the list variables for the application.
769
+
770
+ </documentation>
771
+ <input message="tns:Management.ApplicationService.get_list_varsRequest"/>
772
+ <output message="tns:Management.ApplicationService.get_list_varsResponse"/>
773
+ </operation>
774
+ <operation name="get_list_vars_extended">
775
+ <documentation>
776
+ Gets the list variables for the application with extended information.
777
+ If a variable is marked as encrypted, then it has been encrypted by
778
+ the system.
779
+
780
+ </documentation>
781
+ <input message="tns:Management.ApplicationService.get_list_vars_extendedRequest"/>
782
+ <output message="tns:Management.ApplicationService.get_list_vars_extendedResponse"/>
783
+ </operation>
784
+ <operation name="get_table_vars">
785
+ <documentation>
786
+ Gets the table variables for the application.
787
+
788
+ </documentation>
789
+ <input message="tns:Management.ApplicationService.get_table_varsRequest"/>
790
+ <output message="tns:Management.ApplicationService.get_table_varsResponse"/>
791
+ </operation>
792
+ <operation name="get_table_vars_extended">
793
+ <documentation>
794
+ Gets the table variables for the application with extended information.
795
+ If a variable is marked as encrypted, then it has been encrypted by
796
+ the system.
797
+
798
+ </documentation>
799
+ <input message="tns:Management.ApplicationService.get_table_vars_extendedRequest"/>
800
+ <output message="tns:Management.ApplicationService.get_table_vars_extendedResponse"/>
801
+ </operation>
802
+ <operation name="get_metadata">
803
+ <documentation>
804
+ Gets the user metadata for the specified apps.
805
+ User metadata, also metadata for short, is mainly a name/value
806
+ pair that is associated with a metadata capable config (MCC) object.
807
+ Some exmaples of MCC objects are ltm pool and virtual server.
808
+ The combination of the MCC object name and the metadata name
809
+ uniguely identify an instance of the metadata. One MCC object
810
+ may have multiple instances of metadata associated with it.
811
+ In addition to name/value pair, metadata also has a persistence
812
+ attribute. See Common::MetadataPersistence for its definition.
813
+
814
+ </documentation>
815
+ <input message="tns:Management.ApplicationService.get_metadataRequest"/>
816
+ <output message="tns:Management.ApplicationService.get_metadataResponse"/>
817
+ </operation>
818
+ <operation name="add_metadata">
819
+ <documentation>
820
+ Adds the metadata for the specified apps.
821
+ For definition of the metadata, refer to the get_metadata method
822
+ description.
823
+
824
+ </documentation>
825
+ <input message="tns:Management.ApplicationService.add_metadataRequest"/>
826
+ <output message="tns:Management.ApplicationService.add_metadataResponse"/>
827
+ </operation>
828
+ <operation name="remove_metadata">
829
+ <documentation>
830
+ Removes the metadata for the specified apps and names.
831
+ For definition of the metadata, refer to the get_metadata method
832
+ description.
833
+
834
+ </documentation>
835
+ <input message="tns:Management.ApplicationService.remove_metadataRequest"/>
836
+ <output message="tns:Management.ApplicationService.remove_metadataResponse"/>
837
+ </operation>
838
+ <operation name="remove_all_metadata">
839
+ <documentation>
840
+ Removes all the metadata instances for the specified apps.
841
+
842
+ </documentation>
843
+ <input message="tns:Management.ApplicationService.remove_all_metadataRequest"/>
844
+ <output message="tns:Management.ApplicationService.remove_all_metadataResponse"/>
845
+ </operation>
846
+ <operation name="set_metadata_value">
847
+ <documentation>
848
+ Sets the values for the specified metadata.
849
+ For definition of the metadata, refer to the get_metadata method
850
+ description.
851
+
852
+ </documentation>
853
+ <input message="tns:Management.ApplicationService.set_metadata_valueRequest"/>
854
+ <output message="tns:Management.ApplicationService.set_metadata_valueResponse"/>
855
+ </operation>
856
+ <operation name="get_metadata_value">
857
+ <documentation>
858
+ Gets the metadata values for the specified metadata.
859
+ For definition of the metadata, refer to the get_metadata method
860
+ description.
861
+
862
+ </documentation>
863
+ <input message="tns:Management.ApplicationService.get_metadata_valueRequest"/>
864
+ <output message="tns:Management.ApplicationService.get_metadata_valueResponse"/>
865
+ </operation>
866
+ <operation name="set_metadata_description">
867
+ <documentation>
868
+ Sets the descriptions for the specified metadata.
869
+ For definition of the metadata, refer to the get_metadata method
870
+ description.
871
+
872
+ </documentation>
873
+ <input message="tns:Management.ApplicationService.set_metadata_descriptionRequest"/>
874
+ <output message="tns:Management.ApplicationService.set_metadata_descriptionResponse"/>
875
+ </operation>
876
+ <operation name="get_metadata_description">
877
+ <documentation>
878
+ Gets the metadata descriptions for the specified metadata.
879
+ For definition of the metadata, refer to the get_metadata method
880
+ description.
881
+
882
+ </documentation>
883
+ <input message="tns:Management.ApplicationService.get_metadata_descriptionRequest"/>
884
+ <output message="tns:Management.ApplicationService.get_metadata_descriptionResponse"/>
885
+ </operation>
886
+ <operation name="set_metadata_persistence">
887
+ <documentation>
888
+ Sets the persistence for the specified metadata.
889
+ For definition of the metadata, refer to the get_metadata method
890
+ description.
891
+
892
+ </documentation>
893
+ <input message="tns:Management.ApplicationService.set_metadata_persistenceRequest"/>
894
+ <output message="tns:Management.ApplicationService.set_metadata_persistenceResponse"/>
895
+ </operation>
896
+ <operation name="get_metadata_persistence">
897
+ <documentation>
898
+ Gets the persistence for the specified metadata.
899
+ For definition of the metadata, refer to the get_metadata method
900
+ description.
901
+
902
+ </documentation>
903
+ <input message="tns:Management.ApplicationService.get_metadata_persistenceRequest"/>
904
+ <output message="tns:Management.ApplicationService.get_metadata_persistenceResponse"/>
905
+ </operation>
906
+ <operation name="get_version">
907
+ <documentation>
908
+ Gets the version information for this interface.
909
+
910
+ </documentation>
911
+ <input message="tns:Management.ApplicationService.get_versionRequest"/>
912
+ <output message="tns:Management.ApplicationService.get_versionResponse"/>
913
+ </operation>
914
+ </portType>
915
+
916
+ <!-- binding -->
917
+
918
+ <binding name="Management.ApplicationServiceBinding" type="tns:Management.ApplicationServicePortType">
919
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
920
+ <operation name="get_list">
921
+ <documentation>
922
+ Gets the names of all application services. Note that Application
923
+ Services are always created in a subfolder so if you call get_list
924
+ immediately after creating an Application Service you will not get
925
+ the application in the results unless you set the app folder as the
926
+ active folder or you enable recursive queries.
927
+
928
+ </documentation>
929
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
930
+ <input>
931
+ <soap:body
932
+ use="encoded"
933
+ namespace="urn:iControl:Management/ApplicationService"
934
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
935
+ </input>
936
+ <output>
937
+ <soap:body
938
+ use="encoded"
939
+ namespace="urn:iControl:Management/ApplicationService"
940
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
941
+ </output>
942
+ </operation>
943
+
944
+ <operation name="create">
945
+ <documentation>
946
+ Creates a new Application Service. This method first creates a
947
+ folder named after the application with a ".app" suffix, then
948
+ executes the application template implementation script to create the
949
+ objects owned by the application. For example, for an application
950
+ service named "myapp", and application template named "myapp_tpl",
951
+ the system creates a folder named "myapp.app" in the current folder,
952
+ perhaps with a pool and virtual in the new folder, if the
953
+ application template script so directs.
954
+
955
+ </documentation>
956
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
957
+ <input>
958
+ <soap:body
959
+ use="encoded"
960
+ namespace="urn:iControl:Management/ApplicationService"
961
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
962
+ </input>
963
+ <output>
964
+ <soap:body
965
+ use="encoded"
966
+ namespace="urn:iControl:Management/ApplicationService"
967
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
968
+ </output>
969
+ </operation>
970
+
971
+ <operation name="create_extended">
972
+ <documentation>
973
+ Creates a new Application Service with extended variables. Extended
974
+ variables allows you to specify more than just name and value. This
975
+ method first creates a folder named after the application with a
976
+ ".app" suffix, then executes the application template implementation
977
+ script to create the objects owned by the application. For example,
978
+ for an application service named "myapp", and application template
979
+ named "myapp_tpl", the system creates a folder named "myapp.app" in
980
+ the current folder, perhaps with a pool and virtual in the new
981
+ folder, if the application template script so directs.
982
+ If a variable is marked as encrypted, then the value will be
983
+ encrypted by the system.
984
+
985
+ </documentation>
986
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
987
+ <input>
988
+ <soap:body
989
+ use="encoded"
990
+ namespace="urn:iControl:Management/ApplicationService"
991
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
992
+ </input>
993
+ <output>
994
+ <soap:body
995
+ use="encoded"
996
+ namespace="urn:iControl:Management/ApplicationService"
997
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
998
+ </output>
999
+ </operation>
1000
+
1001
+ <operation name="create_generic">
1002
+ <documentation>
1003
+ Creates a generic Application service. This method automatically
1004
+ creates a folder named after the application with a ".app" suffix.
1005
+ Any object created in this folder will become owned by the
1006
+ application.
1007
+
1008
+ </documentation>
1009
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1010
+ <input>
1011
+ <soap:body
1012
+ use="encoded"
1013
+ namespace="urn:iControl:Management/ApplicationService"
1014
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1015
+ </input>
1016
+ <output>
1017
+ <soap:body
1018
+ use="encoded"
1019
+ namespace="urn:iControl:Management/ApplicationService"
1020
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1021
+ </output>
1022
+ </operation>
1023
+
1024
+ <operation name="modify">
1025
+ <documentation>
1026
+ Modifies an existing application service. All existing application
1027
+ variables and values are replaced with the given sets of variables.
1028
+ The application template implementation script is also executed
1029
+ which may create new objects as directed by the script. Existing
1030
+ objects owned by the application will be deleted if they are not
1031
+ recreated by the script.
1032
+
1033
+ </documentation>
1034
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1035
+ <input>
1036
+ <soap:body
1037
+ use="encoded"
1038
+ namespace="urn:iControl:Management/ApplicationService"
1039
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1040
+ </input>
1041
+ <output>
1042
+ <soap:body
1043
+ use="encoded"
1044
+ namespace="urn:iControl:Management/ApplicationService"
1045
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1046
+ </output>
1047
+ </operation>
1048
+
1049
+ <operation name="modify_extended">
1050
+ <documentation>
1051
+ Modifies an existing application service. This causes previous
1052
+ variables to be replaced by any new variables, where specified, and
1053
+ causes the application template implementation script to be rerun,
1054
+ which may create new objects, as directed by the script. Existing
1055
+ objects owned by the application will be deleted if they are not
1056
+ recreated by the script.
1057
+ If a variable is marked as encrypted, then it will be encrypted by
1058
+ the system if it is not already. If a variable is to be changed
1059
+ from encrypted to unencrypted, then a new plain-text value must
1060
+ also be provided.
1061
+
1062
+ </documentation>
1063
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1064
+ <input>
1065
+ <soap:body
1066
+ use="encoded"
1067
+ namespace="urn:iControl:Management/ApplicationService"
1068
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1069
+ </input>
1070
+ <output>
1071
+ <soap:body
1072
+ use="encoded"
1073
+ namespace="urn:iControl:Management/ApplicationService"
1074
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1075
+ </output>
1076
+ </operation>
1077
+
1078
+ <operation name="convert_to_generic">
1079
+ <documentation>
1080
+ Modifies an existing application service to remove the association
1081
+ with the application template. All objects that were created by the
1082
+ template will continue to be owned by the application service and the
1083
+ application variables will be preserved. The modify method can be
1084
+ used to reassociate a generic application service with a template.
1085
+
1086
+ </documentation>
1087
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1088
+ <input>
1089
+ <soap:body
1090
+ use="encoded"
1091
+ namespace="urn:iControl:Management/ApplicationService"
1092
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1093
+ </input>
1094
+ <output>
1095
+ <soap:body
1096
+ use="encoded"
1097
+ namespace="urn:iControl:Management/ApplicationService"
1098
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1099
+ </output>
1100
+ </operation>
1101
+
1102
+ <operation name="delete_application_service">
1103
+ <documentation>
1104
+ Deletes the specified application services. All objects owned by the
1105
+ application and the application folder are also deleted.
1106
+
1107
+ </documentation>
1108
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1109
+ <input>
1110
+ <soap:body
1111
+ use="encoded"
1112
+ namespace="urn:iControl:Management/ApplicationService"
1113
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1114
+ </input>
1115
+ <output>
1116
+ <soap:body
1117
+ use="encoded"
1118
+ namespace="urn:iControl:Management/ApplicationService"
1119
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1120
+ </output>
1121
+ </operation>
1122
+
1123
+ <operation name="delete_all_application_services">
1124
+ <documentation>
1125
+ Deletes all application services.
1126
+
1127
+ Note: To use this method in 11.4.0 and later, you will need
1128
+ to use System::Session::set_recursive_query_state to enable
1129
+ the recursive query/operation state (it applies to delete
1130
+ as well). This is because the application services reside
1131
+ in folders below the active folder.
1132
+
1133
+ </documentation>
1134
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1135
+ <input>
1136
+ <soap:body
1137
+ use="encoded"
1138
+ namespace="urn:iControl:Management/ApplicationService"
1139
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1140
+ </input>
1141
+ <output>
1142
+ <soap:body
1143
+ use="encoded"
1144
+ namespace="urn:iControl:Management/ApplicationService"
1145
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1146
+ </output>
1147
+ </operation>
1148
+
1149
+ <operation name="set_description">
1150
+ <documentation>
1151
+ Sets the descriptions for the the specified application services.
1152
+
1153
+ </documentation>
1154
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1155
+ <input>
1156
+ <soap:body
1157
+ use="encoded"
1158
+ namespace="urn:iControl:Management/ApplicationService"
1159
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1160
+ </input>
1161
+ <output>
1162
+ <soap:body
1163
+ use="encoded"
1164
+ namespace="urn:iControl:Management/ApplicationService"
1165
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1166
+ </output>
1167
+ </operation>
1168
+
1169
+ <operation name="get_description">
1170
+ <documentation>
1171
+ Gets the descriptions for the the specified application services.
1172
+
1173
+ </documentation>
1174
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1175
+ <input>
1176
+ <soap:body
1177
+ use="encoded"
1178
+ namespace="urn:iControl:Management/ApplicationService"
1179
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1180
+ </input>
1181
+ <output>
1182
+ <soap:body
1183
+ use="encoded"
1184
+ namespace="urn:iControl:Management/ApplicationService"
1185
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1186
+ </output>
1187
+ </operation>
1188
+
1189
+ <operation name="get_template">
1190
+ <documentation>
1191
+ Gets the name of the template used to manage the configuration owned
1192
+ by the specified application services. If the application does not
1193
+ currently have a template an empty string will be returned.
1194
+
1195
+ </documentation>
1196
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1197
+ <input>
1198
+ <soap:body
1199
+ use="encoded"
1200
+ namespace="urn:iControl:Management/ApplicationService"
1201
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1202
+ </input>
1203
+ <output>
1204
+ <soap:body
1205
+ use="encoded"
1206
+ namespace="urn:iControl:Management/ApplicationService"
1207
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1208
+ </output>
1209
+ </operation>
1210
+
1211
+ <operation name="set_device_group">
1212
+ <documentation>
1213
+ Set the device group that will be used to sync the application
1214
+ objects to other devices.
1215
+
1216
+ </documentation>
1217
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1218
+ <input>
1219
+ <soap:body
1220
+ use="encoded"
1221
+ namespace="urn:iControl:Management/ApplicationService"
1222
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1223
+ </input>
1224
+ <output>
1225
+ <soap:body
1226
+ use="encoded"
1227
+ namespace="urn:iControl:Management/ApplicationService"
1228
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1229
+ </output>
1230
+ </operation>
1231
+
1232
+ <operation name="get_device_group">
1233
+ <documentation>
1234
+ Gets the name of the device group for the application. Note that if
1235
+ the keyword "default" was used to set the device group, the value
1236
+ returned here will be the actual name of the device group that was
1237
+ inherited.
1238
+
1239
+ </documentation>
1240
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1241
+ <input>
1242
+ <soap:body
1243
+ use="encoded"
1244
+ namespace="urn:iControl:Management/ApplicationService"
1245
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1246
+ </input>
1247
+ <output>
1248
+ <soap:body
1249
+ use="encoded"
1250
+ namespace="urn:iControl:Management/ApplicationService"
1251
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1252
+ </output>
1253
+ </operation>
1254
+
1255
+ <operation name="is_device_group_inherited">
1256
+ <documentation>
1257
+ Gets whether the value returned by get_device_group was inherited
1258
+ from the parent folder.
1259
+
1260
+ </documentation>
1261
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1262
+ <input>
1263
+ <soap:body
1264
+ use="encoded"
1265
+ namespace="urn:iControl:Management/ApplicationService"
1266
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1267
+ </input>
1268
+ <output>
1269
+ <soap:body
1270
+ use="encoded"
1271
+ namespace="urn:iControl:Management/ApplicationService"
1272
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1273
+ </output>
1274
+ </operation>
1275
+
1276
+ <operation name="set_traffic_group">
1277
+ <documentation>
1278
+ Set the traffic group that will be used for failover with the
1279
+ application services.
1280
+
1281
+ </documentation>
1282
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1283
+ <input>
1284
+ <soap:body
1285
+ use="encoded"
1286
+ namespace="urn:iControl:Management/ApplicationService"
1287
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1288
+ </input>
1289
+ <output>
1290
+ <soap:body
1291
+ use="encoded"
1292
+ namespace="urn:iControl:Management/ApplicationService"
1293
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1294
+ </output>
1295
+ </operation>
1296
+
1297
+ <operation name="get_traffic_group">
1298
+ <documentation>
1299
+ Gets the name of the application's traffic group. Note that if
1300
+ the keyword "default" was used to set the traffic group, the value
1301
+ returned here will be the actual name of the traffic group that was
1302
+ inherited.
1303
+
1304
+ </documentation>
1305
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1306
+ <input>
1307
+ <soap:body
1308
+ use="encoded"
1309
+ namespace="urn:iControl:Management/ApplicationService"
1310
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1311
+ </input>
1312
+ <output>
1313
+ <soap:body
1314
+ use="encoded"
1315
+ namespace="urn:iControl:Management/ApplicationService"
1316
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1317
+ </output>
1318
+ </operation>
1319
+
1320
+ <operation name="is_traffic_group_inherited">
1321
+ <documentation>
1322
+ Gets whether the value returned by get_traffic_group was inherited
1323
+ from the parent folder.
1324
+
1325
+ </documentation>
1326
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1327
+ <input>
1328
+ <soap:body
1329
+ use="encoded"
1330
+ namespace="urn:iControl:Management/ApplicationService"
1331
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1332
+ </input>
1333
+ <output>
1334
+ <soap:body
1335
+ use="encoded"
1336
+ namespace="urn:iControl:Management/ApplicationService"
1337
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1338
+ </output>
1339
+ </operation>
1340
+
1341
+ <operation name="set_strict_updates_state">
1342
+ <documentation>
1343
+ Sets the state to enforce strict-updates checking for the object
1344
+ owned by the application service.
1345
+
1346
+ If set, all modifications made directly to the objects owned by the
1347
+ application will be rejected. All changes must be made by modifying
1348
+ the application variables and executing the appropriate application
1349
+ template action.
1350
+
1351
+ </documentation>
1352
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1353
+ <input>
1354
+ <soap:body
1355
+ use="encoded"
1356
+ namespace="urn:iControl:Management/ApplicationService"
1357
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1358
+ </input>
1359
+ <output>
1360
+ <soap:body
1361
+ use="encoded"
1362
+ namespace="urn:iControl:Management/ApplicationService"
1363
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1364
+ </output>
1365
+ </operation>
1366
+
1367
+ <operation name="get_strict_updates_state">
1368
+ <documentation>
1369
+ Gets the state to enforce strict-update checking for a set of
1370
+ application services.
1371
+
1372
+ </documentation>
1373
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1374
+ <input>
1375
+ <soap:body
1376
+ use="encoded"
1377
+ namespace="urn:iControl:Management/ApplicationService"
1378
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1379
+ </input>
1380
+ <output>
1381
+ <soap:body
1382
+ use="encoded"
1383
+ namespace="urn:iControl:Management/ApplicationService"
1384
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1385
+ </output>
1386
+ </operation>
1387
+
1388
+ <operation name="is_template_modified">
1389
+ <documentation>
1390
+ Gets a booleann indicating whether the template that was used to create the
1391
+ application service has been modified and the application service should
1392
+ be updated using the modify method.
1393
+
1394
+ </documentation>
1395
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1396
+ <input>
1397
+ <soap:body
1398
+ use="encoded"
1399
+ namespace="urn:iControl:Management/ApplicationService"
1400
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1401
+ </input>
1402
+ <output>
1403
+ <soap:body
1404
+ use="encoded"
1405
+ namespace="urn:iControl:Management/ApplicationService"
1406
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1407
+ </output>
1408
+ </operation>
1409
+
1410
+ <operation name="get_scalar_vars">
1411
+ <documentation>
1412
+ Gets the scalar variables for the application.
1413
+
1414
+ </documentation>
1415
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1416
+ <input>
1417
+ <soap:body
1418
+ use="encoded"
1419
+ namespace="urn:iControl:Management/ApplicationService"
1420
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1421
+ </input>
1422
+ <output>
1423
+ <soap:body
1424
+ use="encoded"
1425
+ namespace="urn:iControl:Management/ApplicationService"
1426
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1427
+ </output>
1428
+ </operation>
1429
+
1430
+ <operation name="get_scalar_vars_extended">
1431
+ <documentation>
1432
+ Gets the scalar variables for the application with extended
1433
+ information.
1434
+ If a variable is marked as encrypted, then it has been encrypted by
1435
+ the system.
1436
+
1437
+ </documentation>
1438
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1439
+ <input>
1440
+ <soap:body
1441
+ use="encoded"
1442
+ namespace="urn:iControl:Management/ApplicationService"
1443
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1444
+ </input>
1445
+ <output>
1446
+ <soap:body
1447
+ use="encoded"
1448
+ namespace="urn:iControl:Management/ApplicationService"
1449
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1450
+ </output>
1451
+ </operation>
1452
+
1453
+ <operation name="get_list_vars">
1454
+ <documentation>
1455
+ Gets the list variables for the application.
1456
+
1457
+ </documentation>
1458
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1459
+ <input>
1460
+ <soap:body
1461
+ use="encoded"
1462
+ namespace="urn:iControl:Management/ApplicationService"
1463
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1464
+ </input>
1465
+ <output>
1466
+ <soap:body
1467
+ use="encoded"
1468
+ namespace="urn:iControl:Management/ApplicationService"
1469
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1470
+ </output>
1471
+ </operation>
1472
+
1473
+ <operation name="get_list_vars_extended">
1474
+ <documentation>
1475
+ Gets the list variables for the application with extended information.
1476
+ If a variable is marked as encrypted, then it has been encrypted by
1477
+ the system.
1478
+
1479
+ </documentation>
1480
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1481
+ <input>
1482
+ <soap:body
1483
+ use="encoded"
1484
+ namespace="urn:iControl:Management/ApplicationService"
1485
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1486
+ </input>
1487
+ <output>
1488
+ <soap:body
1489
+ use="encoded"
1490
+ namespace="urn:iControl:Management/ApplicationService"
1491
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1492
+ </output>
1493
+ </operation>
1494
+
1495
+ <operation name="get_table_vars">
1496
+ <documentation>
1497
+ Gets the table variables for the application.
1498
+
1499
+ </documentation>
1500
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1501
+ <input>
1502
+ <soap:body
1503
+ use="encoded"
1504
+ namespace="urn:iControl:Management/ApplicationService"
1505
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1506
+ </input>
1507
+ <output>
1508
+ <soap:body
1509
+ use="encoded"
1510
+ namespace="urn:iControl:Management/ApplicationService"
1511
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1512
+ </output>
1513
+ </operation>
1514
+
1515
+ <operation name="get_table_vars_extended">
1516
+ <documentation>
1517
+ Gets the table variables for the application with extended information.
1518
+ If a variable is marked as encrypted, then it has been encrypted by
1519
+ the system.
1520
+
1521
+ </documentation>
1522
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1523
+ <input>
1524
+ <soap:body
1525
+ use="encoded"
1526
+ namespace="urn:iControl:Management/ApplicationService"
1527
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1528
+ </input>
1529
+ <output>
1530
+ <soap:body
1531
+ use="encoded"
1532
+ namespace="urn:iControl:Management/ApplicationService"
1533
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1534
+ </output>
1535
+ </operation>
1536
+
1537
+ <operation name="get_metadata">
1538
+ <documentation>
1539
+ Gets the user metadata for the specified apps.
1540
+ User metadata, also metadata for short, is mainly a name/value
1541
+ pair that is associated with a metadata capable config (MCC) object.
1542
+ Some exmaples of MCC objects are ltm pool and virtual server.
1543
+ The combination of the MCC object name and the metadata name
1544
+ uniguely identify an instance of the metadata. One MCC object
1545
+ may have multiple instances of metadata associated with it.
1546
+ In addition to name/value pair, metadata also has a persistence
1547
+ attribute. See Common::MetadataPersistence for its definition.
1548
+
1549
+ </documentation>
1550
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1551
+ <input>
1552
+ <soap:body
1553
+ use="encoded"
1554
+ namespace="urn:iControl:Management/ApplicationService"
1555
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1556
+ </input>
1557
+ <output>
1558
+ <soap:body
1559
+ use="encoded"
1560
+ namespace="urn:iControl:Management/ApplicationService"
1561
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1562
+ </output>
1563
+ </operation>
1564
+
1565
+ <operation name="add_metadata">
1566
+ <documentation>
1567
+ Adds the metadata for the specified apps.
1568
+ For definition of the metadata, refer to the get_metadata method
1569
+ description.
1570
+
1571
+ </documentation>
1572
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1573
+ <input>
1574
+ <soap:body
1575
+ use="encoded"
1576
+ namespace="urn:iControl:Management/ApplicationService"
1577
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1578
+ </input>
1579
+ <output>
1580
+ <soap:body
1581
+ use="encoded"
1582
+ namespace="urn:iControl:Management/ApplicationService"
1583
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1584
+ </output>
1585
+ </operation>
1586
+
1587
+ <operation name="remove_metadata">
1588
+ <documentation>
1589
+ Removes the metadata for the specified apps and names.
1590
+ For definition of the metadata, refer to the get_metadata method
1591
+ description.
1592
+
1593
+ </documentation>
1594
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1595
+ <input>
1596
+ <soap:body
1597
+ use="encoded"
1598
+ namespace="urn:iControl:Management/ApplicationService"
1599
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1600
+ </input>
1601
+ <output>
1602
+ <soap:body
1603
+ use="encoded"
1604
+ namespace="urn:iControl:Management/ApplicationService"
1605
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1606
+ </output>
1607
+ </operation>
1608
+
1609
+ <operation name="remove_all_metadata">
1610
+ <documentation>
1611
+ Removes all the metadata instances for the specified apps.
1612
+
1613
+ </documentation>
1614
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1615
+ <input>
1616
+ <soap:body
1617
+ use="encoded"
1618
+ namespace="urn:iControl:Management/ApplicationService"
1619
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1620
+ </input>
1621
+ <output>
1622
+ <soap:body
1623
+ use="encoded"
1624
+ namespace="urn:iControl:Management/ApplicationService"
1625
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1626
+ </output>
1627
+ </operation>
1628
+
1629
+ <operation name="set_metadata_value">
1630
+ <documentation>
1631
+ Sets the values for the specified metadata.
1632
+ For definition of the metadata, refer to the get_metadata method
1633
+ description.
1634
+
1635
+ </documentation>
1636
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1637
+ <input>
1638
+ <soap:body
1639
+ use="encoded"
1640
+ namespace="urn:iControl:Management/ApplicationService"
1641
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1642
+ </input>
1643
+ <output>
1644
+ <soap:body
1645
+ use="encoded"
1646
+ namespace="urn:iControl:Management/ApplicationService"
1647
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1648
+ </output>
1649
+ </operation>
1650
+
1651
+ <operation name="get_metadata_value">
1652
+ <documentation>
1653
+ Gets the metadata values for the specified metadata.
1654
+ For definition of the metadata, refer to the get_metadata method
1655
+ description.
1656
+
1657
+ </documentation>
1658
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1659
+ <input>
1660
+ <soap:body
1661
+ use="encoded"
1662
+ namespace="urn:iControl:Management/ApplicationService"
1663
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1664
+ </input>
1665
+ <output>
1666
+ <soap:body
1667
+ use="encoded"
1668
+ namespace="urn:iControl:Management/ApplicationService"
1669
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1670
+ </output>
1671
+ </operation>
1672
+
1673
+ <operation name="set_metadata_description">
1674
+ <documentation>
1675
+ Sets the descriptions for the specified metadata.
1676
+ For definition of the metadata, refer to the get_metadata method
1677
+ description.
1678
+
1679
+ </documentation>
1680
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1681
+ <input>
1682
+ <soap:body
1683
+ use="encoded"
1684
+ namespace="urn:iControl:Management/ApplicationService"
1685
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1686
+ </input>
1687
+ <output>
1688
+ <soap:body
1689
+ use="encoded"
1690
+ namespace="urn:iControl:Management/ApplicationService"
1691
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1692
+ </output>
1693
+ </operation>
1694
+
1695
+ <operation name="get_metadata_description">
1696
+ <documentation>
1697
+ Gets the metadata descriptions for the specified metadata.
1698
+ For definition of the metadata, refer to the get_metadata method
1699
+ description.
1700
+
1701
+ </documentation>
1702
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1703
+ <input>
1704
+ <soap:body
1705
+ use="encoded"
1706
+ namespace="urn:iControl:Management/ApplicationService"
1707
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1708
+ </input>
1709
+ <output>
1710
+ <soap:body
1711
+ use="encoded"
1712
+ namespace="urn:iControl:Management/ApplicationService"
1713
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1714
+ </output>
1715
+ </operation>
1716
+
1717
+ <operation name="set_metadata_persistence">
1718
+ <documentation>
1719
+ Sets the persistence for the specified metadata.
1720
+ For definition of the metadata, refer to the get_metadata method
1721
+ description.
1722
+
1723
+ </documentation>
1724
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1725
+ <input>
1726
+ <soap:body
1727
+ use="encoded"
1728
+ namespace="urn:iControl:Management/ApplicationService"
1729
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1730
+ </input>
1731
+ <output>
1732
+ <soap:body
1733
+ use="encoded"
1734
+ namespace="urn:iControl:Management/ApplicationService"
1735
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1736
+ </output>
1737
+ </operation>
1738
+
1739
+ <operation name="get_metadata_persistence">
1740
+ <documentation>
1741
+ Gets the persistence for the specified metadata.
1742
+ For definition of the metadata, refer to the get_metadata method
1743
+ description.
1744
+
1745
+ </documentation>
1746
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1747
+ <input>
1748
+ <soap:body
1749
+ use="encoded"
1750
+ namespace="urn:iControl:Management/ApplicationService"
1751
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1752
+ </input>
1753
+ <output>
1754
+ <soap:body
1755
+ use="encoded"
1756
+ namespace="urn:iControl:Management/ApplicationService"
1757
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1758
+ </output>
1759
+ </operation>
1760
+
1761
+ <operation name="get_version">
1762
+ <documentation>
1763
+ Gets the version information for this interface.
1764
+
1765
+ </documentation>
1766
+ <soap:operation soapAction="urn:iControl:Management/ApplicationService"/>
1767
+ <input>
1768
+ <soap:body
1769
+ use="encoded"
1770
+ namespace="urn:iControl:Management/ApplicationService"
1771
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1772
+ </input>
1773
+ <output>
1774
+ <soap:body
1775
+ use="encoded"
1776
+ namespace="urn:iControl:Management/ApplicationService"
1777
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1778
+ </output>
1779
+ </operation>
1780
+ </binding>
1781
+
1782
+ <!-- service -->
1783
+
1784
+ <service name="Management.ApplicationService">
1785
+ <documentation>
1786
+ An Application Service is a collection of settings that represent a
1787
+ cohesive unit. It is created from an Application Template which defines
1788
+ which objects should be created for the application. When creating or
1789
+ modifying the application service, you supply values for the variables
1790
+ defined by the application template, and the system runs the application
1791
+ template implementation script with the variables you supply, typically
1792
+ resulting in creation of a tightly bound, related set of objects, as
1793
+ directed by the script.
1794
+ Note: Creation and modifications of application services do not obey
1795
+ normal transaction rules. If an application is modified as part of a
1796
+ transaction, the modification will be committed regardless if the
1797
+ transaction is rolled back.
1798
+
1799
+ </documentation>
1800
+ <port name="Management.ApplicationServicePort" binding="tns:Management.ApplicationServiceBinding">
1801
+ <soap:address location="https://url_to_service"/>
1802
+ </port>
1803
+ </service>
1804
+ </definitions>