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,1241 @@
1
+ <?xml version="1.0" ?>
2
+ <!--
3
+ Copyright (c) 1996-2013, F5 Networks, Inc., Seattle, Washington. All rights reserved.
4
+
5
+ F5, F5 Networks, the F5 logo, BIG-IP, 3-DNS, iControl, GLOBAL-SITE, SEE-IT, EDGE-FX, FireGuard, Internet Control Architecture, IP Application Switch, iRules, PACKET VELOCITY, SYN Check, CONTROL YOUR WORLD, OneConnect, ZoneRunner, uRoam, FirePass, and TrafficShield are registered trademarks or trademarks of F5 Networks, Inc., in the U.S. and certain other countries.
6
+
7
+ All other trademarks mentioned in this document are the property of their respective owners. F5 Networks' trademarks may not be used in connection with any product or service except as permitted in writing by F5.
8
+
9
+ -->
10
+ <definitions name="Management.DeviceGroup"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:complexType name="Management.DeviceGroup.DeviceSyncStatus">
25
+ <xsd:sequence>
26
+ <xsd:element name="last_sync_time" type="tns:Common.TimeStamp"/>
27
+ <xsd:element name="last_sync_type" type="tns:Management.DeviceGroup.DeviceSyncType"/>
28
+ <xsd:element name="commit_id" type="tns:Management.DeviceGroup.CommitID"/>
29
+ <xsd:element name="last_successful_commit_id" type="tns:Management.DeviceGroup.CommitID"/>
30
+ </xsd:sequence>
31
+ </xsd:complexType>
32
+ <xsd:complexType name="Management.DeviceGroup.TypeSequence">
33
+ <xsd:complexContent>
34
+ <xsd:restriction base='SOAP-ENC:Array'>
35
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.DeviceGroup.Type[]'/>
36
+ </xsd:restriction>
37
+ </xsd:complexContent>
38
+ </xsd:complexType>
39
+ <xsd:simpleType name="Management.DeviceGroup.StatusColor">
40
+ <xsd:restriction base="xsd:string">
41
+ <xsd:enumeration value="COLOR_UNKNOWN">
42
+ <xsd:annotation>
43
+ <xsd:documentation>COLOR_UNKNOWN</xsd:documentation>
44
+ </xsd:annotation>
45
+ </xsd:enumeration>
46
+ <xsd:enumeration value="COLOR_GREEN">
47
+ <xsd:annotation>
48
+ <xsd:documentation>COLOR_GREEN</xsd:documentation>
49
+ </xsd:annotation>
50
+ </xsd:enumeration>
51
+ <xsd:enumeration value="COLOR_YELLOW">
52
+ <xsd:annotation>
53
+ <xsd:documentation>COLOR_YELLOW</xsd:documentation>
54
+ </xsd:annotation>
55
+ </xsd:enumeration>
56
+ <xsd:enumeration value="COLOR_RED">
57
+ <xsd:annotation>
58
+ <xsd:documentation>COLOR_RED</xsd:documentation>
59
+ </xsd:annotation>
60
+ </xsd:enumeration>
61
+ <xsd:enumeration value="COLOR_BLUE">
62
+ <xsd:annotation>
63
+ <xsd:documentation>COLOR_BLUE</xsd:documentation>
64
+ </xsd:annotation>
65
+ </xsd:enumeration>
66
+ <xsd:enumeration value="COLOR_GRAY">
67
+ <xsd:annotation>
68
+ <xsd:documentation>COLOR_GRAY</xsd:documentation>
69
+ </xsd:annotation>
70
+ </xsd:enumeration>
71
+ <xsd:enumeration value="COLOR_BLACK">
72
+ <xsd:annotation>
73
+ <xsd:documentation>COLOR_BLACK</xsd:documentation>
74
+ </xsd:annotation>
75
+ </xsd:enumeration>
76
+ </xsd:restriction>
77
+ </xsd:simpleType>
78
+ <xsd:simpleType name="Management.DeviceGroup.MemberState">
79
+ <xsd:restriction base="xsd:string">
80
+ <xsd:enumeration value="MEMBER_STATE_UNKNOWN">
81
+ <xsd:annotation>
82
+ <xsd:documentation>MEMBER_STATE_UNKNOWN</xsd:documentation>
83
+ </xsd:annotation>
84
+ </xsd:enumeration>
85
+ <xsd:enumeration value="MEMBER_STATE_SYNCING">
86
+ <xsd:annotation>
87
+ <xsd:documentation>MEMBER_STATE_SYNCING</xsd:documentation>
88
+ </xsd:annotation>
89
+ </xsd:enumeration>
90
+ <xsd:enumeration value="MEMBER_STATE_NEED_MANUAL_SYNC">
91
+ <xsd:annotation>
92
+ <xsd:documentation>MEMBER_STATE_NEED_MANUAL_SYNC</xsd:documentation>
93
+ </xsd:annotation>
94
+ </xsd:enumeration>
95
+ <xsd:enumeration value="MEMBER_STATE_IN_SYNC">
96
+ <xsd:annotation>
97
+ <xsd:documentation>MEMBER_STATE_IN_SYNC</xsd:documentation>
98
+ </xsd:annotation>
99
+ </xsd:enumeration>
100
+ <xsd:enumeration value="MEMBER_STATE_SYNC_FAILED">
101
+ <xsd:annotation>
102
+ <xsd:documentation>MEMBER_STATE_SYNC_FAILED</xsd:documentation>
103
+ </xsd:annotation>
104
+ </xsd:enumeration>
105
+ <xsd:enumeration value="MEMBER_STATE_SYNC_DISCONNECTED">
106
+ <xsd:annotation>
107
+ <xsd:documentation>MEMBER_STATE_SYNC_DISCONNECTED</xsd:documentation>
108
+ </xsd:annotation>
109
+ </xsd:enumeration>
110
+ <xsd:enumeration value="MEMBER_STATE_STANDALONE">
111
+ <xsd:annotation>
112
+ <xsd:documentation>MEMBER_STATE_STANDALONE</xsd:documentation>
113
+ </xsd:annotation>
114
+ </xsd:enumeration>
115
+ <xsd:enumeration value="MEMBER_STATE_AWAITING_INITIAL_SYNC">
116
+ <xsd:annotation>
117
+ <xsd:documentation>MEMBER_STATE_AWAITING_INITIAL_SYNC</xsd:documentation>
118
+ </xsd:annotation>
119
+ </xsd:enumeration>
120
+ <xsd:enumeration value="MEMBER_STATE_INCOMPATIBLE_VERSION">
121
+ <xsd:annotation>
122
+ <xsd:documentation>MEMBER_STATE_INCOMPATIBLE_VERSION</xsd:documentation>
123
+ </xsd:annotation>
124
+ </xsd:enumeration>
125
+ <xsd:enumeration value="MEMBER_STATE_PARTIAL_SYNC">
126
+ <xsd:annotation>
127
+ <xsd:documentation>MEMBER_STATE_PARTIAL_SYNC</xsd:documentation>
128
+ </xsd:annotation>
129
+ </xsd:enumeration>
130
+ </xsd:restriction>
131
+ </xsd:simpleType>
132
+ <xsd:simpleType name="Common.EnabledState">
133
+ <xsd:restriction base="xsd:string">
134
+ <xsd:enumeration value="STATE_DISABLED">
135
+ <xsd:annotation>
136
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
137
+ </xsd:annotation>
138
+ </xsd:enumeration>
139
+ <xsd:enumeration value="STATE_ENABLED">
140
+ <xsd:annotation>
141
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
142
+ </xsd:annotation>
143
+ </xsd:enumeration>
144
+ </xsd:restriction>
145
+ </xsd:simpleType>
146
+ <xsd:complexType name="Common.TimeStamp">
147
+ <xsd:sequence>
148
+ <xsd:element name="year" type="xsd:long"/>
149
+ <xsd:element name="month" type="xsd:long"/>
150
+ <xsd:element name="day" type="xsd:long"/>
151
+ <xsd:element name="hour" type="xsd:long"/>
152
+ <xsd:element name="minute" type="xsd:long"/>
153
+ <xsd:element name="second" type="xsd:long"/>
154
+ </xsd:sequence>
155
+ </xsd:complexType>
156
+ <xsd:complexType name="Management.DeviceGroup.SyncStatus">
157
+ <xsd:sequence>
158
+ <xsd:element name="color" type="tns:Management.DeviceGroup.StatusColor"/>
159
+ <xsd:element name="member_state" type="tns:Management.DeviceGroup.MemberState"/>
160
+ <xsd:element name="status" type="xsd:string"/>
161
+ <xsd:element name="summary" type="xsd:string"/>
162
+ <xsd:element name="details" type="tns:Common.StringSequence"/>
163
+ </xsd:sequence>
164
+ </xsd:complexType>
165
+ <xsd:complexType name="Common.StringSequence">
166
+ <xsd:complexContent>
167
+ <xsd:restriction base='SOAP-ENC:Array'>
168
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
169
+ </xsd:restriction>
170
+ </xsd:complexContent>
171
+ </xsd:complexType>
172
+ <xsd:complexType name="Common.BooleanSequence">
173
+ <xsd:complexContent>
174
+ <xsd:restriction base='SOAP-ENC:Array'>
175
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:boolean[]'/>
176
+ </xsd:restriction>
177
+ </xsd:complexContent>
178
+ </xsd:complexType>
179
+ <xsd:complexType name="Common.ULongSequence">
180
+ <xsd:complexContent>
181
+ <xsd:restriction base='SOAP-ENC:Array'>
182
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
183
+ </xsd:restriction>
184
+ </xsd:complexContent>
185
+ </xsd:complexType>
186
+ <xsd:simpleType name="Common.HAState">
187
+ <xsd:restriction base="xsd:string">
188
+ <xsd:enumeration value="HA_STATE_OFFLINE">
189
+ <xsd:annotation>
190
+ <xsd:documentation>HA_STATE_OFFLINE</xsd:documentation>
191
+ </xsd:annotation>
192
+ </xsd:enumeration>
193
+ <xsd:enumeration value="HA_STATE_FORCED_OFFLINE">
194
+ <xsd:annotation>
195
+ <xsd:documentation>HA_STATE_FORCED_OFFLINE</xsd:documentation>
196
+ </xsd:annotation>
197
+ </xsd:enumeration>
198
+ <xsd:enumeration value="HA_STATE_STANDBY">
199
+ <xsd:annotation>
200
+ <xsd:documentation>HA_STATE_STANDBY</xsd:documentation>
201
+ </xsd:annotation>
202
+ </xsd:enumeration>
203
+ <xsd:enumeration value="HA_STATE_ACTIVE">
204
+ <xsd:annotation>
205
+ <xsd:documentation>HA_STATE_ACTIVE</xsd:documentation>
206
+ </xsd:annotation>
207
+ </xsd:enumeration>
208
+ <xsd:enumeration value="HA_STATE_UNKNOWN">
209
+ <xsd:annotation>
210
+ <xsd:documentation>HA_STATE_UNKNOWN</xsd:documentation>
211
+ </xsd:annotation>
212
+ </xsd:enumeration>
213
+ </xsd:restriction>
214
+ </xsd:simpleType>
215
+ <xsd:complexType name="Management.DeviceGroup.FailoverStatus">
216
+ <xsd:sequence>
217
+ <xsd:element name="failover_status" type="tns:Common.HAState"/>
218
+ <xsd:element name="color" type="tns:Management.DeviceGroup.StatusColor"/>
219
+ <xsd:element name="status" type="xsd:string"/>
220
+ <xsd:element name="summary" type="xsd:string"/>
221
+ <xsd:element name="details" type="tns:Common.StringSequence"/>
222
+ </xsd:sequence>
223
+ </xsd:complexType>
224
+ <xsd:simpleType name="Management.DeviceGroup.DeviceSyncType">
225
+ <xsd:restriction base="xsd:string">
226
+ <xsd:enumeration value="SYNC_TYPE_UNKNOWN">
227
+ <xsd:annotation>
228
+ <xsd:documentation>SYNC_TYPE_UNKNOWN</xsd:documentation>
229
+ </xsd:annotation>
230
+ </xsd:enumeration>
231
+ <xsd:enumeration value="SYNC_TYPE_NONE">
232
+ <xsd:annotation>
233
+ <xsd:documentation>SYNC_TYPE_NONE</xsd:documentation>
234
+ </xsd:annotation>
235
+ </xsd:enumeration>
236
+ <xsd:enumeration value="SYNC_TYPE_FULL_LOAD_MANUAL">
237
+ <xsd:annotation>
238
+ <xsd:documentation>SYNC_TYPE_FULL_LOAD_MANUAL</xsd:documentation>
239
+ </xsd:annotation>
240
+ </xsd:enumeration>
241
+ <xsd:enumeration value="SYNC_TYPE_FULL_LOAD_AUTO">
242
+ <xsd:annotation>
243
+ <xsd:documentation>SYNC_TYPE_FULL_LOAD_AUTO</xsd:documentation>
244
+ </xsd:annotation>
245
+ </xsd:enumeration>
246
+ <xsd:enumeration value="SYNC_TYPE_INCREMENTAL_MANUAL">
247
+ <xsd:annotation>
248
+ <xsd:documentation>SYNC_TYPE_INCREMENTAL_MANUAL</xsd:documentation>
249
+ </xsd:annotation>
250
+ </xsd:enumeration>
251
+ <xsd:enumeration value="SYNC_TYPE_INCREMENTAL_AUTO">
252
+ <xsd:annotation>
253
+ <xsd:documentation>SYNC_TYPE_INCREMENTAL_AUTO</xsd:documentation>
254
+ </xsd:annotation>
255
+ </xsd:enumeration>
256
+ </xsd:restriction>
257
+ </xsd:simpleType>
258
+ <xsd:complexType name="Management.DeviceGroup.SyncStatusSequence">
259
+ <xsd:complexContent>
260
+ <xsd:restriction base='SOAP-ENC:Array'>
261
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.DeviceGroup.SyncStatus[]'/>
262
+ </xsd:restriction>
263
+ </xsd:complexContent>
264
+ </xsd:complexType>
265
+ <xsd:complexType name="Common.StringSequenceSequence">
266
+ <xsd:complexContent>
267
+ <xsd:restriction base='SOAP-ENC:Array'>
268
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
269
+ </xsd:restriction>
270
+ </xsd:complexContent>
271
+ </xsd:complexType>
272
+ <xsd:complexType name="Management.DeviceGroup.DeviceSyncStatusSequenceSequence">
273
+ <xsd:complexContent>
274
+ <xsd:restriction base='SOAP-ENC:Array'>
275
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.DeviceGroup.DeviceSyncStatusSequence[]'/>
276
+ </xsd:restriction>
277
+ </xsd:complexContent>
278
+ </xsd:complexType>
279
+ <xsd:complexType name="Management.DeviceGroup.CommitID">
280
+ <xsd:sequence>
281
+ <xsd:element name="originator" type="xsd:string"/>
282
+ <xsd:element name="sync_time" type="tns:Common.TimeStamp"/>
283
+ </xsd:sequence>
284
+ </xsd:complexType>
285
+ <xsd:simpleType name="Management.DeviceGroup.Type">
286
+ <xsd:restriction base="xsd:string">
287
+ <xsd:enumeration value="DGT_UNKNOWN">
288
+ <xsd:annotation>
289
+ <xsd:documentation>DGT_UNKNOWN</xsd:documentation>
290
+ </xsd:annotation>
291
+ </xsd:enumeration>
292
+ <xsd:enumeration value="DGT_SYNC_ONLY">
293
+ <xsd:annotation>
294
+ <xsd:documentation>DGT_SYNC_ONLY</xsd:documentation>
295
+ </xsd:annotation>
296
+ </xsd:enumeration>
297
+ <xsd:enumeration value="DGT_FAILOVER">
298
+ <xsd:annotation>
299
+ <xsd:documentation>DGT_FAILOVER</xsd:documentation>
300
+ </xsd:annotation>
301
+ </xsd:enumeration>
302
+ </xsd:restriction>
303
+ </xsd:simpleType>
304
+ <xsd:complexType name="Management.DeviceGroup.DeviceSyncStatusSequence">
305
+ <xsd:complexContent>
306
+ <xsd:restriction base='SOAP-ENC:Array'>
307
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.DeviceGroup.DeviceSyncStatus[]'/>
308
+ </xsd:restriction>
309
+ </xsd:complexContent>
310
+ </xsd:complexType>
311
+ <xsd:complexType name="Common.EnabledStateSequence">
312
+ <xsd:complexContent>
313
+ <xsd:restriction base='SOAP-ENC:Array'>
314
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
315
+ </xsd:restriction>
316
+ </xsd:complexContent>
317
+ </xsd:complexType>
318
+ </xsd:schema>
319
+ </types>
320
+
321
+ <!-- message -->
322
+
323
+ <message name="Management.DeviceGroup.get_listRequest">
324
+ </message>
325
+ <message name="Management.DeviceGroup.get_listResponse">
326
+ <part name="return" type="tns:Common.StringSequence"/>
327
+ </message>
328
+
329
+ <message name="Management.DeviceGroup.createRequest">
330
+ <part name="device_groups" type="tns:Common.StringSequence"/>
331
+ <part name="types" type="tns:Management.DeviceGroup.TypeSequence"/>
332
+ </message>
333
+ <message name="Management.DeviceGroup.createResponse">
334
+ </message>
335
+
336
+ <message name="Management.DeviceGroup.delete_device_groupRequest">
337
+ <part name="device_groups" type="tns:Common.StringSequence"/>
338
+ </message>
339
+ <message name="Management.DeviceGroup.delete_device_groupResponse">
340
+ </message>
341
+
342
+ <message name="Management.DeviceGroup.add_deviceRequest">
343
+ <part name="device_groups" type="tns:Common.StringSequence"/>
344
+ <part name="devices" type="tns:Common.StringSequenceSequence"/>
345
+ </message>
346
+ <message name="Management.DeviceGroup.add_deviceResponse">
347
+ </message>
348
+
349
+ <message name="Management.DeviceGroup.remove_deviceRequest">
350
+ <part name="device_groups" type="tns:Common.StringSequence"/>
351
+ <part name="devices" type="tns:Common.StringSequenceSequence"/>
352
+ </message>
353
+ <message name="Management.DeviceGroup.remove_deviceResponse">
354
+ </message>
355
+
356
+ <message name="Management.DeviceGroup.remove_all_devicesRequest">
357
+ <part name="device_groups" type="tns:Common.StringSequence"/>
358
+ </message>
359
+ <message name="Management.DeviceGroup.remove_all_devicesResponse">
360
+ </message>
361
+
362
+ <message name="Management.DeviceGroup.get_deviceRequest">
363
+ <part name="device_groups" type="tns:Common.StringSequence"/>
364
+ </message>
365
+ <message name="Management.DeviceGroup.get_deviceResponse">
366
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
367
+ </message>
368
+
369
+ <message name="Management.DeviceGroup.set_network_failover_enabled_stateRequest">
370
+ <part name="device_groups" type="tns:Common.StringSequence"/>
371
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
372
+ </message>
373
+ <message name="Management.DeviceGroup.set_network_failover_enabled_stateResponse">
374
+ </message>
375
+
376
+ <message name="Management.DeviceGroup.get_network_failover_enabled_stateRequest">
377
+ <part name="device_groups" type="tns:Common.StringSequence"/>
378
+ </message>
379
+ <message name="Management.DeviceGroup.get_network_failover_enabled_stateResponse">
380
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
381
+ </message>
382
+
383
+ <message name="Management.DeviceGroup.get_autosync_enabled_stateRequest">
384
+ <part name="device_groups" type="tns:Common.StringSequence"/>
385
+ </message>
386
+ <message name="Management.DeviceGroup.get_autosync_enabled_stateResponse">
387
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
388
+ </message>
389
+
390
+ <message name="Management.DeviceGroup.set_autosync_enabled_stateRequest">
391
+ <part name="device_groups" type="tns:Common.StringSequence"/>
392
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
393
+ </message>
394
+ <message name="Management.DeviceGroup.set_autosync_enabled_stateResponse">
395
+ </message>
396
+
397
+ <message name="Management.DeviceGroup.get_typeRequest">
398
+ <part name="device_groups" type="tns:Common.StringSequence"/>
399
+ </message>
400
+ <message name="Management.DeviceGroup.get_typeResponse">
401
+ <part name="return" type="tns:Management.DeviceGroup.TypeSequence"/>
402
+ </message>
403
+
404
+ <message name="Management.DeviceGroup.set_descriptionRequest">
405
+ <part name="device_groups" type="tns:Common.StringSequence"/>
406
+ <part name="descriptions" type="tns:Common.StringSequence"/>
407
+ </message>
408
+ <message name="Management.DeviceGroup.set_descriptionResponse">
409
+ </message>
410
+
411
+ <message name="Management.DeviceGroup.get_descriptionRequest">
412
+ <part name="device_groups" type="tns:Common.StringSequence"/>
413
+ </message>
414
+ <message name="Management.DeviceGroup.get_descriptionResponse">
415
+ <part name="return" type="tns:Common.StringSequence"/>
416
+ </message>
417
+
418
+ <message name="Management.DeviceGroup.get_failover_statusRequest">
419
+ </message>
420
+ <message name="Management.DeviceGroup.get_failover_statusResponse">
421
+ <part name="return" type="tns:Management.DeviceGroup.FailoverStatus"/>
422
+ </message>
423
+
424
+ <message name="Management.DeviceGroup.get_sync_status_overviewRequest">
425
+ </message>
426
+ <message name="Management.DeviceGroup.get_sync_status_overviewResponse">
427
+ <part name="return" type="tns:Management.DeviceGroup.SyncStatus"/>
428
+ </message>
429
+
430
+ <message name="Management.DeviceGroup.get_sync_statusRequest">
431
+ <part name="device_groups" type="tns:Common.StringSequence"/>
432
+ </message>
433
+ <message name="Management.DeviceGroup.get_sync_statusResponse">
434
+ <part name="return" type="tns:Management.DeviceGroup.SyncStatusSequence"/>
435
+ </message>
436
+
437
+ <message name="Management.DeviceGroup.get_device_sync_statusRequest">
438
+ <part name="device_groups" type="tns:Common.StringSequence"/>
439
+ <part name="devices" type="tns:Common.StringSequenceSequence"/>
440
+ </message>
441
+ <message name="Management.DeviceGroup.get_device_sync_statusResponse">
442
+ <part name="return" type="tns:Management.DeviceGroup.DeviceSyncStatusSequenceSequence"/>
443
+ </message>
444
+
445
+ <message name="Management.DeviceGroup.get_all_preferred_activeRequest">
446
+ <part name="device_groups" type="tns:Common.StringSequence"/>
447
+ </message>
448
+ <message name="Management.DeviceGroup.get_all_preferred_activeResponse">
449
+ <part name="return" type="tns:Common.BooleanSequence"/>
450
+ </message>
451
+
452
+ <message name="Management.DeviceGroup.set_full_load_on_sync_stateRequest">
453
+ <part name="device_groups" type="tns:Common.StringSequence"/>
454
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
455
+ </message>
456
+ <message name="Management.DeviceGroup.set_full_load_on_sync_stateResponse">
457
+ </message>
458
+
459
+ <message name="Management.DeviceGroup.get_full_load_on_sync_stateRequest">
460
+ <part name="device_groups" type="tns:Common.StringSequence"/>
461
+ </message>
462
+ <message name="Management.DeviceGroup.get_full_load_on_sync_stateResponse">
463
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
464
+ </message>
465
+
466
+ <message name="Management.DeviceGroup.set_incremental_config_sync_size_maximumRequest">
467
+ <part name="device_groups" type="tns:Common.StringSequence"/>
468
+ <part name="values" type="tns:Common.ULongSequence"/>
469
+ </message>
470
+ <message name="Management.DeviceGroup.set_incremental_config_sync_size_maximumResponse">
471
+ </message>
472
+
473
+ <message name="Management.DeviceGroup.get_incremental_config_sync_size_maximumRequest">
474
+ <part name="device_groups" type="tns:Common.StringSequence"/>
475
+ </message>
476
+ <message name="Management.DeviceGroup.get_incremental_config_sync_size_maximumResponse">
477
+ <part name="return" type="tns:Common.ULongSequence"/>
478
+ </message>
479
+
480
+ <message name="Management.DeviceGroup.get_versionRequest">
481
+ </message>
482
+ <message name="Management.DeviceGroup.get_versionResponse">
483
+ <part name="return" type="xsd:string"/>
484
+ </message>
485
+
486
+ <!-- portType -->
487
+
488
+ <portType name="Management.DeviceGroupPortType">
489
+ <operation name="get_list">
490
+ <documentation>
491
+ Gets a list of all device groups.
492
+
493
+ </documentation>
494
+ <input message="tns:Management.DeviceGroup.get_listRequest"/>
495
+ <output message="tns:Management.DeviceGroup.get_listResponse"/>
496
+ </operation>
497
+ <operation name="create">
498
+ <documentation>
499
+ Creates device groups.
500
+
501
+ </documentation>
502
+ <input message="tns:Management.DeviceGroup.createRequest"/>
503
+ <output message="tns:Management.DeviceGroup.createResponse"/>
504
+ </operation>
505
+ <operation name="delete_device_group">
506
+ <documentation>
507
+ Deletes device groups.
508
+
509
+ </documentation>
510
+ <input message="tns:Management.DeviceGroup.delete_device_groupRequest"/>
511
+ <output message="tns:Management.DeviceGroup.delete_device_groupResponse"/>
512
+ </operation>
513
+ <operation name="add_device">
514
+ <documentation>
515
+ Add devices to device groups.
516
+
517
+ </documentation>
518
+ <input message="tns:Management.DeviceGroup.add_deviceRequest"/>
519
+ <output message="tns:Management.DeviceGroup.add_deviceResponse"/>
520
+ </operation>
521
+ <operation name="remove_device">
522
+ <documentation>
523
+ Remove devices from device groups.
524
+
525
+ </documentation>
526
+ <input message="tns:Management.DeviceGroup.remove_deviceRequest"/>
527
+ <output message="tns:Management.DeviceGroup.remove_deviceResponse"/>
528
+ </operation>
529
+ <operation name="remove_all_devices">
530
+ <documentation>
531
+ Remove all devices from device groups.
532
+
533
+ </documentation>
534
+ <input message="tns:Management.DeviceGroup.remove_all_devicesRequest"/>
535
+ <output message="tns:Management.DeviceGroup.remove_all_devicesResponse"/>
536
+ </operation>
537
+ <operation name="get_device">
538
+ <documentation>
539
+ Get devices from device groups.
540
+
541
+ </documentation>
542
+ <input message="tns:Management.DeviceGroup.get_deviceRequest"/>
543
+ <output message="tns:Management.DeviceGroup.get_deviceResponse"/>
544
+ </operation>
545
+ <operation name="set_network_failover_enabled_state">
546
+ <documentation>
547
+ Sets the state of network failover for the device groups.
548
+
549
+ If set, allows failover daemon to communicate with the devices
550
+ in the device group to determine whether they are running.
551
+
552
+ </documentation>
553
+ <input message="tns:Management.DeviceGroup.set_network_failover_enabled_stateRequest"/>
554
+ <output message="tns:Management.DeviceGroup.set_network_failover_enabled_stateResponse"/>
555
+ </operation>
556
+ <operation name="get_network_failover_enabled_state">
557
+ <documentation>
558
+ Gets the state of network failover for the device groups.
559
+
560
+ </documentation>
561
+ <input message="tns:Management.DeviceGroup.get_network_failover_enabled_stateRequest"/>
562
+ <output message="tns:Management.DeviceGroup.get_network_failover_enabled_stateResponse"/>
563
+ </operation>
564
+ <operation name="get_autosync_enabled_state">
565
+ <documentation>
566
+ Gets the state of autosync for the device groups.
567
+
568
+ </documentation>
569
+ <input message="tns:Management.DeviceGroup.get_autosync_enabled_stateRequest"/>
570
+ <output message="tns:Management.DeviceGroup.get_autosync_enabled_stateResponse"/>
571
+ </operation>
572
+ <operation name="set_autosync_enabled_state">
573
+ <documentation>
574
+ Sets the state of autosync for the device groups.
575
+
576
+ If set, allows automatic synchronization between the devices
577
+ in the device group.
578
+
579
+ </documentation>
580
+ <input message="tns:Management.DeviceGroup.set_autosync_enabled_stateRequest"/>
581
+ <output message="tns:Management.DeviceGroup.set_autosync_enabled_stateResponse"/>
582
+ </operation>
583
+ <operation name="get_type">
584
+ <documentation>
585
+ Gets the type of device group.
586
+
587
+ </documentation>
588
+ <input message="tns:Management.DeviceGroup.get_typeRequest"/>
589
+ <output message="tns:Management.DeviceGroup.get_typeResponse"/>
590
+ </operation>
591
+ <operation name="set_description">
592
+ <documentation>
593
+ Sets the descriptions for the device groups.
594
+
595
+ </documentation>
596
+ <input message="tns:Management.DeviceGroup.set_descriptionRequest"/>
597
+ <output message="tns:Management.DeviceGroup.set_descriptionResponse"/>
598
+ </operation>
599
+ <operation name="get_description">
600
+ <documentation>
601
+ Gets the descriptions of the device groups.
602
+
603
+ </documentation>
604
+ <input message="tns:Management.DeviceGroup.get_descriptionRequest"/>
605
+ <output message="tns:Management.DeviceGroup.get_descriptionResponse"/>
606
+ </operation>
607
+ <operation name="get_failover_status">
608
+ <documentation>
609
+ Gets the failover status of the system.
610
+
611
+ This shows whether this device is active on any traffic groups
612
+ (that is, currently handling traffic for them) or standby (ready
613
+ to handle traffic if the active device fails over).
614
+
615
+ </documentation>
616
+ <input message="tns:Management.DeviceGroup.get_failover_statusRequest"/>
617
+ <output message="tns:Management.DeviceGroup.get_failover_statusResponse"/>
618
+ </operation>
619
+ <operation name="get_sync_status_overview">
620
+ <documentation>
621
+ Gets the sync status of the system.
622
+
623
+ This gets the status of the current device's presence in all
624
+ device groups in which it is a member. If there is a
625
+ communication problem with any device group, then this method
626
+ will note it. Use the get_sync_status method in this interface
627
+ to get information about connectivity and sync status for a
628
+ particular device group.
629
+
630
+ </documentation>
631
+ <input message="tns:Management.DeviceGroup.get_sync_status_overviewRequest"/>
632
+ <output message="tns:Management.DeviceGroup.get_sync_status_overviewResponse"/>
633
+ </operation>
634
+ <operation name="get_sync_status">
635
+ <documentation>
636
+ Gets the sync status of the specified device groups.
637
+
638
+ </documentation>
639
+ <input message="tns:Management.DeviceGroup.get_sync_statusRequest"/>
640
+ <output message="tns:Management.DeviceGroup.get_sync_statusResponse"/>
641
+ </operation>
642
+ <operation name="get_device_sync_status">
643
+ <documentation>
644
+ Gets the sync status of the specified members in the specified
645
+ device groups.
646
+
647
+ </documentation>
648
+ <input message="tns:Management.DeviceGroup.get_device_sync_statusRequest"/>
649
+ <output message="tns:Management.DeviceGroup.get_device_sync_statusResponse"/>
650
+ </operation>
651
+ <operation name="get_all_preferred_active">
652
+ <documentation>
653
+ Gets the "all preferred active" flag for each device group.
654
+
655
+ </documentation>
656
+ <input message="tns:Management.DeviceGroup.get_all_preferred_activeRequest"/>
657
+ <output message="tns:Management.DeviceGroup.get_all_preferred_activeResponse"/>
658
+ </operation>
659
+ <operation name="set_full_load_on_sync_state">
660
+ <documentation>
661
+ Sets the full load on sync states for each device group. When
662
+ enabled, device group members will perform a full load when
663
+ synchronizing a configuration. When disabled, device group members
664
+ will attempt incremental configuration synchronization and will automatically
665
+ fall back to a full load when incremental configuration
666
+ synchronization fails.
667
+
668
+ </documentation>
669
+ <input message="tns:Management.DeviceGroup.set_full_load_on_sync_stateRequest"/>
670
+ <output message="tns:Management.DeviceGroup.set_full_load_on_sync_stateResponse"/>
671
+ </operation>
672
+ <operation name="get_full_load_on_sync_state">
673
+ <documentation>
674
+ Gets the full load on sync states for each device group.
675
+
676
+ </documentation>
677
+ <input message="tns:Management.DeviceGroup.get_full_load_on_sync_stateRequest"/>
678
+ <output message="tns:Management.DeviceGroup.get_full_load_on_sync_stateResponse"/>
679
+ </operation>
680
+ <operation name="set_incremental_config_sync_size_maximum">
681
+ <documentation>
682
+ Sets the maximum number of kilobytes the system will devote to caching
683
+ transactions for the specified device groups for incremental config sync.
684
+
685
+ Users who make large changes to the configuration, or multiple changes to the configuration
686
+ before synchronizing, may benefit from a larger value.
687
+
688
+ The default value is 1024 KB.
689
+
690
+ </documentation>
691
+ <input message="tns:Management.DeviceGroup.set_incremental_config_sync_size_maximumRequest"/>
692
+ <output message="tns:Management.DeviceGroup.set_incremental_config_sync_size_maximumResponse"/>
693
+ </operation>
694
+ <operation name="get_incremental_config_sync_size_maximum">
695
+ <documentation>
696
+ Gets the maximum number of kilobytes the system will devote to caching
697
+ transactions for the specified device groups for incremental config sync.
698
+
699
+ </documentation>
700
+ <input message="tns:Management.DeviceGroup.get_incremental_config_sync_size_maximumRequest"/>
701
+ <output message="tns:Management.DeviceGroup.get_incremental_config_sync_size_maximumResponse"/>
702
+ </operation>
703
+ <operation name="get_version">
704
+ <documentation>
705
+ Gets the interface version
706
+
707
+ </documentation>
708
+ <input message="tns:Management.DeviceGroup.get_versionRequest"/>
709
+ <output message="tns:Management.DeviceGroup.get_versionResponse"/>
710
+ </operation>
711
+ </portType>
712
+
713
+ <!-- binding -->
714
+
715
+ <binding name="Management.DeviceGroupBinding" type="tns:Management.DeviceGroupPortType">
716
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
717
+ <operation name="get_list">
718
+ <documentation>
719
+ Gets a list of all device groups.
720
+
721
+ </documentation>
722
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
723
+ <input>
724
+ <soap:body
725
+ use="encoded"
726
+ namespace="urn:iControl:Management/DeviceGroup"
727
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
728
+ </input>
729
+ <output>
730
+ <soap:body
731
+ use="encoded"
732
+ namespace="urn:iControl:Management/DeviceGroup"
733
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
734
+ </output>
735
+ </operation>
736
+
737
+ <operation name="create">
738
+ <documentation>
739
+ Creates device groups.
740
+
741
+ </documentation>
742
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
743
+ <input>
744
+ <soap:body
745
+ use="encoded"
746
+ namespace="urn:iControl:Management/DeviceGroup"
747
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
748
+ </input>
749
+ <output>
750
+ <soap:body
751
+ use="encoded"
752
+ namespace="urn:iControl:Management/DeviceGroup"
753
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
754
+ </output>
755
+ </operation>
756
+
757
+ <operation name="delete_device_group">
758
+ <documentation>
759
+ Deletes device groups.
760
+
761
+ </documentation>
762
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
763
+ <input>
764
+ <soap:body
765
+ use="encoded"
766
+ namespace="urn:iControl:Management/DeviceGroup"
767
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
768
+ </input>
769
+ <output>
770
+ <soap:body
771
+ use="encoded"
772
+ namespace="urn:iControl:Management/DeviceGroup"
773
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
774
+ </output>
775
+ </operation>
776
+
777
+ <operation name="add_device">
778
+ <documentation>
779
+ Add devices to device groups.
780
+
781
+ </documentation>
782
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
783
+ <input>
784
+ <soap:body
785
+ use="encoded"
786
+ namespace="urn:iControl:Management/DeviceGroup"
787
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
788
+ </input>
789
+ <output>
790
+ <soap:body
791
+ use="encoded"
792
+ namespace="urn:iControl:Management/DeviceGroup"
793
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
794
+ </output>
795
+ </operation>
796
+
797
+ <operation name="remove_device">
798
+ <documentation>
799
+ Remove devices from device groups.
800
+
801
+ </documentation>
802
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
803
+ <input>
804
+ <soap:body
805
+ use="encoded"
806
+ namespace="urn:iControl:Management/DeviceGroup"
807
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
808
+ </input>
809
+ <output>
810
+ <soap:body
811
+ use="encoded"
812
+ namespace="urn:iControl:Management/DeviceGroup"
813
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
814
+ </output>
815
+ </operation>
816
+
817
+ <operation name="remove_all_devices">
818
+ <documentation>
819
+ Remove all devices from device groups.
820
+
821
+ </documentation>
822
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
823
+ <input>
824
+ <soap:body
825
+ use="encoded"
826
+ namespace="urn:iControl:Management/DeviceGroup"
827
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
828
+ </input>
829
+ <output>
830
+ <soap:body
831
+ use="encoded"
832
+ namespace="urn:iControl:Management/DeviceGroup"
833
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
834
+ </output>
835
+ </operation>
836
+
837
+ <operation name="get_device">
838
+ <documentation>
839
+ Get devices from device groups.
840
+
841
+ </documentation>
842
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
843
+ <input>
844
+ <soap:body
845
+ use="encoded"
846
+ namespace="urn:iControl:Management/DeviceGroup"
847
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
848
+ </input>
849
+ <output>
850
+ <soap:body
851
+ use="encoded"
852
+ namespace="urn:iControl:Management/DeviceGroup"
853
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
854
+ </output>
855
+ </operation>
856
+
857
+ <operation name="set_network_failover_enabled_state">
858
+ <documentation>
859
+ Sets the state of network failover for the device groups.
860
+
861
+ If set, allows failover daemon to communicate with the devices
862
+ in the device group to determine whether they are running.
863
+
864
+ </documentation>
865
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
866
+ <input>
867
+ <soap:body
868
+ use="encoded"
869
+ namespace="urn:iControl:Management/DeviceGroup"
870
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
871
+ </input>
872
+ <output>
873
+ <soap:body
874
+ use="encoded"
875
+ namespace="urn:iControl:Management/DeviceGroup"
876
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
877
+ </output>
878
+ </operation>
879
+
880
+ <operation name="get_network_failover_enabled_state">
881
+ <documentation>
882
+ Gets the state of network failover for the device groups.
883
+
884
+ </documentation>
885
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
886
+ <input>
887
+ <soap:body
888
+ use="encoded"
889
+ namespace="urn:iControl:Management/DeviceGroup"
890
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
891
+ </input>
892
+ <output>
893
+ <soap:body
894
+ use="encoded"
895
+ namespace="urn:iControl:Management/DeviceGroup"
896
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
897
+ </output>
898
+ </operation>
899
+
900
+ <operation name="get_autosync_enabled_state">
901
+ <documentation>
902
+ Gets the state of autosync for the device groups.
903
+
904
+ </documentation>
905
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
906
+ <input>
907
+ <soap:body
908
+ use="encoded"
909
+ namespace="urn:iControl:Management/DeviceGroup"
910
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
911
+ </input>
912
+ <output>
913
+ <soap:body
914
+ use="encoded"
915
+ namespace="urn:iControl:Management/DeviceGroup"
916
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
917
+ </output>
918
+ </operation>
919
+
920
+ <operation name="set_autosync_enabled_state">
921
+ <documentation>
922
+ Sets the state of autosync for the device groups.
923
+
924
+ If set, allows automatic synchronization between the devices
925
+ in the device group.
926
+
927
+ </documentation>
928
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
929
+ <input>
930
+ <soap:body
931
+ use="encoded"
932
+ namespace="urn:iControl:Management/DeviceGroup"
933
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
934
+ </input>
935
+ <output>
936
+ <soap:body
937
+ use="encoded"
938
+ namespace="urn:iControl:Management/DeviceGroup"
939
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
940
+ </output>
941
+ </operation>
942
+
943
+ <operation name="get_type">
944
+ <documentation>
945
+ Gets the type of device group.
946
+
947
+ </documentation>
948
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
949
+ <input>
950
+ <soap:body
951
+ use="encoded"
952
+ namespace="urn:iControl:Management/DeviceGroup"
953
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
954
+ </input>
955
+ <output>
956
+ <soap:body
957
+ use="encoded"
958
+ namespace="urn:iControl:Management/DeviceGroup"
959
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
960
+ </output>
961
+ </operation>
962
+
963
+ <operation name="set_description">
964
+ <documentation>
965
+ Sets the descriptions for the device groups.
966
+
967
+ </documentation>
968
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
969
+ <input>
970
+ <soap:body
971
+ use="encoded"
972
+ namespace="urn:iControl:Management/DeviceGroup"
973
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
974
+ </input>
975
+ <output>
976
+ <soap:body
977
+ use="encoded"
978
+ namespace="urn:iControl:Management/DeviceGroup"
979
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
980
+ </output>
981
+ </operation>
982
+
983
+ <operation name="get_description">
984
+ <documentation>
985
+ Gets the descriptions of the device groups.
986
+
987
+ </documentation>
988
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
989
+ <input>
990
+ <soap:body
991
+ use="encoded"
992
+ namespace="urn:iControl:Management/DeviceGroup"
993
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
994
+ </input>
995
+ <output>
996
+ <soap:body
997
+ use="encoded"
998
+ namespace="urn:iControl:Management/DeviceGroup"
999
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1000
+ </output>
1001
+ </operation>
1002
+
1003
+ <operation name="get_failover_status">
1004
+ <documentation>
1005
+ Gets the failover status of the system.
1006
+
1007
+ This shows whether this device is active on any traffic groups
1008
+ (that is, currently handling traffic for them) or standby (ready
1009
+ to handle traffic if the active device fails over).
1010
+
1011
+ </documentation>
1012
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
1013
+ <input>
1014
+ <soap:body
1015
+ use="encoded"
1016
+ namespace="urn:iControl:Management/DeviceGroup"
1017
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1018
+ </input>
1019
+ <output>
1020
+ <soap:body
1021
+ use="encoded"
1022
+ namespace="urn:iControl:Management/DeviceGroup"
1023
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1024
+ </output>
1025
+ </operation>
1026
+
1027
+ <operation name="get_sync_status_overview">
1028
+ <documentation>
1029
+ Gets the sync status of the system.
1030
+
1031
+ This gets the status of the current device's presence in all
1032
+ device groups in which it is a member. If there is a
1033
+ communication problem with any device group, then this method
1034
+ will note it. Use the get_sync_status method in this interface
1035
+ to get information about connectivity and sync status for a
1036
+ particular device group.
1037
+
1038
+ </documentation>
1039
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
1040
+ <input>
1041
+ <soap:body
1042
+ use="encoded"
1043
+ namespace="urn:iControl:Management/DeviceGroup"
1044
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1045
+ </input>
1046
+ <output>
1047
+ <soap:body
1048
+ use="encoded"
1049
+ namespace="urn:iControl:Management/DeviceGroup"
1050
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1051
+ </output>
1052
+ </operation>
1053
+
1054
+ <operation name="get_sync_status">
1055
+ <documentation>
1056
+ Gets the sync status of the specified device groups.
1057
+
1058
+ </documentation>
1059
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
1060
+ <input>
1061
+ <soap:body
1062
+ use="encoded"
1063
+ namespace="urn:iControl:Management/DeviceGroup"
1064
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1065
+ </input>
1066
+ <output>
1067
+ <soap:body
1068
+ use="encoded"
1069
+ namespace="urn:iControl:Management/DeviceGroup"
1070
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1071
+ </output>
1072
+ </operation>
1073
+
1074
+ <operation name="get_device_sync_status">
1075
+ <documentation>
1076
+ Gets the sync status of the specified members in the specified
1077
+ device groups.
1078
+
1079
+ </documentation>
1080
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
1081
+ <input>
1082
+ <soap:body
1083
+ use="encoded"
1084
+ namespace="urn:iControl:Management/DeviceGroup"
1085
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1086
+ </input>
1087
+ <output>
1088
+ <soap:body
1089
+ use="encoded"
1090
+ namespace="urn:iControl:Management/DeviceGroup"
1091
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1092
+ </output>
1093
+ </operation>
1094
+
1095
+ <operation name="get_all_preferred_active">
1096
+ <documentation>
1097
+ Gets the "all preferred active" flag for each device group.
1098
+
1099
+ </documentation>
1100
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
1101
+ <input>
1102
+ <soap:body
1103
+ use="encoded"
1104
+ namespace="urn:iControl:Management/DeviceGroup"
1105
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1106
+ </input>
1107
+ <output>
1108
+ <soap:body
1109
+ use="encoded"
1110
+ namespace="urn:iControl:Management/DeviceGroup"
1111
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1112
+ </output>
1113
+ </operation>
1114
+
1115
+ <operation name="set_full_load_on_sync_state">
1116
+ <documentation>
1117
+ Sets the full load on sync states for each device group. When
1118
+ enabled, device group members will perform a full load when
1119
+ synchronizing a configuration. When disabled, device group members
1120
+ will attempt incremental configuration synchronization and will automatically
1121
+ fall back to a full load when incremental configuration
1122
+ synchronization fails.
1123
+
1124
+ </documentation>
1125
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
1126
+ <input>
1127
+ <soap:body
1128
+ use="encoded"
1129
+ namespace="urn:iControl:Management/DeviceGroup"
1130
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1131
+ </input>
1132
+ <output>
1133
+ <soap:body
1134
+ use="encoded"
1135
+ namespace="urn:iControl:Management/DeviceGroup"
1136
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1137
+ </output>
1138
+ </operation>
1139
+
1140
+ <operation name="get_full_load_on_sync_state">
1141
+ <documentation>
1142
+ Gets the full load on sync states for each device group.
1143
+
1144
+ </documentation>
1145
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
1146
+ <input>
1147
+ <soap:body
1148
+ use="encoded"
1149
+ namespace="urn:iControl:Management/DeviceGroup"
1150
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1151
+ </input>
1152
+ <output>
1153
+ <soap:body
1154
+ use="encoded"
1155
+ namespace="urn:iControl:Management/DeviceGroup"
1156
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1157
+ </output>
1158
+ </operation>
1159
+
1160
+ <operation name="set_incremental_config_sync_size_maximum">
1161
+ <documentation>
1162
+ Sets the maximum number of kilobytes the system will devote to caching
1163
+ transactions for the specified device groups for incremental config sync.
1164
+
1165
+ Users who make large changes to the configuration, or multiple changes to the configuration
1166
+ before synchronizing, may benefit from a larger value.
1167
+
1168
+ The default value is 1024 KB.
1169
+
1170
+ </documentation>
1171
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
1172
+ <input>
1173
+ <soap:body
1174
+ use="encoded"
1175
+ namespace="urn:iControl:Management/DeviceGroup"
1176
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1177
+ </input>
1178
+ <output>
1179
+ <soap:body
1180
+ use="encoded"
1181
+ namespace="urn:iControl:Management/DeviceGroup"
1182
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1183
+ </output>
1184
+ </operation>
1185
+
1186
+ <operation name="get_incremental_config_sync_size_maximum">
1187
+ <documentation>
1188
+ Gets the maximum number of kilobytes the system will devote to caching
1189
+ transactions for the specified device groups for incremental config sync.
1190
+
1191
+ </documentation>
1192
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
1193
+ <input>
1194
+ <soap:body
1195
+ use="encoded"
1196
+ namespace="urn:iControl:Management/DeviceGroup"
1197
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1198
+ </input>
1199
+ <output>
1200
+ <soap:body
1201
+ use="encoded"
1202
+ namespace="urn:iControl:Management/DeviceGroup"
1203
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1204
+ </output>
1205
+ </operation>
1206
+
1207
+ <operation name="get_version">
1208
+ <documentation>
1209
+ Gets the interface version
1210
+
1211
+ </documentation>
1212
+ <soap:operation soapAction="urn:iControl:Management/DeviceGroup"/>
1213
+ <input>
1214
+ <soap:body
1215
+ use="encoded"
1216
+ namespace="urn:iControl:Management/DeviceGroup"
1217
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1218
+ </input>
1219
+ <output>
1220
+ <soap:body
1221
+ use="encoded"
1222
+ namespace="urn:iControl:Management/DeviceGroup"
1223
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1224
+ </output>
1225
+ </operation>
1226
+ </binding>
1227
+
1228
+ <!-- service -->
1229
+
1230
+ <service name="Management.DeviceGroup">
1231
+ <documentation>
1232
+ The Device Group interface contains the methods for creating and manipulating
1233
+ device groups. Device groups are collections of devices used for traffic
1234
+ management and failover.
1235
+
1236
+ </documentation>
1237
+ <port name="Management.DeviceGroupPort" binding="tns:Management.DeviceGroupBinding">
1238
+ <soap:address location="https://url_to_service"/>
1239
+ </port>
1240
+ </service>
1241
+ </definitions>