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,1289 @@
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.ConfigSync"
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.ConfigSync.FileTransferContext">
28
+ <xsd:sequence>
29
+ <xsd:element name="file_data" type="tns:Common.OctetSequence"/>
30
+ <xsd:element name="chain_type" type="tns:Common.FileChainType"/>
31
+ </xsd:sequence>
32
+ </xsd:complexType>
33
+ <xsd:simpleType name="System.ConfigSync.SaveMode">
34
+ <xsd:restriction base="xsd:string">
35
+ <xsd:enumeration value="SAVE_FULL">
36
+ <xsd:annotation>
37
+ <xsd:documentation>SAVE_FULL</xsd:documentation>
38
+ </xsd:annotation>
39
+ </xsd:enumeration>
40
+ <xsd:enumeration value="SAVE_HIGH_LEVEL_CONFIG">
41
+ <xsd:annotation>
42
+ <xsd:documentation>SAVE_HIGH_LEVEL_CONFIG</xsd:documentation>
43
+ </xsd:annotation>
44
+ </xsd:enumeration>
45
+ <xsd:enumeration value="SAVE_BASE_LEVEL_CONFIG">
46
+ <xsd:annotation>
47
+ <xsd:documentation>SAVE_BASE_LEVEL_CONFIG</xsd:documentation>
48
+ </xsd:annotation>
49
+ </xsd:enumeration>
50
+ <xsd:enumeration value="SAVE_GTM_CONFIG_ONLY">
51
+ <xsd:annotation>
52
+ <xsd:documentation>SAVE_GTM_CONFIG_ONLY</xsd:documentation>
53
+ </xsd:annotation>
54
+ </xsd:enumeration>
55
+ </xsd:restriction>
56
+ </xsd:simpleType>
57
+ <xsd:complexType name="System.ConfigSync.ConfigFileEntry">
58
+ <xsd:sequence>
59
+ <xsd:element name="file_name" type="xsd:string"/>
60
+ <xsd:element name="file_datetime" type="xsd:string"/>
61
+ </xsd:sequence>
62
+ </xsd:complexType>
63
+ <xsd:complexType name="Common.StringSequence">
64
+ <xsd:complexContent>
65
+ <xsd:restriction base='SOAP-ENC:Array'>
66
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
67
+ </xsd:restriction>
68
+ </xsd:complexContent>
69
+ </xsd:complexType>
70
+ <xsd:complexType name="System.ConfigSync.ConfigFileSequence">
71
+ <xsd:complexContent>
72
+ <xsd:restriction base='SOAP-ENC:Array'>
73
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.ConfigSync.ConfigFileEntry[]'/>
74
+ </xsd:restriction>
75
+ </xsd:complexContent>
76
+ </xsd:complexType>
77
+ <xsd:simpleType name="Common.FileChainType">
78
+ <xsd:restriction base="xsd:string">
79
+ <xsd:enumeration value="FILE_UNDEFINED">
80
+ <xsd:annotation>
81
+ <xsd:documentation>FILE_UNDEFINED</xsd:documentation>
82
+ </xsd:annotation>
83
+ </xsd:enumeration>
84
+ <xsd:enumeration value="FILE_FIRST">
85
+ <xsd:annotation>
86
+ <xsd:documentation>FILE_FIRST</xsd:documentation>
87
+ </xsd:annotation>
88
+ </xsd:enumeration>
89
+ <xsd:enumeration value="FILE_MIDDLE">
90
+ <xsd:annotation>
91
+ <xsd:documentation>FILE_MIDDLE</xsd:documentation>
92
+ </xsd:annotation>
93
+ </xsd:enumeration>
94
+ <xsd:enumeration value="FILE_UNUSED">
95
+ <xsd:annotation>
96
+ <xsd:documentation>FILE_UNUSED</xsd:documentation>
97
+ </xsd:annotation>
98
+ </xsd:enumeration>
99
+ <xsd:enumeration value="FILE_LAST">
100
+ <xsd:annotation>
101
+ <xsd:documentation>FILE_LAST</xsd:documentation>
102
+ </xsd:annotation>
103
+ </xsd:enumeration>
104
+ <xsd:enumeration value="FILE_FIRST_AND_LAST">
105
+ <xsd:annotation>
106
+ <xsd:documentation>FILE_FIRST_AND_LAST</xsd:documentation>
107
+ </xsd:annotation>
108
+ </xsd:enumeration>
109
+ </xsd:restriction>
110
+ </xsd:simpleType>
111
+ <xsd:complexType name="System.ConfigSync.ConfigExcludeComponentSequence">
112
+ <xsd:complexContent>
113
+ <xsd:restriction base='SOAP-ENC:Array'>
114
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.ConfigSync.ConfigExcludeComponent[]'/>
115
+ </xsd:restriction>
116
+ </xsd:complexContent>
117
+ </xsd:complexType>
118
+ <xsd:simpleType name="System.ConfigSync.ConfigExcludeComponent">
119
+ <xsd:restriction base="xsd:string">
120
+ <xsd:enumeration value="CONFIG_EXCLUDE_PRIVATE_KEYS">
121
+ <xsd:annotation>
122
+ <xsd:documentation>CONFIG_EXCLUDE_PRIVATE_KEYS</xsd:documentation>
123
+ </xsd:annotation>
124
+ </xsd:enumeration>
125
+ </xsd:restriction>
126
+ </xsd:simpleType>
127
+ <xsd:simpleType name="System.ConfigSync.LoadMode">
128
+ <xsd:restriction base="xsd:string">
129
+ <xsd:enumeration value="LOAD_HIGH_LEVEL_CONFIG">
130
+ <xsd:annotation>
131
+ <xsd:documentation>LOAD_HIGH_LEVEL_CONFIG</xsd:documentation>
132
+ </xsd:annotation>
133
+ </xsd:enumeration>
134
+ <xsd:enumeration value="LOAD_BASE_LEVEL_CONFIG">
135
+ <xsd:annotation>
136
+ <xsd:documentation>LOAD_BASE_LEVEL_CONFIG</xsd:documentation>
137
+ </xsd:annotation>
138
+ </xsd:enumeration>
139
+ <xsd:enumeration value="LOAD_GTM_CONFIG_ONLY">
140
+ <xsd:annotation>
141
+ <xsd:documentation>LOAD_GTM_CONFIG_ONLY</xsd:documentation>
142
+ </xsd:annotation>
143
+ </xsd:enumeration>
144
+ </xsd:restriction>
145
+ </xsd:simpleType>
146
+ <xsd:simpleType name="Common.ULong">
147
+ <xsd:restriction base="xsd:long"/>
148
+ </xsd:simpleType>
149
+ <xsd:simpleType name="System.ConfigSync.SyncMode">
150
+ <xsd:restriction base="xsd:string">
151
+ <xsd:enumeration value="CONFIGSYNC_BASIC">
152
+ <xsd:annotation>
153
+ <xsd:documentation>CONFIGSYNC_BASIC</xsd:documentation>
154
+ </xsd:annotation>
155
+ </xsd:enumeration>
156
+ <xsd:enumeration value="CONFIGSYNC_ALL">
157
+ <xsd:annotation>
158
+ <xsd:documentation>CONFIGSYNC_ALL</xsd:documentation>
159
+ </xsd:annotation>
160
+ </xsd:enumeration>
161
+ </xsd:restriction>
162
+ </xsd:simpleType>
163
+ <xsd:simpleType name="System.ConfigSync.ConfigIncludeComponent">
164
+ <xsd:restriction base="xsd:string">
165
+ <xsd:enumeration value="CONFIG_INCLUDE_EM_IMAGES">
166
+ <xsd:annotation>
167
+ <xsd:documentation>CONFIG_INCLUDE_EM_IMAGES</xsd:documentation>
168
+ </xsd:annotation>
169
+ </xsd:enumeration>
170
+ </xsd:restriction>
171
+ </xsd:simpleType>
172
+ <xsd:complexType name="System.ConfigSync.ConfigIncludeComponentSequence">
173
+ <xsd:complexContent>
174
+ <xsd:restriction base='SOAP-ENC:Array'>
175
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.ConfigSync.ConfigIncludeComponent[]'/>
176
+ </xsd:restriction>
177
+ </xsd:complexContent>
178
+ </xsd:complexType>
179
+ </xsd:schema>
180
+ </types>
181
+
182
+ <!-- message -->
183
+
184
+ <message name="System.ConfigSync.get_configuration_listRequest">
185
+ </message>
186
+ <message name="System.ConfigSync.get_configuration_listResponse">
187
+ <part name="return" type="tns:System.ConfigSync.ConfigFileSequence"/>
188
+ </message>
189
+
190
+ <message name="System.ConfigSync.load_configurationRequest">
191
+ <part name="filename" type="xsd:string"/>
192
+ <part name="load_flag" type="tns:System.ConfigSync.LoadMode"/>
193
+ </message>
194
+ <message name="System.ConfigSync.load_configurationResponse">
195
+ </message>
196
+
197
+ <message name="System.ConfigSync.save_configurationRequest">
198
+ <part name="filename" type="xsd:string"/>
199
+ <part name="save_flag" type="tns:System.ConfigSync.SaveMode"/>
200
+ </message>
201
+ <message name="System.ConfigSync.save_configurationResponse">
202
+ </message>
203
+
204
+ <message name="System.ConfigSync.save_partial_configurationRequest">
205
+ <part name="filename" type="xsd:string"/>
206
+ <part name="save_flag" type="tns:System.ConfigSync.SaveMode"/>
207
+ <part name="features_to_exclude" type="tns:System.ConfigSync.ConfigExcludeComponentSequence"/>
208
+ <part name="features_to_include" type="tns:System.ConfigSync.ConfigIncludeComponentSequence"/>
209
+ </message>
210
+ <message name="System.ConfigSync.save_partial_configurationResponse">
211
+ </message>
212
+
213
+ <message name="System.ConfigSync.save_partition_configurationRequest">
214
+ <part name="partitions" type="tns:Common.StringSequence"/>
215
+ <part name="save_flag" type="tns:System.ConfigSync.SaveMode"/>
216
+ </message>
217
+ <message name="System.ConfigSync.save_partition_configurationResponse">
218
+ </message>
219
+
220
+ <message name="System.ConfigSync.save_encrypted_configurationRequest">
221
+ <part name="filename" type="xsd:string"/>
222
+ <part name="passphrase" type="xsd:string"/>
223
+ </message>
224
+ <message name="System.ConfigSync.save_encrypted_configurationResponse">
225
+ </message>
226
+
227
+ <message name="System.ConfigSync.save_partial_encrypted_configurationRequest">
228
+ <part name="filename" type="xsd:string"/>
229
+ <part name="passphrase" type="xsd:string"/>
230
+ <part name="features_to_exclude" type="tns:System.ConfigSync.ConfigExcludeComponentSequence"/>
231
+ <part name="features_to_include" type="tns:System.ConfigSync.ConfigIncludeComponentSequence"/>
232
+ </message>
233
+ <message name="System.ConfigSync.save_partial_encrypted_configurationResponse">
234
+ </message>
235
+
236
+ <message name="System.ConfigSync.install_configurationRequest">
237
+ <part name="filename" type="xsd:string"/>
238
+ </message>
239
+ <message name="System.ConfigSync.install_configurationResponse">
240
+ </message>
241
+
242
+ <message name="System.ConfigSync.install_configuration_quietlyRequest">
243
+ <part name="filename" type="xsd:string"/>
244
+ </message>
245
+ <message name="System.ConfigSync.install_configuration_quietlyResponse">
246
+ </message>
247
+
248
+ <message name="System.ConfigSync.install_all_configurationRequest">
249
+ <part name="filename" type="xsd:string"/>
250
+ </message>
251
+ <message name="System.ConfigSync.install_all_configurationResponse">
252
+ </message>
253
+
254
+ <message name="System.ConfigSync.install_encrypted_configurationRequest">
255
+ <part name="filename" type="xsd:string"/>
256
+ <part name="passphrase" type="xsd:string"/>
257
+ </message>
258
+ <message name="System.ConfigSync.install_encrypted_configurationResponse">
259
+ </message>
260
+
261
+ <message name="System.ConfigSync.install_encrypted_configuration_quietlyRequest">
262
+ <part name="filename" type="xsd:string"/>
263
+ <part name="passphrase" type="xsd:string"/>
264
+ </message>
265
+ <message name="System.ConfigSync.install_encrypted_configuration_quietlyResponse">
266
+ </message>
267
+
268
+ <message name="System.ConfigSync.install_all_encrypted_configurationRequest">
269
+ <part name="filename" type="xsd:string"/>
270
+ <part name="passphrase" type="xsd:string"/>
271
+ </message>
272
+ <message name="System.ConfigSync.install_all_encrypted_configurationResponse">
273
+ </message>
274
+
275
+ <message name="System.ConfigSync.synchronize_configurationRequest">
276
+ <part name="sync_flag" type="tns:System.ConfigSync.SyncMode"/>
277
+ </message>
278
+ <message name="System.ConfigSync.synchronize_configurationResponse">
279
+ </message>
280
+
281
+ <message name="System.ConfigSync.synchronize_to_groupRequest">
282
+ <part name="group" type="xsd:string"/>
283
+ </message>
284
+ <message name="System.ConfigSync.synchronize_to_groupResponse">
285
+ </message>
286
+
287
+ <message name="System.ConfigSync.synchronize_to_group_v2Request">
288
+ <part name="group" type="xsd:string"/>
289
+ <part name="device" type="xsd:string"/>
290
+ <part name="force" type="xsd:boolean"/>
291
+ </message>
292
+ <message name="System.ConfigSync.synchronize_to_group_v2Response">
293
+ </message>
294
+
295
+ <message name="System.ConfigSync.synchronize_from_groupRequest">
296
+ <part name="group" type="xsd:string"/>
297
+ </message>
298
+ <message name="System.ConfigSync.synchronize_from_groupResponse">
299
+ </message>
300
+
301
+ <message name="System.ConfigSync.rollback_configurationRequest">
302
+ </message>
303
+ <message name="System.ConfigSync.rollback_configurationResponse">
304
+ </message>
305
+
306
+ <message name="System.ConfigSync.delete_configurationRequest">
307
+ <part name="filename" type="xsd:string"/>
308
+ </message>
309
+ <message name="System.ConfigSync.delete_configurationResponse">
310
+ </message>
311
+
312
+ <message name="System.ConfigSync.upload_configurationRequest">
313
+ <part name="config_name" type="xsd:string"/>
314
+ <part name="file_context" type="tns:System.ConfigSync.FileTransferContext"/>
315
+ </message>
316
+ <message name="System.ConfigSync.upload_configurationResponse">
317
+ </message>
318
+
319
+ <message name="System.ConfigSync.download_configurationRequest">
320
+ <part name="config_name" type="xsd:string"/>
321
+ <part name="chunk_size" type="xsd:long"/>
322
+ <part name="file_offset" type="xsd:long"/>
323
+ </message>
324
+ <message name="System.ConfigSync.download_configurationResponse">
325
+ <part name="return" type="tns:System.ConfigSync.FileTransferContext"/>
326
+ <part name="file_offset" type="xsd:long"/>
327
+ </message>
328
+
329
+ <message name="System.ConfigSync.delete_fileRequest">
330
+ <part name="filename" type="xsd:string"/>
331
+ </message>
332
+ <message name="System.ConfigSync.delete_fileResponse">
333
+ </message>
334
+
335
+ <message name="System.ConfigSync.upload_fileRequest">
336
+ <part name="file_name" type="xsd:string"/>
337
+ <part name="file_context" type="tns:System.ConfigSync.FileTransferContext"/>
338
+ </message>
339
+ <message name="System.ConfigSync.upload_fileResponse">
340
+ </message>
341
+
342
+ <message name="System.ConfigSync.download_fileRequest">
343
+ <part name="file_name" type="xsd:string"/>
344
+ <part name="chunk_size" type="xsd:long"/>
345
+ <part name="file_offset" type="xsd:long"/>
346
+ </message>
347
+ <message name="System.ConfigSync.download_fileResponse">
348
+ <part name="return" type="tns:System.ConfigSync.FileTransferContext"/>
349
+ <part name="file_offset" type="xsd:long"/>
350
+ </message>
351
+
352
+ <message name="System.ConfigSync.move_fileRequest">
353
+ <part name="from_path" type="xsd:string"/>
354
+ <part name="to_path" type="xsd:string"/>
355
+ </message>
356
+ <message name="System.ConfigSync.move_fileResponse">
357
+ </message>
358
+
359
+ <message name="System.ConfigSync.get_versionRequest">
360
+ </message>
361
+ <message name="System.ConfigSync.get_versionResponse">
362
+ <part name="return" type="xsd:string"/>
363
+ </message>
364
+
365
+ <!-- portType -->
366
+
367
+ <portType name="System.ConfigSyncPortType">
368
+ <operation name="get_configuration_list">
369
+ <documentation>
370
+ Gets a list of all available configuration archives on the system.
371
+
372
+ </documentation>
373
+ <input message="tns:System.ConfigSync.get_configuration_listRequest"/>
374
+ <output message="tns:System.ConfigSync.get_configuration_listResponse"/>
375
+ </operation>
376
+ <operation name="load_configuration">
377
+ <documentation>
378
+ Load the system configuration.
379
+
380
+ As of BIG-IP_v11.0.0, the filename argument is ignored. Only the
381
+ official system configuration files will be loaded.
382
+
383
+ </documentation>
384
+ <input message="tns:System.ConfigSync.load_configurationRequest"/>
385
+ <output message="tns:System.ConfigSync.load_configurationResponse"/>
386
+ </operation>
387
+ <operation name="save_configuration">
388
+ <documentation>
389
+ Saves the current configurations to the specified archive.
390
+ If the "save_flag" is either SAVE_HIGH_LEVEL_CONFIG or SAVE_BASE_LEVEL_CONFIG, the
391
+ specified filename will be ignored, since by default, configuration will be saved into
392
+ /config/bigip.conf or /config/bigip_base.conf respectively.
393
+
394
+ </documentation>
395
+ <input message="tns:System.ConfigSync.save_configurationRequest"/>
396
+ <output message="tns:System.ConfigSync.save_configurationResponse"/>
397
+ </operation>
398
+ <operation name="save_partial_configuration">
399
+ <documentation>
400
+ Saves the current configurations to the specified archive.
401
+ If the "save_flag" is either SAVE_HIGH_LEVEL_CONFIG or SAVE_BASE_LEVEL_CONFIG, the
402
+ specified filename will be ignored, since by default, configuration will be saved into
403
+ /config/bigip.conf or /config/bigip_base.conf respectively.
404
+ If any "features_to_exclude" components are specified, those components
405
+ are excluded from the configuration.
406
+ If any "features_to_include" components are specified, those components
407
+ are included from the configuration.
408
+ Note that feature inclusion/exclusion will only work when the
409
+ save flag is "SAVE_FULL".
410
+
411
+ </documentation>
412
+ <input message="tns:System.ConfigSync.save_partial_configurationRequest"/>
413
+ <output message="tns:System.ConfigSync.save_partial_configurationResponse"/>
414
+ </operation>
415
+ <operation name="save_partition_configuration">
416
+ <documentation>
417
+ Saves the current configuration in the partitions specified based on the save flag
418
+ provided.
419
+
420
+ </documentation>
421
+ <input message="tns:System.ConfigSync.save_partition_configurationRequest"/>
422
+ <output message="tns:System.ConfigSync.save_partition_configurationResponse"/>
423
+ </operation>
424
+ <operation name="save_encrypted_configuration">
425
+ <documentation>
426
+ Saves and encrypts the current configurations to the specified archive.
427
+ This method is used to save whole configuration archive, not just what's
428
+ in bigip.conf or bigip_base.conf.
429
+
430
+ </documentation>
431
+ <input message="tns:System.ConfigSync.save_encrypted_configurationRequest"/>
432
+ <output message="tns:System.ConfigSync.save_encrypted_configurationResponse"/>
433
+ </operation>
434
+ <operation name="save_partial_encrypted_configuration">
435
+ <documentation>
436
+ Saves and encrypts the current configurations to the specified archive.
437
+ This method is used to save whole configuration archive, not just what's
438
+ in bigip.conf or bigip_base.conf.
439
+ If any "features_to_exclude" components are specified, those components
440
+ are excluded from the configuration.
441
+ If any "features_to_include" components are specified, those components
442
+ are included from the configuration.
443
+ Note that feature inclusion/exclusion will only work when the
444
+ save flag is "SAVE_FULL".
445
+
446
+ </documentation>
447
+ <input message="tns:System.ConfigSync.save_partial_encrypted_configurationRequest"/>
448
+ <output message="tns:System.ConfigSync.save_partial_encrypted_configurationResponse"/>
449
+ </operation>
450
+ <operation name="install_configuration">
451
+ <documentation>
452
+ Installs the configurations contained in the specified archive to
453
+ the local device.
454
+
455
+ </documentation>
456
+ <input message="tns:System.ConfigSync.install_configurationRequest"/>
457
+ <output message="tns:System.ConfigSync.install_configurationResponse"/>
458
+ </operation>
459
+ <operation name="install_configuration_quietly">
460
+ <documentation>
461
+ Installs the configurations contained in the specified archive to
462
+ the local device, suppressing output.
463
+
464
+ This is intended for system use only.
465
+
466
+ </documentation>
467
+ <input message="tns:System.ConfigSync.install_configuration_quietlyRequest"/>
468
+ <output message="tns:System.ConfigSync.install_configuration_quietlyResponse"/>
469
+ </operation>
470
+ <operation name="install_all_configuration">
471
+ <documentation>
472
+ Installs the configurations contained in the specified archive to
473
+ the local device using the 'all' flag.
474
+
475
+ </documentation>
476
+ <input message="tns:System.ConfigSync.install_all_configurationRequest"/>
477
+ <output message="tns:System.ConfigSync.install_all_configurationResponse"/>
478
+ </operation>
479
+ <operation name="install_encrypted_configuration">
480
+ <documentation>
481
+ Installs the encrypted configurations contained in the specified archive to
482
+ the local device. If the specified archive is not already encrypted, then
483
+ the passphrase is ignored, and installation will take place as normal.
484
+
485
+ </documentation>
486
+ <input message="tns:System.ConfigSync.install_encrypted_configurationRequest"/>
487
+ <output message="tns:System.ConfigSync.install_encrypted_configurationResponse"/>
488
+ </operation>
489
+ <operation name="install_encrypted_configuration_quietly">
490
+ <documentation>
491
+ Installs the encrypted configurations contained in the specified
492
+ archive to the local device, suppressing the output. If the
493
+ specified archive is not already encrypted, then the passphrase is
494
+ ignored, and installation will take place as normal.
495
+
496
+ This is intended for system use only.
497
+
498
+ </documentation>
499
+ <input message="tns:System.ConfigSync.install_encrypted_configuration_quietlyRequest"/>
500
+ <output message="tns:System.ConfigSync.install_encrypted_configuration_quietlyResponse"/>
501
+ </operation>
502
+ <operation name="install_all_encrypted_configuration">
503
+ <documentation>
504
+ Installs the encrypted configurations contained in the specified archive to
505
+ the local device using the 'all' flag. If the specified archive is not already encrypted, then
506
+ the passphrase is ignored, and installation will take place as normal.
507
+
508
+ </documentation>
509
+ <input message="tns:System.ConfigSync.install_all_encrypted_configurationRequest"/>
510
+ <output message="tns:System.ConfigSync.install_all_encrypted_configurationResponse"/>
511
+ </operation>
512
+ <operation name="synchronize_configuration">
513
+ <documentation>
514
+ Note: This method has been deprecated, because syncing has
515
+ changed radically with the Centralized Management
516
+ Infrastructure feature. Please use synchronize_to_group_v2
517
+ and synchronize_from_group instead. This method now finds
518
+ all the device groups of which the local device is a
519
+ member, and runs synchronize_to_group on those groups. It
520
+ does not support the sync_flag anymore -- that flag is now
521
+ ignored.
522
+
523
+ Synchronizes the configurations between the two devices in a redundant system.
524
+ In the case of cache devices, synchronizes the configurations across the cluster.
525
+
526
+ </documentation>
527
+ <input message="tns:System.ConfigSync.synchronize_configurationRequest"/>
528
+ <output message="tns:System.ConfigSync.synchronize_configurationResponse"/>
529
+ </operation>
530
+ <operation name="synchronize_to_group">
531
+ <documentation>
532
+ Note: This method has been deprecated. Please use the
533
+ synchronize_to_group_v2 method instead.
534
+
535
+ Synchronize the configuration to the given group.
536
+
537
+ This method causes the configuration for the local device to
538
+ be pushed to all members of the given device group, provided that
539
+ the current device has the newest configuration in the device
540
+ group. If this is not the case, then this method does nothing.
541
+
542
+ </documentation>
543
+ <input message="tns:System.ConfigSync.synchronize_to_groupRequest"/>
544
+ <output message="tns:System.ConfigSync.synchronize_to_groupResponse"/>
545
+ </operation>
546
+ <operation name="synchronize_to_group_v2">
547
+ <documentation>
548
+ Synchronize the configuration from the specified device to the
549
+ given group.
550
+
551
+ This method causes the configuration for the specified device to
552
+ be pushed to all members of the given device group.
553
+
554
+ If force is true, then the configuration will be pushed
555
+ unconditionally. If force is false, then update all devices in
556
+ the device group that have configuration older than the specified
557
+ device.
558
+
559
+ </documentation>
560
+ <input message="tns:System.ConfigSync.synchronize_to_group_v2Request"/>
561
+ <output message="tns:System.ConfigSync.synchronize_to_group_v2Response"/>
562
+ </operation>
563
+ <operation name="synchronize_from_group">
564
+ <documentation>
565
+ Synchronize the configuration from the given group.
566
+
567
+ This method updates the local device with the configuration from
568
+ the device in the given device group with the most recently
569
+ changed configuration.
570
+
571
+ If the local device has configuration that has not yet been pushed
572
+ to the rest of the device group, then this does nothing in order
573
+ to prevent the accidental deleting of configuration.
574
+
575
+ </documentation>
576
+ <input message="tns:System.ConfigSync.synchronize_from_groupRequest"/>
577
+ <output message="tns:System.ConfigSync.synchronize_from_groupResponse"/>
578
+ </operation>
579
+ <operation name="rollback_configuration">
580
+ <documentation>
581
+ Rolls back to the previous configuration.
582
+
583
+ </documentation>
584
+ <input message="tns:System.ConfigSync.rollback_configurationRequest"/>
585
+ <output message="tns:System.ConfigSync.rollback_configurationResponse"/>
586
+ </operation>
587
+ <operation name="delete_configuration">
588
+ <documentation>
589
+ Deletes the specified configuration from the archive directory.
590
+ If the specified file doesn't exist, an exception will be raised.
591
+ The specified configuration should not contain any path information
592
+ since it is restricted to be in the archive directory.
593
+ NOTE: File names containing the following characters will be
594
+ considered invalid: ` ~ / \ : ; * ? " &lt; &gt; | &amp;
595
+
596
+ </documentation>
597
+ <input message="tns:System.ConfigSync.delete_configurationRequest"/>
598
+ <output message="tns:System.ConfigSync.delete_configurationResponse"/>
599
+ </operation>
600
+ <operation name="upload_configuration">
601
+ <documentation>
602
+ Uploads the configurations to the device.
603
+
604
+ </documentation>
605
+ <input message="tns:System.ConfigSync.upload_configurationRequest"/>
606
+ <output message="tns:System.ConfigSync.upload_configurationResponse"/>
607
+ </operation>
608
+ <operation name="download_configuration">
609
+ <documentation>
610
+ Downloads the configurations from the device.
611
+
612
+ </documentation>
613
+ <input message="tns:System.ConfigSync.download_configurationRequest"/>
614
+ <output message="tns:System.ConfigSync.download_configurationResponse"/>
615
+ </operation>
616
+ <operation name="delete_file">
617
+ <documentation>
618
+ Deletes the specified file from the device. If the specified file
619
+ doesn't exist or an error occurs, an exception will be raised.
620
+ NOTE: File names containing the following characters will be
621
+ considered invalid: ` ~ \ : ; * ? " &lt; &gt; | &amp;
622
+
623
+ </documentation>
624
+ <input message="tns:System.ConfigSync.delete_fileRequest"/>
625
+ <output message="tns:System.ConfigSync.delete_fileResponse"/>
626
+ </operation>
627
+ <operation name="upload_file">
628
+ <documentation>
629
+ A generic file upload mechanism to transfer a file to the device.
630
+
631
+ </documentation>
632
+ <input message="tns:System.ConfigSync.upload_fileRequest"/>
633
+ <output message="tns:System.ConfigSync.upload_fileResponse"/>
634
+ </operation>
635
+ <operation name="download_file">
636
+ <documentation>
637
+ A generic file download mechanism to download a file from the device.
638
+
639
+ </documentation>
640
+ <input message="tns:System.ConfigSync.download_fileRequest"/>
641
+ <output message="tns:System.ConfigSync.download_fileResponse"/>
642
+ </operation>
643
+ <operation name="move_file">
644
+ <documentation>
645
+ A generic file move mechanism to move files on a device.
646
+ This call does a rename of the file and will not work across
647
+ filesystem boundaries.
648
+
649
+ </documentation>
650
+ <input message="tns:System.ConfigSync.move_fileRequest"/>
651
+ <output message="tns:System.ConfigSync.move_fileResponse"/>
652
+ </operation>
653
+ <operation name="get_version">
654
+ <documentation>
655
+ Gets the version information for this interface.
656
+
657
+ </documentation>
658
+ <input message="tns:System.ConfigSync.get_versionRequest"/>
659
+ <output message="tns:System.ConfigSync.get_versionResponse"/>
660
+ </operation>
661
+ </portType>
662
+
663
+ <!-- binding -->
664
+
665
+ <binding name="System.ConfigSyncBinding" type="tns:System.ConfigSyncPortType">
666
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
667
+ <operation name="get_configuration_list">
668
+ <documentation>
669
+ Gets a list of all available configuration archives on the system.
670
+
671
+ </documentation>
672
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
673
+ <input>
674
+ <soap:body
675
+ use="encoded"
676
+ namespace="urn:iControl:System/ConfigSync"
677
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
678
+ </input>
679
+ <output>
680
+ <soap:body
681
+ use="encoded"
682
+ namespace="urn:iControl:System/ConfigSync"
683
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
684
+ </output>
685
+ </operation>
686
+
687
+ <operation name="load_configuration">
688
+ <documentation>
689
+ Load the system configuration.
690
+
691
+ As of BIG-IP_v11.0.0, the filename argument is ignored. Only the
692
+ official system configuration files will be loaded.
693
+
694
+ </documentation>
695
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
696
+ <input>
697
+ <soap:body
698
+ use="encoded"
699
+ namespace="urn:iControl:System/ConfigSync"
700
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
701
+ </input>
702
+ <output>
703
+ <soap:body
704
+ use="encoded"
705
+ namespace="urn:iControl:System/ConfigSync"
706
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
707
+ </output>
708
+ </operation>
709
+
710
+ <operation name="save_configuration">
711
+ <documentation>
712
+ Saves the current configurations to the specified archive.
713
+ If the "save_flag" is either SAVE_HIGH_LEVEL_CONFIG or SAVE_BASE_LEVEL_CONFIG, the
714
+ specified filename will be ignored, since by default, configuration will be saved into
715
+ /config/bigip.conf or /config/bigip_base.conf respectively.
716
+
717
+ </documentation>
718
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
719
+ <input>
720
+ <soap:body
721
+ use="encoded"
722
+ namespace="urn:iControl:System/ConfigSync"
723
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
724
+ </input>
725
+ <output>
726
+ <soap:body
727
+ use="encoded"
728
+ namespace="urn:iControl:System/ConfigSync"
729
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
730
+ </output>
731
+ </operation>
732
+
733
+ <operation name="save_partial_configuration">
734
+ <documentation>
735
+ Saves the current configurations to the specified archive.
736
+ If the "save_flag" is either SAVE_HIGH_LEVEL_CONFIG or SAVE_BASE_LEVEL_CONFIG, the
737
+ specified filename will be ignored, since by default, configuration will be saved into
738
+ /config/bigip.conf or /config/bigip_base.conf respectively.
739
+ If any "features_to_exclude" components are specified, those components
740
+ are excluded from the configuration.
741
+ If any "features_to_include" components are specified, those components
742
+ are included from the configuration.
743
+ Note that feature inclusion/exclusion will only work when the
744
+ save flag is "SAVE_FULL".
745
+
746
+ </documentation>
747
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
748
+ <input>
749
+ <soap:body
750
+ use="encoded"
751
+ namespace="urn:iControl:System/ConfigSync"
752
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
753
+ </input>
754
+ <output>
755
+ <soap:body
756
+ use="encoded"
757
+ namespace="urn:iControl:System/ConfigSync"
758
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
759
+ </output>
760
+ </operation>
761
+
762
+ <operation name="save_partition_configuration">
763
+ <documentation>
764
+ Saves the current configuration in the partitions specified based on the save flag
765
+ provided.
766
+
767
+ </documentation>
768
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
769
+ <input>
770
+ <soap:body
771
+ use="encoded"
772
+ namespace="urn:iControl:System/ConfigSync"
773
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
774
+ </input>
775
+ <output>
776
+ <soap:body
777
+ use="encoded"
778
+ namespace="urn:iControl:System/ConfigSync"
779
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
780
+ </output>
781
+ </operation>
782
+
783
+ <operation name="save_encrypted_configuration">
784
+ <documentation>
785
+ Saves and encrypts the current configurations to the specified archive.
786
+ This method is used to save whole configuration archive, not just what's
787
+ in bigip.conf or bigip_base.conf.
788
+
789
+ </documentation>
790
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
791
+ <input>
792
+ <soap:body
793
+ use="encoded"
794
+ namespace="urn:iControl:System/ConfigSync"
795
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
796
+ </input>
797
+ <output>
798
+ <soap:body
799
+ use="encoded"
800
+ namespace="urn:iControl:System/ConfigSync"
801
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
802
+ </output>
803
+ </operation>
804
+
805
+ <operation name="save_partial_encrypted_configuration">
806
+ <documentation>
807
+ Saves and encrypts the current configurations to the specified archive.
808
+ This method is used to save whole configuration archive, not just what's
809
+ in bigip.conf or bigip_base.conf.
810
+ If any "features_to_exclude" components are specified, those components
811
+ are excluded from the configuration.
812
+ If any "features_to_include" components are specified, those components
813
+ are included from the configuration.
814
+ Note that feature inclusion/exclusion will only work when the
815
+ save flag is "SAVE_FULL".
816
+
817
+ </documentation>
818
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
819
+ <input>
820
+ <soap:body
821
+ use="encoded"
822
+ namespace="urn:iControl:System/ConfigSync"
823
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
824
+ </input>
825
+ <output>
826
+ <soap:body
827
+ use="encoded"
828
+ namespace="urn:iControl:System/ConfigSync"
829
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
830
+ </output>
831
+ </operation>
832
+
833
+ <operation name="install_configuration">
834
+ <documentation>
835
+ Installs the configurations contained in the specified archive to
836
+ the local device.
837
+
838
+ </documentation>
839
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
840
+ <input>
841
+ <soap:body
842
+ use="encoded"
843
+ namespace="urn:iControl:System/ConfigSync"
844
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
845
+ </input>
846
+ <output>
847
+ <soap:body
848
+ use="encoded"
849
+ namespace="urn:iControl:System/ConfigSync"
850
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
851
+ </output>
852
+ </operation>
853
+
854
+ <operation name="install_configuration_quietly">
855
+ <documentation>
856
+ Installs the configurations contained in the specified archive to
857
+ the local device, suppressing output.
858
+
859
+ This is intended for system use only.
860
+
861
+ </documentation>
862
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
863
+ <input>
864
+ <soap:body
865
+ use="encoded"
866
+ namespace="urn:iControl:System/ConfigSync"
867
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
868
+ </input>
869
+ <output>
870
+ <soap:body
871
+ use="encoded"
872
+ namespace="urn:iControl:System/ConfigSync"
873
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
874
+ </output>
875
+ </operation>
876
+
877
+ <operation name="install_all_configuration">
878
+ <documentation>
879
+ Installs the configurations contained in the specified archive to
880
+ the local device using the 'all' flag.
881
+
882
+ </documentation>
883
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
884
+ <input>
885
+ <soap:body
886
+ use="encoded"
887
+ namespace="urn:iControl:System/ConfigSync"
888
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
889
+ </input>
890
+ <output>
891
+ <soap:body
892
+ use="encoded"
893
+ namespace="urn:iControl:System/ConfigSync"
894
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
895
+ </output>
896
+ </operation>
897
+
898
+ <operation name="install_encrypted_configuration">
899
+ <documentation>
900
+ Installs the encrypted configurations contained in the specified archive to
901
+ the local device. If the specified archive is not already encrypted, then
902
+ the passphrase is ignored, and installation will take place as normal.
903
+
904
+ </documentation>
905
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
906
+ <input>
907
+ <soap:body
908
+ use="encoded"
909
+ namespace="urn:iControl:System/ConfigSync"
910
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
911
+ </input>
912
+ <output>
913
+ <soap:body
914
+ use="encoded"
915
+ namespace="urn:iControl:System/ConfigSync"
916
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
917
+ </output>
918
+ </operation>
919
+
920
+ <operation name="install_encrypted_configuration_quietly">
921
+ <documentation>
922
+ Installs the encrypted configurations contained in the specified
923
+ archive to the local device, suppressing the output. If the
924
+ specified archive is not already encrypted, then the passphrase is
925
+ ignored, and installation will take place as normal.
926
+
927
+ This is intended for system use only.
928
+
929
+ </documentation>
930
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
931
+ <input>
932
+ <soap:body
933
+ use="encoded"
934
+ namespace="urn:iControl:System/ConfigSync"
935
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
936
+ </input>
937
+ <output>
938
+ <soap:body
939
+ use="encoded"
940
+ namespace="urn:iControl:System/ConfigSync"
941
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
942
+ </output>
943
+ </operation>
944
+
945
+ <operation name="install_all_encrypted_configuration">
946
+ <documentation>
947
+ Installs the encrypted configurations contained in the specified archive to
948
+ the local device using the 'all' flag. If the specified archive is not already encrypted, then
949
+ the passphrase is ignored, and installation will take place as normal.
950
+
951
+ </documentation>
952
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
953
+ <input>
954
+ <soap:body
955
+ use="encoded"
956
+ namespace="urn:iControl:System/ConfigSync"
957
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
958
+ </input>
959
+ <output>
960
+ <soap:body
961
+ use="encoded"
962
+ namespace="urn:iControl:System/ConfigSync"
963
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
964
+ </output>
965
+ </operation>
966
+
967
+ <operation name="synchronize_configuration">
968
+ <documentation>
969
+ Note: This method has been deprecated, because syncing has
970
+ changed radically with the Centralized Management
971
+ Infrastructure feature. Please use synchronize_to_group_v2
972
+ and synchronize_from_group instead. This method now finds
973
+ all the device groups of which the local device is a
974
+ member, and runs synchronize_to_group on those groups. It
975
+ does not support the sync_flag anymore -- that flag is now
976
+ ignored.
977
+
978
+ Synchronizes the configurations between the two devices in a redundant system.
979
+ In the case of cache devices, synchronizes the configurations across the cluster.
980
+
981
+ </documentation>
982
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
983
+ <input>
984
+ <soap:body
985
+ use="encoded"
986
+ namespace="urn:iControl:System/ConfigSync"
987
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
988
+ </input>
989
+ <output>
990
+ <soap:body
991
+ use="encoded"
992
+ namespace="urn:iControl:System/ConfigSync"
993
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
994
+ </output>
995
+ </operation>
996
+
997
+ <operation name="synchronize_to_group">
998
+ <documentation>
999
+ Note: This method has been deprecated. Please use the
1000
+ synchronize_to_group_v2 method instead.
1001
+
1002
+ Synchronize the configuration to the given group.
1003
+
1004
+ This method causes the configuration for the local device to
1005
+ be pushed to all members of the given device group, provided that
1006
+ the current device has the newest configuration in the device
1007
+ group. If this is not the case, then this method does nothing.
1008
+
1009
+ </documentation>
1010
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
1011
+ <input>
1012
+ <soap:body
1013
+ use="encoded"
1014
+ namespace="urn:iControl:System/ConfigSync"
1015
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1016
+ </input>
1017
+ <output>
1018
+ <soap:body
1019
+ use="encoded"
1020
+ namespace="urn:iControl:System/ConfigSync"
1021
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1022
+ </output>
1023
+ </operation>
1024
+
1025
+ <operation name="synchronize_to_group_v2">
1026
+ <documentation>
1027
+ Synchronize the configuration from the specified device to the
1028
+ given group.
1029
+
1030
+ This method causes the configuration for the specified device to
1031
+ be pushed to all members of the given device group.
1032
+
1033
+ If force is true, then the configuration will be pushed
1034
+ unconditionally. If force is false, then update all devices in
1035
+ the device group that have configuration older than the specified
1036
+ device.
1037
+
1038
+ </documentation>
1039
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
1040
+ <input>
1041
+ <soap:body
1042
+ use="encoded"
1043
+ namespace="urn:iControl:System/ConfigSync"
1044
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1045
+ </input>
1046
+ <output>
1047
+ <soap:body
1048
+ use="encoded"
1049
+ namespace="urn:iControl:System/ConfigSync"
1050
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1051
+ </output>
1052
+ </operation>
1053
+
1054
+ <operation name="synchronize_from_group">
1055
+ <documentation>
1056
+ Synchronize the configuration from the given group.
1057
+
1058
+ This method updates the local device with the configuration from
1059
+ the device in the given device group with the most recently
1060
+ changed configuration.
1061
+
1062
+ If the local device has configuration that has not yet been pushed
1063
+ to the rest of the device group, then this does nothing in order
1064
+ to prevent the accidental deleting of configuration.
1065
+
1066
+ </documentation>
1067
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
1068
+ <input>
1069
+ <soap:body
1070
+ use="encoded"
1071
+ namespace="urn:iControl:System/ConfigSync"
1072
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1073
+ </input>
1074
+ <output>
1075
+ <soap:body
1076
+ use="encoded"
1077
+ namespace="urn:iControl:System/ConfigSync"
1078
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1079
+ </output>
1080
+ </operation>
1081
+
1082
+ <operation name="rollback_configuration">
1083
+ <documentation>
1084
+ Rolls back to the previous configuration.
1085
+
1086
+ </documentation>
1087
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
1088
+ <input>
1089
+ <soap:body
1090
+ use="encoded"
1091
+ namespace="urn:iControl:System/ConfigSync"
1092
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1093
+ </input>
1094
+ <output>
1095
+ <soap:body
1096
+ use="encoded"
1097
+ namespace="urn:iControl:System/ConfigSync"
1098
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1099
+ </output>
1100
+ </operation>
1101
+
1102
+ <operation name="delete_configuration">
1103
+ <documentation>
1104
+ Deletes the specified configuration from the archive directory.
1105
+ If the specified file doesn't exist, an exception will be raised.
1106
+ The specified configuration should not contain any path information
1107
+ since it is restricted to be in the archive directory.
1108
+ NOTE: File names containing the following characters will be
1109
+ considered invalid: ` ~ / \ : ; * ? " &lt; &gt; | &amp;
1110
+
1111
+ </documentation>
1112
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
1113
+ <input>
1114
+ <soap:body
1115
+ use="encoded"
1116
+ namespace="urn:iControl:System/ConfigSync"
1117
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1118
+ </input>
1119
+ <output>
1120
+ <soap:body
1121
+ use="encoded"
1122
+ namespace="urn:iControl:System/ConfigSync"
1123
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1124
+ </output>
1125
+ </operation>
1126
+
1127
+ <operation name="upload_configuration">
1128
+ <documentation>
1129
+ Uploads the configurations to the device.
1130
+
1131
+ </documentation>
1132
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
1133
+ <input>
1134
+ <soap:body
1135
+ use="encoded"
1136
+ namespace="urn:iControl:System/ConfigSync"
1137
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1138
+ </input>
1139
+ <output>
1140
+ <soap:body
1141
+ use="encoded"
1142
+ namespace="urn:iControl:System/ConfigSync"
1143
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1144
+ </output>
1145
+ </operation>
1146
+
1147
+ <operation name="download_configuration">
1148
+ <documentation>
1149
+ Downloads the configurations from the device.
1150
+
1151
+ </documentation>
1152
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
1153
+ <input>
1154
+ <soap:body
1155
+ use="encoded"
1156
+ namespace="urn:iControl:System/ConfigSync"
1157
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1158
+ </input>
1159
+ <output>
1160
+ <soap:body
1161
+ use="encoded"
1162
+ namespace="urn:iControl:System/ConfigSync"
1163
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1164
+ </output>
1165
+ </operation>
1166
+
1167
+ <operation name="delete_file">
1168
+ <documentation>
1169
+ Deletes the specified file from the device. If the specified file
1170
+ doesn't exist or an error occurs, an exception will be raised.
1171
+ NOTE: File names containing the following characters will be
1172
+ considered invalid: ` ~ \ : ; * ? " &lt; &gt; | &amp;
1173
+
1174
+ </documentation>
1175
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
1176
+ <input>
1177
+ <soap:body
1178
+ use="encoded"
1179
+ namespace="urn:iControl:System/ConfigSync"
1180
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1181
+ </input>
1182
+ <output>
1183
+ <soap:body
1184
+ use="encoded"
1185
+ namespace="urn:iControl:System/ConfigSync"
1186
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1187
+ </output>
1188
+ </operation>
1189
+
1190
+ <operation name="upload_file">
1191
+ <documentation>
1192
+ A generic file upload mechanism to transfer a file to the device.
1193
+
1194
+ </documentation>
1195
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
1196
+ <input>
1197
+ <soap:body
1198
+ use="encoded"
1199
+ namespace="urn:iControl:System/ConfigSync"
1200
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1201
+ </input>
1202
+ <output>
1203
+ <soap:body
1204
+ use="encoded"
1205
+ namespace="urn:iControl:System/ConfigSync"
1206
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1207
+ </output>
1208
+ </operation>
1209
+
1210
+ <operation name="download_file">
1211
+ <documentation>
1212
+ A generic file download mechanism to download a file from the device.
1213
+
1214
+ </documentation>
1215
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
1216
+ <input>
1217
+ <soap:body
1218
+ use="encoded"
1219
+ namespace="urn:iControl:System/ConfigSync"
1220
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1221
+ </input>
1222
+ <output>
1223
+ <soap:body
1224
+ use="encoded"
1225
+ namespace="urn:iControl:System/ConfigSync"
1226
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1227
+ </output>
1228
+ </operation>
1229
+
1230
+ <operation name="move_file">
1231
+ <documentation>
1232
+ A generic file move mechanism to move files on a device.
1233
+ This call does a rename of the file and will not work across
1234
+ filesystem boundaries.
1235
+
1236
+ </documentation>
1237
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
1238
+ <input>
1239
+ <soap:body
1240
+ use="encoded"
1241
+ namespace="urn:iControl:System/ConfigSync"
1242
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1243
+ </input>
1244
+ <output>
1245
+ <soap:body
1246
+ use="encoded"
1247
+ namespace="urn:iControl:System/ConfigSync"
1248
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1249
+ </output>
1250
+ </operation>
1251
+
1252
+ <operation name="get_version">
1253
+ <documentation>
1254
+ Gets the version information for this interface.
1255
+
1256
+ </documentation>
1257
+ <soap:operation soapAction="urn:iControl:System/ConfigSync"/>
1258
+ <input>
1259
+ <soap:body
1260
+ use="encoded"
1261
+ namespace="urn:iControl:System/ConfigSync"
1262
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1263
+ </input>
1264
+ <output>
1265
+ <soap:body
1266
+ use="encoded"
1267
+ namespace="urn:iControl:System/ConfigSync"
1268
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1269
+ </output>
1270
+ </operation>
1271
+ </binding>
1272
+
1273
+ <!-- service -->
1274
+
1275
+ <service name="System.ConfigSync">
1276
+ <documentation>
1277
+ The ConfigSync interface enables you to work with configuration files. For example, use the
1278
+ ConfigSync interface to retrieve a configuration file list, roll up and save a specified configuration,
1279
+ install a configuration on a device, synchronize configuration setups, roll back a configuration, and
1280
+ upload or download a configuration.
1281
+
1282
+ This interface does not support transactions.
1283
+
1284
+ </documentation>
1285
+ <port name="System.ConfigSyncPort" binding="tns:System.ConfigSyncBinding">
1286
+ <soap:address location="https://url_to_service"/>
1287
+ </port>
1288
+ </service>
1289
+ </definitions>