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,1073 @@
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="System.SoftwareManagement"
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.OctetSequence">
25
+ <xsd:restriction base="xsd:base64Binary"/>
26
+ </xsd:simpleType>
27
+ <xsd:complexType name="System.SoftwareManagement.SoftwareStatusSequence">
28
+ <xsd:complexContent>
29
+ <xsd:restriction base='SOAP-ENC:Array'>
30
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.SoftwareManagement.SoftwareStatus[]'/>
31
+ </xsd:restriction>
32
+ </xsd:complexContent>
33
+ </xsd:complexType>
34
+ <xsd:complexType name="System.SoftwareManagement.softwareRepositoryImage">
35
+ <xsd:sequence>
36
+ <xsd:element name="chassis_slot_id" type="xsd:long"/>
37
+ <xsd:element name="filename" type="xsd:string"/>
38
+ <xsd:element name="product" type="xsd:string"/>
39
+ <xsd:element name="version" type="xsd:string"/>
40
+ <xsd:element name="build" type="xsd:string"/>
41
+ <xsd:element name="chksum" type="xsd:string"/>
42
+ <xsd:element name="verified" type="xsd:boolean"/>
43
+ <xsd:element name="build_date" type="xsd:string"/>
44
+ <xsd:element name="last_modified" type="xsd:string"/>
45
+ <xsd:element name="file_size" type="xsd:string"/>
46
+ </xsd:sequence>
47
+ </xsd:complexType>
48
+ <xsd:complexType name="System.SoftwareManagement.softwareRepositoryHotfix">
49
+ <xsd:sequence>
50
+ <xsd:element name="chassis_slot_id" type="xsd:long"/>
51
+ <xsd:element name="filename" type="xsd:string"/>
52
+ <xsd:element name="product" type="xsd:string"/>
53
+ <xsd:element name="version" type="xsd:string"/>
54
+ <xsd:element name="build" type="xsd:string"/>
55
+ <xsd:element name="chksum" type="xsd:string"/>
56
+ <xsd:element name="verified" type="xsd:boolean"/>
57
+ <xsd:element name="hotfix_id" type="xsd:string"/>
58
+ <xsd:element name="hotfix_title" type="xsd:string"/>
59
+ </xsd:sequence>
60
+ </xsd:complexType>
61
+ <xsd:complexType name="System.SoftwareManagement.SoftwareStatus">
62
+ <xsd:sequence>
63
+ <xsd:element name="installation_id" type="tns:System.SoftwareManagement.InstallationID"/>
64
+ <xsd:element name="product" type="xsd:string"/>
65
+ <xsd:element name="version" type="xsd:string"/>
66
+ <xsd:element name="build" type="xsd:string"/>
67
+ <xsd:element name="base_build" type="xsd:string"/>
68
+ <xsd:element name="active" type="xsd:boolean"/>
69
+ <xsd:element name="edition" type="xsd:string"/>
70
+ <xsd:element name="status" type="xsd:string"/>
71
+ </xsd:sequence>
72
+ </xsd:complexType>
73
+ <xsd:complexType name="System.SoftwareManagement.repositoryImageIDSequence">
74
+ <xsd:complexContent>
75
+ <xsd:restriction base='SOAP-ENC:Array'>
76
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.SoftwareManagement.repositoryImageID[]'/>
77
+ </xsd:restriction>
78
+ </xsd:complexContent>
79
+ </xsd:complexType>
80
+ <xsd:complexType name="Common.StringSequence">
81
+ <xsd:complexContent>
82
+ <xsd:restriction base='SOAP-ENC:Array'>
83
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
84
+ </xsd:restriction>
85
+ </xsd:complexContent>
86
+ </xsd:complexType>
87
+ <xsd:complexType name="System.SoftwareManagement.HotFixInformationSequence">
88
+ <xsd:complexContent>
89
+ <xsd:restriction base='SOAP-ENC:Array'>
90
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.SoftwareManagement.HotFixInformation[]'/>
91
+ </xsd:restriction>
92
+ </xsd:complexContent>
93
+ </xsd:complexType>
94
+ <xsd:complexType name="System.SoftwareManagement.InstallationID">
95
+ <xsd:sequence>
96
+ <xsd:element name="chassis_slot_id" type="xsd:long"/>
97
+ <xsd:element name="install_volume" type="xsd:string"/>
98
+ </xsd:sequence>
99
+ </xsd:complexType>
100
+ <xsd:complexType name="System.SoftwareManagement.InstallationIDSequence">
101
+ <xsd:complexContent>
102
+ <xsd:restriction base='SOAP-ENC:Array'>
103
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.SoftwareManagement.InstallationID[]'/>
104
+ </xsd:restriction>
105
+ </xsd:complexContent>
106
+ </xsd:complexType>
107
+ <xsd:complexType name="System.SoftwareManagement.HotFixInformation">
108
+ <xsd:sequence>
109
+ <xsd:element name="description" type="xsd:string"/>
110
+ <xsd:element name="product" type="xsd:string"/>
111
+ <xsd:element name="id" type="xsd:string"/>
112
+ <xsd:element name="version_resolved" type="xsd:string"/>
113
+ <xsd:element name="packages" type="tns:Common.StringSequence"/>
114
+ </xsd:sequence>
115
+ </xsd:complexType>
116
+ <xsd:complexType name="System.SoftwareManagement.repositoryImageID">
117
+ <xsd:sequence>
118
+ <xsd:element name="chassis_slot_id" type="xsd:long"/>
119
+ <xsd:element name="filename" type="xsd:string"/>
120
+ </xsd:sequence>
121
+ </xsd:complexType>
122
+ <xsd:complexType name="System.SoftwareManagement.softwareRepositoryImageSequence">
123
+ <xsd:complexContent>
124
+ <xsd:restriction base='SOAP-ENC:Array'>
125
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.SoftwareManagement.softwareRepositoryImage[]'/>
126
+ </xsd:restriction>
127
+ </xsd:complexContent>
128
+ </xsd:complexType>
129
+ <xsd:complexType name="System.SoftwareManagement.softwareRepositoryHotfixSequence">
130
+ <xsd:complexContent>
131
+ <xsd:restriction base='SOAP-ENC:Array'>
132
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.SoftwareManagement.softwareRepositoryHotfix[]'/>
133
+ </xsd:restriction>
134
+ </xsd:complexContent>
135
+ </xsd:complexType>
136
+ </xsd:schema>
137
+ </types>
138
+
139
+ <!-- message -->
140
+
141
+ <message name="System.SoftwareManagement.create_ramfsRequest">
142
+ </message>
143
+ <message name="System.SoftwareManagement.create_ramfsResponse">
144
+ <part name="return" type="xsd:string"/>
145
+ </message>
146
+
147
+ <message name="System.SoftwareManagement.cleanup_ramfsRequest">
148
+ </message>
149
+ <message name="System.SoftwareManagement.cleanup_ramfsResponse">
150
+ </message>
151
+
152
+ <message name="System.SoftwareManagement.install_hotfixRequest">
153
+ <part name="hotfix_files" type="tns:Common.StringSequence"/>
154
+ <part name="reboot_system" type="xsd:boolean"/>
155
+ </message>
156
+ <message name="System.SoftwareManagement.install_hotfixResponse">
157
+ </message>
158
+
159
+ <message name="System.SoftwareManagement.install_hotfix_no_daemonsRequest">
160
+ <part name="hotfix_files" type="tns:Common.StringSequence"/>
161
+ <part name="reboot_system" type="xsd:boolean"/>
162
+ </message>
163
+ <message name="System.SoftwareManagement.install_hotfix_no_daemonsResponse">
164
+ </message>
165
+
166
+ <message name="System.SoftwareManagement.get_hotfix_informationRequest">
167
+ </message>
168
+ <message name="System.SoftwareManagement.get_hotfix_informationResponse">
169
+ <part name="return" type="tns:System.SoftwareManagement.HotFixInformationSequence"/>
170
+ </message>
171
+
172
+ <message name="System.SoftwareManagement.get_rpm_package_informationRequest">
173
+ </message>
174
+ <message name="System.SoftwareManagement.get_rpm_package_informationResponse">
175
+ <part name="return" type="tns:Common.StringSequence"/>
176
+ </message>
177
+
178
+ <message name="System.SoftwareManagement.set_boot_image_informationRequest">
179
+ <part name="boot_image_information" type="tns:Common.OctetSequence"/>
180
+ </message>
181
+ <message name="System.SoftwareManagement.set_boot_image_informationResponse">
182
+ </message>
183
+
184
+ <message name="System.SoftwareManagement.get_boot_image_informationRequest">
185
+ <part name="save_active_config" type="xsd:boolean"/>
186
+ </message>
187
+ <message name="System.SoftwareManagement.get_boot_image_informationResponse">
188
+ <part name="return" type="tns:Common.OctetSequence"/>
189
+ </message>
190
+
191
+ <message name="System.SoftwareManagement.set_boot_locationRequest">
192
+ <part name="location" type="xsd:string"/>
193
+ </message>
194
+ <message name="System.SoftwareManagement.set_boot_locationResponse">
195
+ </message>
196
+
197
+ <message name="System.SoftwareManagement.get_boot_locationRequest">
198
+ </message>
199
+ <message name="System.SoftwareManagement.get_boot_locationResponse">
200
+ <part name="return" type="xsd:string"/>
201
+ </message>
202
+
203
+ <message name="System.SoftwareManagement.set_cluster_boot_locationRequest">
204
+ <part name="location" type="xsd:string"/>
205
+ </message>
206
+ <message name="System.SoftwareManagement.set_cluster_boot_locationResponse">
207
+ </message>
208
+
209
+ <message name="System.SoftwareManagement.get_cluster_boot_locationRequest">
210
+ </message>
211
+ <message name="System.SoftwareManagement.get_cluster_boot_locationResponse">
212
+ <part name="return" type="xsd:string"/>
213
+ </message>
214
+
215
+ <message name="System.SoftwareManagement.get_software_image_listRequest">
216
+ </message>
217
+ <message name="System.SoftwareManagement.get_software_image_listResponse">
218
+ <part name="return" type="tns:System.SoftwareManagement.repositoryImageIDSequence"/>
219
+ </message>
220
+
221
+ <message name="System.SoftwareManagement.get_software_hotfix_listRequest">
222
+ </message>
223
+ <message name="System.SoftwareManagement.get_software_hotfix_listResponse">
224
+ <part name="return" type="tns:System.SoftwareManagement.repositoryImageIDSequence"/>
225
+ </message>
226
+
227
+ <message name="System.SoftwareManagement.get_software_imageRequest">
228
+ <part name="imageIDs" type="tns:System.SoftwareManagement.repositoryImageIDSequence"/>
229
+ </message>
230
+ <message name="System.SoftwareManagement.get_software_imageResponse">
231
+ <part name="return" type="tns:System.SoftwareManagement.softwareRepositoryImageSequence"/>
232
+ </message>
233
+
234
+ <message name="System.SoftwareManagement.get_software_hotfixRequest">
235
+ <part name="imageIDs" type="tns:System.SoftwareManagement.repositoryImageIDSequence"/>
236
+ </message>
237
+ <message name="System.SoftwareManagement.get_software_hotfixResponse">
238
+ <part name="return" type="tns:System.SoftwareManagement.softwareRepositoryHotfixSequence"/>
239
+ </message>
240
+
241
+ <message name="System.SoftwareManagement.install_software_imageRequest">
242
+ <part name="install_volume" type="xsd:string"/>
243
+ <part name="product" type="xsd:string"/>
244
+ <part name="version" type="xsd:string"/>
245
+ <part name="build" type="xsd:string"/>
246
+ </message>
247
+ <message name="System.SoftwareManagement.install_software_imageResponse">
248
+ </message>
249
+
250
+ <message name="System.SoftwareManagement.install_software_image_v2Request">
251
+ <part name="volume" type="xsd:string"/>
252
+ <part name="product" type="xsd:string"/>
253
+ <part name="version" type="xsd:string"/>
254
+ <part name="build" type="xsd:string"/>
255
+ <part name="create_volume" type="xsd:boolean"/>
256
+ <part name="reboot" type="xsd:boolean"/>
257
+ <part name="retry" type="xsd:boolean"/>
258
+ </message>
259
+ <message name="System.SoftwareManagement.install_software_image_v2Response">
260
+ </message>
261
+
262
+ <message name="System.SoftwareManagement.delete_volumeRequest">
263
+ <part name="volume" type="xsd:string"/>
264
+ </message>
265
+ <message name="System.SoftwareManagement.delete_volumeResponse">
266
+ </message>
267
+
268
+ <message name="System.SoftwareManagement.delete_software_imageRequest">
269
+ <part name="image_filenames" type="tns:Common.StringSequence"/>
270
+ </message>
271
+ <message name="System.SoftwareManagement.delete_software_imageResponse">
272
+ </message>
273
+
274
+ <message name="System.SoftwareManagement.get_live_install_completionRequest">
275
+ <part name="installation_ids" type="tns:System.SoftwareManagement.InstallationIDSequence"/>
276
+ </message>
277
+ <message name="System.SoftwareManagement.get_live_install_completionResponse">
278
+ <part name="return" type="tns:Common.StringSequence"/>
279
+ </message>
280
+
281
+ <message name="System.SoftwareManagement.get_software_statusRequest">
282
+ <part name="installation_ids" type="tns:System.SoftwareManagement.InstallationIDSequence"/>
283
+ </message>
284
+ <message name="System.SoftwareManagement.get_software_statusResponse">
285
+ <part name="return" type="tns:System.SoftwareManagement.SoftwareStatusSequence"/>
286
+ </message>
287
+
288
+ <message name="System.SoftwareManagement.get_all_software_statusRequest">
289
+ </message>
290
+ <message name="System.SoftwareManagement.get_all_software_statusResponse">
291
+ <part name="return" type="tns:System.SoftwareManagement.SoftwareStatusSequence"/>
292
+ </message>
293
+
294
+ <message name="System.SoftwareManagement.has_logical_volume_managementRequest">
295
+ </message>
296
+ <message name="System.SoftwareManagement.has_logical_volume_managementResponse">
297
+ <part name="return" type="xsd:boolean"/>
298
+ </message>
299
+
300
+ <message name="System.SoftwareManagement.get_versionRequest">
301
+ </message>
302
+ <message name="System.SoftwareManagement.get_versionResponse">
303
+ <part name="return" type="xsd:string"/>
304
+ </message>
305
+
306
+ <!-- portType -->
307
+
308
+ <portType name="System.SoftwareManagementPortType">
309
+ <operation name="create_ramfs">
310
+ <documentation>
311
+ Create a RAM disk and return its path to the caller.
312
+
313
+ </documentation>
314
+ <input message="tns:System.SoftwareManagement.create_ramfsRequest"/>
315
+ <output message="tns:System.SoftwareManagement.create_ramfsResponse"/>
316
+ </operation>
317
+ <operation name="cleanup_ramfs">
318
+ <documentation>
319
+ Cleanup the ramfs mounted at HF_MNT_LOCATION
320
+
321
+ </documentation>
322
+ <input message="tns:System.SoftwareManagement.cleanup_ramfsRequest"/>
323
+ <output message="tns:System.SoftwareManagement.cleanup_ramfsResponse"/>
324
+ </operation>
325
+ <operation name="install_hotfix">
326
+ <documentation>
327
+ Installs the specified hotfixes.
328
+
329
+ </documentation>
330
+ <input message="tns:System.SoftwareManagement.install_hotfixRequest"/>
331
+ <output message="tns:System.SoftwareManagement.install_hotfixResponse"/>
332
+ </operation>
333
+ <operation name="install_hotfix_no_daemons">
334
+ <documentation>
335
+ Calls bigstart stop and installs the specified hotfixes. Upon completion, if reboot_system
336
+ is set to false, bigstart start is called to bring daemons back up.
337
+
338
+ </documentation>
339
+ <input message="tns:System.SoftwareManagement.install_hotfix_no_daemonsRequest"/>
340
+ <output message="tns:System.SoftwareManagement.install_hotfix_no_daemonsResponse"/>
341
+ </operation>
342
+ <operation name="get_hotfix_information">
343
+ <documentation>
344
+ Gets information on any hotfixes applied to the system. There may not be
345
+ any hotfix installed, in which case the returned sequence is empty.
346
+
347
+ </documentation>
348
+ <input message="tns:System.SoftwareManagement.get_hotfix_informationRequest"/>
349
+ <output message="tns:System.SoftwareManagement.get_hotfix_informationResponse"/>
350
+ </operation>
351
+ <operation name="get_rpm_package_information">
352
+ <documentation>
353
+ Gets the RPM packages installed on the device.
354
+
355
+ </documentation>
356
+ <input message="tns:System.SoftwareManagement.get_rpm_package_informationRequest"/>
357
+ <output message="tns:System.SoftwareManagement.get_rpm_package_informationResponse"/>
358
+ </operation>
359
+ <operation name="set_boot_image_information">
360
+ <documentation>
361
+ Sets the boot image information and automatically initiates installation based on the
362
+ boot image information.
363
+
364
+ </documentation>
365
+ <input message="tns:System.SoftwareManagement.set_boot_image_informationRequest"/>
366
+ <output message="tns:System.SoftwareManagement.set_boot_image_informationResponse"/>
367
+ </operation>
368
+ <operation name="get_boot_image_information">
369
+ <documentation>
370
+ This method is deprecated, as it returns details which are
371
+ available using more modern techniques (it relies on the
372
+ "audit script", which is no longer under active
373
+ development). The functionality is now available using
374
+ System::SoftwareManagement::get_software_status and methods
375
+ in the System::Disk interface.
376
+
377
+ Gets text which contains boot image information, in the
378
+ form of "name=value" pairs. The text includes information
379
+ about what's installed in each of the boot locations in the
380
+ device. While this method is not officially deprecated, it
381
+ is preferred to use get_software_status, as that method is
382
+ a newer method which yields much the same information in
383
+ a more rigorous and controlled manner.
384
+
385
+ </documentation>
386
+ <input message="tns:System.SoftwareManagement.get_boot_image_informationRequest"/>
387
+ <output message="tns:System.SoftwareManagement.get_boot_image_informationResponse"/>
388
+ </operation>
389
+ <operation name="set_boot_location">
390
+ <documentation>
391
+ Sets the default boot location, which will be the boot location that boots after the next system reboot.
392
+ This version will not work on a clustered system.
393
+
394
+ </documentation>
395
+ <input message="tns:System.SoftwareManagement.set_boot_locationRequest"/>
396
+ <output message="tns:System.SoftwareManagement.set_boot_locationResponse"/>
397
+ </operation>
398
+ <operation name="get_boot_location">
399
+ <documentation>
400
+ Gets the configured default boot location, which will be the location that boots after the system reboots.
401
+
402
+ </documentation>
403
+ <input message="tns:System.SoftwareManagement.get_boot_locationRequest"/>
404
+ <output message="tns:System.SoftwareManagement.get_boot_locationResponse"/>
405
+ </operation>
406
+ <operation name="set_cluster_boot_location">
407
+ <documentation>
408
+ Sets the cluster wide boot location, which will be the boot location after the next system reboot.
409
+ Starting with BIG-IP version 9.6.0, clustered systems will reboot immediately.
410
+
411
+ </documentation>
412
+ <input message="tns:System.SoftwareManagement.set_cluster_boot_locationRequest"/>
413
+ <output message="tns:System.SoftwareManagement.set_cluster_boot_locationResponse"/>
414
+ </operation>
415
+ <operation name="get_cluster_boot_location">
416
+ <documentation>
417
+ Gets the cluster boot location, which will be the location set in the software desired table.
418
+
419
+ </documentation>
420
+ <input message="tns:System.SoftwareManagement.get_cluster_boot_locationRequest"/>
421
+ <output message="tns:System.SoftwareManagement.get_cluster_boot_locationResponse"/>
422
+ </operation>
423
+ <operation name="get_software_image_list">
424
+ <documentation>
425
+ Gets a list of software images available in the repository.
426
+
427
+ </documentation>
428
+ <input message="tns:System.SoftwareManagement.get_software_image_listRequest"/>
429
+ <output message="tns:System.SoftwareManagement.get_software_image_listResponse"/>
430
+ </operation>
431
+ <operation name="get_software_hotfix_list">
432
+ <documentation> Gets a list of hotfix images available in the repository.
433
+
434
+ </documentation>
435
+ <input message="tns:System.SoftwareManagement.get_software_hotfix_listRequest"/>
436
+ <output message="tns:System.SoftwareManagement.get_software_hotfix_listResponse"/>
437
+ </operation>
438
+ <operation name="get_software_image">
439
+ <documentation>
440
+ Gets a list of image information about specific image in the
441
+ repository.
442
+
443
+ </documentation>
444
+ <input message="tns:System.SoftwareManagement.get_software_imageRequest"/>
445
+ <output message="tns:System.SoftwareManagement.get_software_imageResponse"/>
446
+ </operation>
447
+ <operation name="get_software_hotfix">
448
+ <documentation> Gets a list of hotfix information about specific hotfix image in the repository.
449
+
450
+ </documentation>
451
+ <input message="tns:System.SoftwareManagement.get_software_hotfixRequest"/>
452
+ <output message="tns:System.SoftwareManagement.get_software_hotfixResponse"/>
453
+ </operation>
454
+ <operation name="install_software_image">
455
+ <documentation> This method has been deprecated as it does not allow the creation of volumes. Please use install_software_image_v2 in its stead.
456
+
457
+ Initiates an install of SW images on all blades installed on one chassis.
458
+
459
+ </documentation>
460
+ <input message="tns:System.SoftwareManagement.install_software_imageRequest"/>
461
+ <output message="tns:System.SoftwareManagement.install_software_imageResponse"/>
462
+ </operation>
463
+ <operation name="install_software_image_v2">
464
+ <documentation> Initiates an install of a software image on all blades installed
465
+ on one chassis.
466
+
467
+ </documentation>
468
+ <input message="tns:System.SoftwareManagement.install_software_image_v2Request"/>
469
+ <output message="tns:System.SoftwareManagement.install_software_image_v2Response"/>
470
+ </operation>
471
+ <operation name="delete_volume">
472
+ <documentation> Deletes a volume from the system, or from all blades on a chassis.
473
+
474
+ </documentation>
475
+ <input message="tns:System.SoftwareManagement.delete_volumeRequest"/>
476
+ <output message="tns:System.SoftwareManagement.delete_volumeResponse"/>
477
+ </operation>
478
+ <operation name="delete_software_image">
479
+ <documentation> Deletes software images from the repository.
480
+
481
+ </documentation>
482
+ <input message="tns:System.SoftwareManagement.delete_software_imageRequest"/>
483
+ <output message="tns:System.SoftwareManagement.delete_software_imageResponse"/>
484
+ </operation>
485
+ <operation name="get_live_install_completion">
486
+ <documentation> Gets the percent complete of the current live install processes.
487
+
488
+ Note: You may wish to use get_software_status instead of
489
+ this method as it returns more information, such as the
490
+ product, version, and build, along with the "percent
491
+ complete"/status field.
492
+
493
+ </documentation>
494
+ <input message="tns:System.SoftwareManagement.get_live_install_completionRequest"/>
495
+ <output message="tns:System.SoftwareManagement.get_live_install_completionResponse"/>
496
+ </operation>
497
+ <operation name="get_software_status">
498
+ <documentation> Gets the software status for given installation ids.
499
+
500
+ This provides a complete picture of software status, per id.
501
+
502
+ </documentation>
503
+ <input message="tns:System.SoftwareManagement.get_software_statusRequest"/>
504
+ <output message="tns:System.SoftwareManagement.get_software_statusResponse"/>
505
+ </operation>
506
+ <operation name="get_all_software_status">
507
+ <documentation> Gets the software status for all installation ids.
508
+
509
+ This provides a complete picture of software status, for all ids.
510
+
511
+ </documentation>
512
+ <input message="tns:System.SoftwareManagement.get_all_software_statusRequest"/>
513
+ <output message="tns:System.SoftwareManagement.get_all_software_statusResponse"/>
514
+ </operation>
515
+ <operation name="has_logical_volume_management">
516
+ <documentation>
517
+ Checks to see whether the system disks are managed with logical volumes.
518
+
519
+ </documentation>
520
+ <input message="tns:System.SoftwareManagement.has_logical_volume_managementRequest"/>
521
+ <output message="tns:System.SoftwareManagement.has_logical_volume_managementResponse"/>
522
+ </operation>
523
+ <operation name="get_version">
524
+ <documentation>
525
+ Gets the version information for this interface.
526
+
527
+ </documentation>
528
+ <input message="tns:System.SoftwareManagement.get_versionRequest"/>
529
+ <output message="tns:System.SoftwareManagement.get_versionResponse"/>
530
+ </operation>
531
+ </portType>
532
+
533
+ <!-- binding -->
534
+
535
+ <binding name="System.SoftwareManagementBinding" type="tns:System.SoftwareManagementPortType">
536
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
537
+ <operation name="create_ramfs">
538
+ <documentation>
539
+ Create a RAM disk and return its path to the caller.
540
+
541
+ </documentation>
542
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
543
+ <input>
544
+ <soap:body
545
+ use="encoded"
546
+ namespace="urn:iControl:System/SoftwareManagement"
547
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
548
+ </input>
549
+ <output>
550
+ <soap:body
551
+ use="encoded"
552
+ namespace="urn:iControl:System/SoftwareManagement"
553
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
554
+ </output>
555
+ </operation>
556
+
557
+ <operation name="cleanup_ramfs">
558
+ <documentation>
559
+ Cleanup the ramfs mounted at HF_MNT_LOCATION
560
+
561
+ </documentation>
562
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
563
+ <input>
564
+ <soap:body
565
+ use="encoded"
566
+ namespace="urn:iControl:System/SoftwareManagement"
567
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
568
+ </input>
569
+ <output>
570
+ <soap:body
571
+ use="encoded"
572
+ namespace="urn:iControl:System/SoftwareManagement"
573
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
574
+ </output>
575
+ </operation>
576
+
577
+ <operation name="install_hotfix">
578
+ <documentation>
579
+ Installs the specified hotfixes.
580
+
581
+ </documentation>
582
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
583
+ <input>
584
+ <soap:body
585
+ use="encoded"
586
+ namespace="urn:iControl:System/SoftwareManagement"
587
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
588
+ </input>
589
+ <output>
590
+ <soap:body
591
+ use="encoded"
592
+ namespace="urn:iControl:System/SoftwareManagement"
593
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
594
+ </output>
595
+ </operation>
596
+
597
+ <operation name="install_hotfix_no_daemons">
598
+ <documentation>
599
+ Calls bigstart stop and installs the specified hotfixes. Upon completion, if reboot_system
600
+ is set to false, bigstart start is called to bring daemons back up.
601
+
602
+ </documentation>
603
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
604
+ <input>
605
+ <soap:body
606
+ use="encoded"
607
+ namespace="urn:iControl:System/SoftwareManagement"
608
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
609
+ </input>
610
+ <output>
611
+ <soap:body
612
+ use="encoded"
613
+ namespace="urn:iControl:System/SoftwareManagement"
614
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
615
+ </output>
616
+ </operation>
617
+
618
+ <operation name="get_hotfix_information">
619
+ <documentation>
620
+ Gets information on any hotfixes applied to the system. There may not be
621
+ any hotfix installed, in which case the returned sequence is empty.
622
+
623
+ </documentation>
624
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
625
+ <input>
626
+ <soap:body
627
+ use="encoded"
628
+ namespace="urn:iControl:System/SoftwareManagement"
629
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
630
+ </input>
631
+ <output>
632
+ <soap:body
633
+ use="encoded"
634
+ namespace="urn:iControl:System/SoftwareManagement"
635
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
636
+ </output>
637
+ </operation>
638
+
639
+ <operation name="get_rpm_package_information">
640
+ <documentation>
641
+ Gets the RPM packages installed on the device.
642
+
643
+ </documentation>
644
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
645
+ <input>
646
+ <soap:body
647
+ use="encoded"
648
+ namespace="urn:iControl:System/SoftwareManagement"
649
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
650
+ </input>
651
+ <output>
652
+ <soap:body
653
+ use="encoded"
654
+ namespace="urn:iControl:System/SoftwareManagement"
655
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
656
+ </output>
657
+ </operation>
658
+
659
+ <operation name="set_boot_image_information">
660
+ <documentation>
661
+ Sets the boot image information and automatically initiates installation based on the
662
+ boot image information.
663
+
664
+ </documentation>
665
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
666
+ <input>
667
+ <soap:body
668
+ use="encoded"
669
+ namespace="urn:iControl:System/SoftwareManagement"
670
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
671
+ </input>
672
+ <output>
673
+ <soap:body
674
+ use="encoded"
675
+ namespace="urn:iControl:System/SoftwareManagement"
676
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
677
+ </output>
678
+ </operation>
679
+
680
+ <operation name="get_boot_image_information">
681
+ <documentation>
682
+ This method is deprecated, as it returns details which are
683
+ available using more modern techniques (it relies on the
684
+ "audit script", which is no longer under active
685
+ development). The functionality is now available using
686
+ System::SoftwareManagement::get_software_status and methods
687
+ in the System::Disk interface.
688
+
689
+ Gets text which contains boot image information, in the
690
+ form of "name=value" pairs. The text includes information
691
+ about what's installed in each of the boot locations in the
692
+ device. While this method is not officially deprecated, it
693
+ is preferred to use get_software_status, as that method is
694
+ a newer method which yields much the same information in
695
+ a more rigorous and controlled manner.
696
+
697
+ </documentation>
698
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
699
+ <input>
700
+ <soap:body
701
+ use="encoded"
702
+ namespace="urn:iControl:System/SoftwareManagement"
703
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
704
+ </input>
705
+ <output>
706
+ <soap:body
707
+ use="encoded"
708
+ namespace="urn:iControl:System/SoftwareManagement"
709
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
710
+ </output>
711
+ </operation>
712
+
713
+ <operation name="set_boot_location">
714
+ <documentation>
715
+ Sets the default boot location, which will be the boot location that boots after the next system reboot.
716
+ This version will not work on a clustered system.
717
+
718
+ </documentation>
719
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
720
+ <input>
721
+ <soap:body
722
+ use="encoded"
723
+ namespace="urn:iControl:System/SoftwareManagement"
724
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
725
+ </input>
726
+ <output>
727
+ <soap:body
728
+ use="encoded"
729
+ namespace="urn:iControl:System/SoftwareManagement"
730
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
731
+ </output>
732
+ </operation>
733
+
734
+ <operation name="get_boot_location">
735
+ <documentation>
736
+ Gets the configured default boot location, which will be the location that boots after the system reboots.
737
+
738
+ </documentation>
739
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
740
+ <input>
741
+ <soap:body
742
+ use="encoded"
743
+ namespace="urn:iControl:System/SoftwareManagement"
744
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
745
+ </input>
746
+ <output>
747
+ <soap:body
748
+ use="encoded"
749
+ namespace="urn:iControl:System/SoftwareManagement"
750
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
751
+ </output>
752
+ </operation>
753
+
754
+ <operation name="set_cluster_boot_location">
755
+ <documentation>
756
+ Sets the cluster wide boot location, which will be the boot location after the next system reboot.
757
+ Starting with BIG-IP version 9.6.0, clustered systems will reboot immediately.
758
+
759
+ </documentation>
760
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
761
+ <input>
762
+ <soap:body
763
+ use="encoded"
764
+ namespace="urn:iControl:System/SoftwareManagement"
765
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
766
+ </input>
767
+ <output>
768
+ <soap:body
769
+ use="encoded"
770
+ namespace="urn:iControl:System/SoftwareManagement"
771
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
772
+ </output>
773
+ </operation>
774
+
775
+ <operation name="get_cluster_boot_location">
776
+ <documentation>
777
+ Gets the cluster boot location, which will be the location set in the software desired table.
778
+
779
+ </documentation>
780
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
781
+ <input>
782
+ <soap:body
783
+ use="encoded"
784
+ namespace="urn:iControl:System/SoftwareManagement"
785
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
786
+ </input>
787
+ <output>
788
+ <soap:body
789
+ use="encoded"
790
+ namespace="urn:iControl:System/SoftwareManagement"
791
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
792
+ </output>
793
+ </operation>
794
+
795
+ <operation name="get_software_image_list">
796
+ <documentation>
797
+ Gets a list of software images available in the repository.
798
+
799
+ </documentation>
800
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
801
+ <input>
802
+ <soap:body
803
+ use="encoded"
804
+ namespace="urn:iControl:System/SoftwareManagement"
805
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
806
+ </input>
807
+ <output>
808
+ <soap:body
809
+ use="encoded"
810
+ namespace="urn:iControl:System/SoftwareManagement"
811
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
812
+ </output>
813
+ </operation>
814
+
815
+ <operation name="get_software_hotfix_list">
816
+ <documentation> Gets a list of hotfix images available in the repository.
817
+
818
+ </documentation>
819
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
820
+ <input>
821
+ <soap:body
822
+ use="encoded"
823
+ namespace="urn:iControl:System/SoftwareManagement"
824
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
825
+ </input>
826
+ <output>
827
+ <soap:body
828
+ use="encoded"
829
+ namespace="urn:iControl:System/SoftwareManagement"
830
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
831
+ </output>
832
+ </operation>
833
+
834
+ <operation name="get_software_image">
835
+ <documentation>
836
+ Gets a list of image information about specific image in the
837
+ repository.
838
+
839
+ </documentation>
840
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
841
+ <input>
842
+ <soap:body
843
+ use="encoded"
844
+ namespace="urn:iControl:System/SoftwareManagement"
845
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
846
+ </input>
847
+ <output>
848
+ <soap:body
849
+ use="encoded"
850
+ namespace="urn:iControl:System/SoftwareManagement"
851
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
852
+ </output>
853
+ </operation>
854
+
855
+ <operation name="get_software_hotfix">
856
+ <documentation> Gets a list of hotfix information about specific hotfix image in the repository.
857
+
858
+ </documentation>
859
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
860
+ <input>
861
+ <soap:body
862
+ use="encoded"
863
+ namespace="urn:iControl:System/SoftwareManagement"
864
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
865
+ </input>
866
+ <output>
867
+ <soap:body
868
+ use="encoded"
869
+ namespace="urn:iControl:System/SoftwareManagement"
870
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
871
+ </output>
872
+ </operation>
873
+
874
+ <operation name="install_software_image">
875
+ <documentation> This method has been deprecated as it does not allow the creation of volumes. Please use install_software_image_v2 in its stead.
876
+
877
+ Initiates an install of SW images on all blades installed on one chassis.
878
+
879
+ </documentation>
880
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
881
+ <input>
882
+ <soap:body
883
+ use="encoded"
884
+ namespace="urn:iControl:System/SoftwareManagement"
885
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
886
+ </input>
887
+ <output>
888
+ <soap:body
889
+ use="encoded"
890
+ namespace="urn:iControl:System/SoftwareManagement"
891
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
892
+ </output>
893
+ </operation>
894
+
895
+ <operation name="install_software_image_v2">
896
+ <documentation> Initiates an install of a software image on all blades installed
897
+ on one chassis.
898
+
899
+ </documentation>
900
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
901
+ <input>
902
+ <soap:body
903
+ use="encoded"
904
+ namespace="urn:iControl:System/SoftwareManagement"
905
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
906
+ </input>
907
+ <output>
908
+ <soap:body
909
+ use="encoded"
910
+ namespace="urn:iControl:System/SoftwareManagement"
911
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
912
+ </output>
913
+ </operation>
914
+
915
+ <operation name="delete_volume">
916
+ <documentation> Deletes a volume from the system, or from all blades on a chassis.
917
+
918
+ </documentation>
919
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
920
+ <input>
921
+ <soap:body
922
+ use="encoded"
923
+ namespace="urn:iControl:System/SoftwareManagement"
924
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
925
+ </input>
926
+ <output>
927
+ <soap:body
928
+ use="encoded"
929
+ namespace="urn:iControl:System/SoftwareManagement"
930
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
931
+ </output>
932
+ </operation>
933
+
934
+ <operation name="delete_software_image">
935
+ <documentation> Deletes software images from the repository.
936
+
937
+ </documentation>
938
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
939
+ <input>
940
+ <soap:body
941
+ use="encoded"
942
+ namespace="urn:iControl:System/SoftwareManagement"
943
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
944
+ </input>
945
+ <output>
946
+ <soap:body
947
+ use="encoded"
948
+ namespace="urn:iControl:System/SoftwareManagement"
949
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
950
+ </output>
951
+ </operation>
952
+
953
+ <operation name="get_live_install_completion">
954
+ <documentation> Gets the percent complete of the current live install processes.
955
+
956
+ Note: You may wish to use get_software_status instead of
957
+ this method as it returns more information, such as the
958
+ product, version, and build, along with the "percent
959
+ complete"/status field.
960
+
961
+ </documentation>
962
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
963
+ <input>
964
+ <soap:body
965
+ use="encoded"
966
+ namespace="urn:iControl:System/SoftwareManagement"
967
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
968
+ </input>
969
+ <output>
970
+ <soap:body
971
+ use="encoded"
972
+ namespace="urn:iControl:System/SoftwareManagement"
973
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
974
+ </output>
975
+ </operation>
976
+
977
+ <operation name="get_software_status">
978
+ <documentation> Gets the software status for given installation ids.
979
+
980
+ This provides a complete picture of software status, per id.
981
+
982
+ </documentation>
983
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
984
+ <input>
985
+ <soap:body
986
+ use="encoded"
987
+ namespace="urn:iControl:System/SoftwareManagement"
988
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
989
+ </input>
990
+ <output>
991
+ <soap:body
992
+ use="encoded"
993
+ namespace="urn:iControl:System/SoftwareManagement"
994
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
995
+ </output>
996
+ </operation>
997
+
998
+ <operation name="get_all_software_status">
999
+ <documentation> Gets the software status for all installation ids.
1000
+
1001
+ This provides a complete picture of software status, for all ids.
1002
+
1003
+ </documentation>
1004
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
1005
+ <input>
1006
+ <soap:body
1007
+ use="encoded"
1008
+ namespace="urn:iControl:System/SoftwareManagement"
1009
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1010
+ </input>
1011
+ <output>
1012
+ <soap:body
1013
+ use="encoded"
1014
+ namespace="urn:iControl:System/SoftwareManagement"
1015
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1016
+ </output>
1017
+ </operation>
1018
+
1019
+ <operation name="has_logical_volume_management">
1020
+ <documentation>
1021
+ Checks to see whether the system disks are managed with logical volumes.
1022
+
1023
+ </documentation>
1024
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
1025
+ <input>
1026
+ <soap:body
1027
+ use="encoded"
1028
+ namespace="urn:iControl:System/SoftwareManagement"
1029
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1030
+ </input>
1031
+ <output>
1032
+ <soap:body
1033
+ use="encoded"
1034
+ namespace="urn:iControl:System/SoftwareManagement"
1035
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1036
+ </output>
1037
+ </operation>
1038
+
1039
+ <operation name="get_version">
1040
+ <documentation>
1041
+ Gets the version information for this interface.
1042
+
1043
+ </documentation>
1044
+ <soap:operation soapAction="urn:iControl:System/SoftwareManagement"/>
1045
+ <input>
1046
+ <soap:body
1047
+ use="encoded"
1048
+ namespace="urn:iControl:System/SoftwareManagement"
1049
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1050
+ </input>
1051
+ <output>
1052
+ <soap:body
1053
+ use="encoded"
1054
+ namespace="urn:iControl:System/SoftwareManagement"
1055
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1056
+ </output>
1057
+ </operation>
1058
+ </binding>
1059
+
1060
+ <!-- service -->
1061
+
1062
+ <service name="System.SoftwareManagement">
1063
+ <documentation>
1064
+ The SoftwareManagement interface enables you to manage the software installed on the system.
1065
+
1066
+ This interface does not support transactions.
1067
+
1068
+ </documentation>
1069
+ <port name="System.SoftwareManagementPort" binding="tns:System.SoftwareManagementBinding">
1070
+ <soap:address location="https://url_to_service"/>
1071
+ </port>
1072
+ </service>
1073
+ </definitions>