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,956 @@
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.Cluster"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:complexType name="Common.ULongSequenceSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ULongSequence[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:complexType name="Common.HAStateSequenceSequence">
32
+ <xsd:complexContent>
33
+ <xsd:restriction base='SOAP-ENC:Array'>
34
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.HAStateSequence[]'/>
35
+ </xsd:restriction>
36
+ </xsd:complexContent>
37
+ </xsd:complexType>
38
+ <xsd:simpleType name="Common.EnabledState">
39
+ <xsd:restriction base="xsd:string">
40
+ <xsd:enumeration value="STATE_DISABLED">
41
+ <xsd:annotation>
42
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
43
+ </xsd:annotation>
44
+ </xsd:enumeration>
45
+ <xsd:enumeration value="STATE_ENABLED">
46
+ <xsd:annotation>
47
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
48
+ </xsd:annotation>
49
+ </xsd:enumeration>
50
+ </xsd:restriction>
51
+ </xsd:simpleType>
52
+ <xsd:complexType name="Common.StringSequence">
53
+ <xsd:complexContent>
54
+ <xsd:restriction base='SOAP-ENC:Array'>
55
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
56
+ </xsd:restriction>
57
+ </xsd:complexContent>
58
+ </xsd:complexType>
59
+ <xsd:complexType name="Common.ULongSequence">
60
+ <xsd:complexContent>
61
+ <xsd:restriction base='SOAP-ENC:Array'>
62
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
63
+ </xsd:restriction>
64
+ </xsd:complexContent>
65
+ </xsd:complexType>
66
+ <xsd:simpleType name="Common.HAState">
67
+ <xsd:restriction base="xsd:string">
68
+ <xsd:enumeration value="HA_STATE_OFFLINE">
69
+ <xsd:annotation>
70
+ <xsd:documentation>HA_STATE_OFFLINE</xsd:documentation>
71
+ </xsd:annotation>
72
+ </xsd:enumeration>
73
+ <xsd:enumeration value="HA_STATE_FORCED_OFFLINE">
74
+ <xsd:annotation>
75
+ <xsd:documentation>HA_STATE_FORCED_OFFLINE</xsd:documentation>
76
+ </xsd:annotation>
77
+ </xsd:enumeration>
78
+ <xsd:enumeration value="HA_STATE_STANDBY">
79
+ <xsd:annotation>
80
+ <xsd:documentation>HA_STATE_STANDBY</xsd:documentation>
81
+ </xsd:annotation>
82
+ </xsd:enumeration>
83
+ <xsd:enumeration value="HA_STATE_ACTIVE">
84
+ <xsd:annotation>
85
+ <xsd:documentation>HA_STATE_ACTIVE</xsd:documentation>
86
+ </xsd:annotation>
87
+ </xsd:enumeration>
88
+ <xsd:enumeration value="HA_STATE_UNKNOWN">
89
+ <xsd:annotation>
90
+ <xsd:documentation>HA_STATE_UNKNOWN</xsd:documentation>
91
+ </xsd:annotation>
92
+ </xsd:enumeration>
93
+ </xsd:restriction>
94
+ </xsd:simpleType>
95
+ <xsd:simpleType name="Common.HAAction">
96
+ <xsd:restriction base="xsd:string">
97
+ <xsd:enumeration value="HA_ACTION_NONE">
98
+ <xsd:annotation>
99
+ <xsd:documentation>HA_ACTION_NONE</xsd:documentation>
100
+ </xsd:annotation>
101
+ </xsd:enumeration>
102
+ <xsd:enumeration value="HA_ACTION_REBOOT">
103
+ <xsd:annotation>
104
+ <xsd:documentation>HA_ACTION_REBOOT</xsd:documentation>
105
+ </xsd:annotation>
106
+ </xsd:enumeration>
107
+ <xsd:enumeration value="HA_ACTION_RESTART">
108
+ <xsd:annotation>
109
+ <xsd:documentation>HA_ACTION_RESTART</xsd:documentation>
110
+ </xsd:annotation>
111
+ </xsd:enumeration>
112
+ <xsd:enumeration value="HA_ACTION_FAILOVER">
113
+ <xsd:annotation>
114
+ <xsd:documentation>HA_ACTION_FAILOVER</xsd:documentation>
115
+ </xsd:annotation>
116
+ </xsd:enumeration>
117
+ <xsd:enumeration value="HA_ACTION_FAILOVER_RESTART">
118
+ <xsd:annotation>
119
+ <xsd:documentation>HA_ACTION_FAILOVER_RESTART</xsd:documentation>
120
+ </xsd:annotation>
121
+ </xsd:enumeration>
122
+ <xsd:enumeration value="HA_ACTION_GO_ACTIVE">
123
+ <xsd:annotation>
124
+ <xsd:documentation>HA_ACTION_GO_ACTIVE</xsd:documentation>
125
+ </xsd:annotation>
126
+ </xsd:enumeration>
127
+ <xsd:enumeration value="HA_ACTION_RESTART_ALL">
128
+ <xsd:annotation>
129
+ <xsd:documentation>HA_ACTION_RESTART_ALL</xsd:documentation>
130
+ </xsd:annotation>
131
+ </xsd:enumeration>
132
+ <xsd:enumeration value="HA_ACTION_FAILOVER_ABORT_TRAFFIC_MGT">
133
+ <xsd:annotation>
134
+ <xsd:documentation>HA_ACTION_FAILOVER_ABORT_TRAFFIC_MGT</xsd:documentation>
135
+ </xsd:annotation>
136
+ </xsd:enumeration>
137
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE">
138
+ <xsd:annotation>
139
+ <xsd:documentation>HA_ACTION_GO_OFFLINE</xsd:documentation>
140
+ </xsd:annotation>
141
+ </xsd:enumeration>
142
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE_RESTART">
143
+ <xsd:annotation>
144
+ <xsd:documentation>HA_ACTION_GO_OFFLINE_RESTART</xsd:documentation>
145
+ </xsd:annotation>
146
+ </xsd:enumeration>
147
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE_ABORT_TM">
148
+ <xsd:annotation>
149
+ <xsd:documentation>HA_ACTION_GO_OFFLINE_ABORT_TM</xsd:documentation>
150
+ </xsd:annotation>
151
+ </xsd:enumeration>
152
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE_DOWNLINKS">
153
+ <xsd:annotation>
154
+ <xsd:documentation>HA_ACTION_GO_OFFLINE_DOWNLINKS</xsd:documentation>
155
+ </xsd:annotation>
156
+ </xsd:enumeration>
157
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE_DOWNLINKS_RESTART">
158
+ <xsd:annotation>
159
+ <xsd:documentation>HA_ACTION_GO_OFFLINE_DOWNLINKS_RESTART</xsd:documentation>
160
+ </xsd:annotation>
161
+ </xsd:enumeration>
162
+ </xsd:restriction>
163
+ </xsd:simpleType>
164
+ <xsd:complexType name="Common.HAActionSequence">
165
+ <xsd:complexContent>
166
+ <xsd:restriction base='SOAP-ENC:Array'>
167
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.HAAction[]'/>
168
+ </xsd:restriction>
169
+ </xsd:complexContent>
170
+ </xsd:complexType>
171
+ <xsd:complexType name="Common.HAStateSequence">
172
+ <xsd:complexContent>
173
+ <xsd:restriction base='SOAP-ENC:Array'>
174
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.HAState[]'/>
175
+ </xsd:restriction>
176
+ </xsd:complexContent>
177
+ </xsd:complexType>
178
+ <xsd:complexType name="Common.EnabledStateSequenceSequence">
179
+ <xsd:complexContent>
180
+ <xsd:restriction base='SOAP-ENC:Array'>
181
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledStateSequence[]'/>
182
+ </xsd:restriction>
183
+ </xsd:complexContent>
184
+ </xsd:complexType>
185
+ <xsd:complexType name="Common.EnabledStateSequence">
186
+ <xsd:complexContent>
187
+ <xsd:restriction base='SOAP-ENC:Array'>
188
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
189
+ </xsd:restriction>
190
+ </xsd:complexContent>
191
+ </xsd:complexType>
192
+ </xsd:schema>
193
+ </types>
194
+
195
+ <!-- message -->
196
+
197
+ <message name="System.Cluster.is_clustered_environmentRequest">
198
+ </message>
199
+ <message name="System.Cluster.is_clustered_environmentResponse">
200
+ <part name="return" type="xsd:boolean"/>
201
+ </message>
202
+
203
+ <message name="System.Cluster.get_listRequest">
204
+ </message>
205
+ <message name="System.Cluster.get_listResponse">
206
+ <part name="return" type="tns:Common.StringSequence"/>
207
+ </message>
208
+
209
+ <message name="System.Cluster.get_slot_idRequest">
210
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
211
+ </message>
212
+ <message name="System.Cluster.get_slot_idResponse">
213
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
214
+ </message>
215
+
216
+ <message name="System.Cluster.get_current_primary_slotRequest">
217
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
218
+ </message>
219
+ <message name="System.Cluster.get_current_primary_slotResponse">
220
+ <part name="return" type="tns:Common.ULongSequence"/>
221
+ </message>
222
+
223
+ <message name="System.Cluster.set_current_primary_slotRequest">
224
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
225
+ <part name="primary_slots" type="tns:Common.ULongSequence"/>
226
+ </message>
227
+ <message name="System.Cluster.set_current_primary_slotResponse">
228
+ </message>
229
+
230
+ <message name="System.Cluster.get_cluster_enabled_stateRequest">
231
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
232
+ </message>
233
+ <message name="System.Cluster.get_cluster_enabled_stateResponse">
234
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
235
+ </message>
236
+
237
+ <message name="System.Cluster.set_cluster_enabled_stateRequest">
238
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
239
+ <part name="cluster_states" type="tns:Common.EnabledStateSequence"/>
240
+ </message>
241
+ <message name="System.Cluster.set_cluster_enabled_stateResponse">
242
+ </message>
243
+
244
+ <message name="System.Cluster.get_min_up_members_stateRequest">
245
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
246
+ </message>
247
+ <message name="System.Cluster.get_min_up_members_stateResponse">
248
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
249
+ </message>
250
+
251
+ <message name="System.Cluster.set_min_up_members_stateRequest">
252
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
253
+ <part name="min_up_states" type="tns:Common.EnabledStateSequence"/>
254
+ </message>
255
+ <message name="System.Cluster.set_min_up_members_stateResponse">
256
+ </message>
257
+
258
+ <message name="System.Cluster.get_min_up_members_actionRequest">
259
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
260
+ </message>
261
+ <message name="System.Cluster.get_min_up_members_actionResponse">
262
+ <part name="return" type="tns:Common.HAActionSequence"/>
263
+ </message>
264
+
265
+ <message name="System.Cluster.set_min_up_members_actionRequest">
266
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
267
+ <part name="min_up_actions" type="tns:Common.HAActionSequence"/>
268
+ </message>
269
+ <message name="System.Cluster.set_min_up_members_actionResponse">
270
+ </message>
271
+
272
+ <message name="System.Cluster.get_min_up_membersRequest">
273
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
274
+ </message>
275
+ <message name="System.Cluster.get_min_up_membersResponse">
276
+ <part name="return" type="tns:Common.ULongSequence"/>
277
+ </message>
278
+
279
+ <message name="System.Cluster.set_min_up_membersRequest">
280
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
281
+ <part name="min_up_members" type="tns:Common.ULongSequence"/>
282
+ </message>
283
+ <message name="System.Cluster.set_min_up_membersResponse">
284
+ </message>
285
+
286
+ <message name="System.Cluster.get_cluster_ha_stateRequest">
287
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
288
+ </message>
289
+ <message name="System.Cluster.get_cluster_ha_stateResponse">
290
+ <part name="return" type="tns:Common.HAStateSequence"/>
291
+ </message>
292
+
293
+ <message name="System.Cluster.get_member_enabled_stateRequest">
294
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
295
+ <part name="slot_ids" type="tns:Common.ULongSequenceSequence"/>
296
+ </message>
297
+ <message name="System.Cluster.get_member_enabled_stateResponse">
298
+ <part name="return" type="tns:Common.EnabledStateSequenceSequence"/>
299
+ </message>
300
+
301
+ <message name="System.Cluster.set_member_enabled_stateRequest">
302
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
303
+ <part name="slot_ids" type="tns:Common.ULongSequenceSequence"/>
304
+ <part name="member_states" type="tns:Common.EnabledStateSequenceSequence"/>
305
+ </message>
306
+ <message name="System.Cluster.set_member_enabled_stateResponse">
307
+ </message>
308
+
309
+ <message name="System.Cluster.get_member_licensed_stateRequest">
310
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
311
+ <part name="slot_ids" type="tns:Common.ULongSequenceSequence"/>
312
+ </message>
313
+ <message name="System.Cluster.get_member_licensed_stateResponse">
314
+ <part name="return" type="tns:Common.EnabledStateSequenceSequence"/>
315
+ </message>
316
+
317
+ <message name="System.Cluster.get_member_ha_stateRequest">
318
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
319
+ <part name="slot_ids" type="tns:Common.ULongSequenceSequence"/>
320
+ </message>
321
+ <message name="System.Cluster.get_member_ha_stateResponse">
322
+ <part name="return" type="tns:Common.HAStateSequenceSequence"/>
323
+ </message>
324
+
325
+ <message name="System.Cluster.get_member_priming_stateRequest">
326
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
327
+ <part name="slot_ids" type="tns:Common.ULongSequenceSequence"/>
328
+ </message>
329
+ <message name="System.Cluster.get_member_priming_stateResponse">
330
+ <part name="return" type="tns:Common.EnabledStateSequenceSequence"/>
331
+ </message>
332
+
333
+ <message name="System.Cluster.set_member_priming_stateRequest">
334
+ <part name="cluster_names" type="tns:Common.StringSequence"/>
335
+ <part name="slot_ids" type="tns:Common.ULongSequenceSequence"/>
336
+ <part name="priming_states" type="tns:Common.EnabledStateSequenceSequence"/>
337
+ </message>
338
+ <message name="System.Cluster.set_member_priming_stateResponse">
339
+ </message>
340
+
341
+ <message name="System.Cluster.get_versionRequest">
342
+ </message>
343
+ <message name="System.Cluster.get_versionResponse">
344
+ <part name="return" type="xsd:string"/>
345
+ </message>
346
+
347
+ <!-- portType -->
348
+
349
+ <portType name="System.ClusterPortType">
350
+ <operation name="is_clustered_environment">
351
+ <documentation>
352
+ Checks to see whether the system is a clustered environment.
353
+
354
+ </documentation>
355
+ <input message="tns:System.Cluster.is_clustered_environmentRequest"/>
356
+ <output message="tns:System.Cluster.is_clustered_environmentResponse"/>
357
+ </operation>
358
+ <operation name="get_list">
359
+ <documentation>
360
+ Gets a list of the cluster names.
361
+
362
+ </documentation>
363
+ <input message="tns:System.Cluster.get_listRequest"/>
364
+ <output message="tns:System.Cluster.get_listResponse"/>
365
+ </operation>
366
+ <operation name="get_slot_id">
367
+ <documentation>
368
+ Get a list of list of slot ids (the size of each list is the number of slots).
369
+
370
+ </documentation>
371
+ <input message="tns:System.Cluster.get_slot_idRequest"/>
372
+ <output message="tns:System.Cluster.get_slot_idResponse"/>
373
+ </operation>
374
+ <operation name="get_current_primary_slot">
375
+ <documentation>
376
+ Gets the primary slot numbers.
377
+
378
+ </documentation>
379
+ <input message="tns:System.Cluster.get_current_primary_slotRequest"/>
380
+ <output message="tns:System.Cluster.get_current_primary_slotResponse"/>
381
+ </operation>
382
+ <operation name="set_current_primary_slot">
383
+ <documentation>
384
+ Currently this is not implemented.
385
+
386
+ </documentation>
387
+ <input message="tns:System.Cluster.set_current_primary_slotRequest"/>
388
+ <output message="tns:System.Cluster.set_current_primary_slotResponse"/>
389
+ </operation>
390
+ <operation name="get_cluster_enabled_state">
391
+ <documentation>
392
+ Gets the cluster enabled states.
393
+
394
+ </documentation>
395
+ <input message="tns:System.Cluster.get_cluster_enabled_stateRequest"/>
396
+ <output message="tns:System.Cluster.get_cluster_enabled_stateResponse"/>
397
+ </operation>
398
+ <operation name="set_cluster_enabled_state">
399
+ <documentation>
400
+ Sets the cluster enabled states.
401
+
402
+ </documentation>
403
+ <input message="tns:System.Cluster.set_cluster_enabled_stateRequest"/>
404
+ <output message="tns:System.Cluster.set_cluster_enabled_stateResponse"/>
405
+ </operation>
406
+ <operation name="get_min_up_members_state">
407
+ <documentation>
408
+ Gets the cluster minimum up members enabled states.
409
+
410
+ </documentation>
411
+ <input message="tns:System.Cluster.get_min_up_members_stateRequest"/>
412
+ <output message="tns:System.Cluster.get_min_up_members_stateResponse"/>
413
+ </operation>
414
+ <operation name="set_min_up_members_state">
415
+ <documentation>
416
+ Sets the cluster minimum up members enabled states.
417
+
418
+ </documentation>
419
+ <input message="tns:System.Cluster.set_min_up_members_stateRequest"/>
420
+ <output message="tns:System.Cluster.set_min_up_members_stateResponse"/>
421
+ </operation>
422
+ <operation name="get_min_up_members_action">
423
+ <documentation>
424
+ Gets the cluster minimum up members actions.
425
+
426
+ </documentation>
427
+ <input message="tns:System.Cluster.get_min_up_members_actionRequest"/>
428
+ <output message="tns:System.Cluster.get_min_up_members_actionResponse"/>
429
+ </operation>
430
+ <operation name="set_min_up_members_action">
431
+ <documentation>
432
+ Sets the cluster minimum up members actions.
433
+
434
+ </documentation>
435
+ <input message="tns:System.Cluster.set_min_up_members_actionRequest"/>
436
+ <output message="tns:System.Cluster.set_min_up_members_actionResponse"/>
437
+ </operation>
438
+ <operation name="get_min_up_members">
439
+ <documentation>
440
+ Gets the minimum up members values.
441
+
442
+ </documentation>
443
+ <input message="tns:System.Cluster.get_min_up_membersRequest"/>
444
+ <output message="tns:System.Cluster.get_min_up_membersResponse"/>
445
+ </operation>
446
+ <operation name="set_min_up_members">
447
+ <documentation>
448
+ Sets the minimum up members values.
449
+
450
+ </documentation>
451
+ <input message="tns:System.Cluster.set_min_up_membersRequest"/>
452
+ <output message="tns:System.Cluster.set_min_up_membersResponse"/>
453
+ </operation>
454
+ <operation name="get_cluster_ha_state">
455
+ <documentation>
456
+ Gets the cluster high-availability states.
457
+
458
+ </documentation>
459
+ <input message="tns:System.Cluster.get_cluster_ha_stateRequest"/>
460
+ <output message="tns:System.Cluster.get_cluster_ha_stateResponse"/>
461
+ </operation>
462
+ <operation name="get_member_enabled_state">
463
+ <documentation>
464
+ Gets the cluster member enabled states.
465
+
466
+ </documentation>
467
+ <input message="tns:System.Cluster.get_member_enabled_stateRequest"/>
468
+ <output message="tns:System.Cluster.get_member_enabled_stateResponse"/>
469
+ </operation>
470
+ <operation name="set_member_enabled_state">
471
+ <documentation>
472
+ Sets the cluster member enabled states.
473
+
474
+ </documentation>
475
+ <input message="tns:System.Cluster.set_member_enabled_stateRequest"/>
476
+ <output message="tns:System.Cluster.set_member_enabled_stateResponse"/>
477
+ </operation>
478
+ <operation name="get_member_licensed_state">
479
+ <documentation>
480
+ Gets the cluster member licensed states.
481
+
482
+ </documentation>
483
+ <input message="tns:System.Cluster.get_member_licensed_stateRequest"/>
484
+ <output message="tns:System.Cluster.get_member_licensed_stateResponse"/>
485
+ </operation>
486
+ <operation name="get_member_ha_state">
487
+ <documentation>
488
+ Gets the cluster member high-availability states.
489
+
490
+ </documentation>
491
+ <input message="tns:System.Cluster.get_member_ha_stateRequest"/>
492
+ <output message="tns:System.Cluster.get_member_ha_stateResponse"/>
493
+ </operation>
494
+ <operation name="get_member_priming_state">
495
+ <documentation>
496
+ Gets the cluster member priming states.
497
+
498
+ </documentation>
499
+ <input message="tns:System.Cluster.get_member_priming_stateRequest"/>
500
+ <output message="tns:System.Cluster.get_member_priming_stateResponse"/>
501
+ </operation>
502
+ <operation name="set_member_priming_state">
503
+ <documentation>
504
+ Sets the cluster member priming states.
505
+
506
+ </documentation>
507
+ <input message="tns:System.Cluster.set_member_priming_stateRequest"/>
508
+ <output message="tns:System.Cluster.set_member_priming_stateResponse"/>
509
+ </operation>
510
+ <operation name="get_version">
511
+ <documentation>
512
+ Gets the version information for this interface.
513
+
514
+ </documentation>
515
+ <input message="tns:System.Cluster.get_versionRequest"/>
516
+ <output message="tns:System.Cluster.get_versionResponse"/>
517
+ </operation>
518
+ </portType>
519
+
520
+ <!-- binding -->
521
+
522
+ <binding name="System.ClusterBinding" type="tns:System.ClusterPortType">
523
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
524
+ <operation name="is_clustered_environment">
525
+ <documentation>
526
+ Checks to see whether the system is a clustered environment.
527
+
528
+ </documentation>
529
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
530
+ <input>
531
+ <soap:body
532
+ use="encoded"
533
+ namespace="urn:iControl:System/Cluster"
534
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
535
+ </input>
536
+ <output>
537
+ <soap:body
538
+ use="encoded"
539
+ namespace="urn:iControl:System/Cluster"
540
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
541
+ </output>
542
+ </operation>
543
+
544
+ <operation name="get_list">
545
+ <documentation>
546
+ Gets a list of the cluster names.
547
+
548
+ </documentation>
549
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
550
+ <input>
551
+ <soap:body
552
+ use="encoded"
553
+ namespace="urn:iControl:System/Cluster"
554
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
555
+ </input>
556
+ <output>
557
+ <soap:body
558
+ use="encoded"
559
+ namespace="urn:iControl:System/Cluster"
560
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
561
+ </output>
562
+ </operation>
563
+
564
+ <operation name="get_slot_id">
565
+ <documentation>
566
+ Get a list of list of slot ids (the size of each list is the number of slots).
567
+
568
+ </documentation>
569
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
570
+ <input>
571
+ <soap:body
572
+ use="encoded"
573
+ namespace="urn:iControl:System/Cluster"
574
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
575
+ </input>
576
+ <output>
577
+ <soap:body
578
+ use="encoded"
579
+ namespace="urn:iControl:System/Cluster"
580
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
581
+ </output>
582
+ </operation>
583
+
584
+ <operation name="get_current_primary_slot">
585
+ <documentation>
586
+ Gets the primary slot numbers.
587
+
588
+ </documentation>
589
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
590
+ <input>
591
+ <soap:body
592
+ use="encoded"
593
+ namespace="urn:iControl:System/Cluster"
594
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
595
+ </input>
596
+ <output>
597
+ <soap:body
598
+ use="encoded"
599
+ namespace="urn:iControl:System/Cluster"
600
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
601
+ </output>
602
+ </operation>
603
+
604
+ <operation name="set_current_primary_slot">
605
+ <documentation>
606
+ Currently this is not implemented.
607
+
608
+ </documentation>
609
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
610
+ <input>
611
+ <soap:body
612
+ use="encoded"
613
+ namespace="urn:iControl:System/Cluster"
614
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
615
+ </input>
616
+ <output>
617
+ <soap:body
618
+ use="encoded"
619
+ namespace="urn:iControl:System/Cluster"
620
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
621
+ </output>
622
+ </operation>
623
+
624
+ <operation name="get_cluster_enabled_state">
625
+ <documentation>
626
+ Gets the cluster enabled states.
627
+
628
+ </documentation>
629
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
630
+ <input>
631
+ <soap:body
632
+ use="encoded"
633
+ namespace="urn:iControl:System/Cluster"
634
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
635
+ </input>
636
+ <output>
637
+ <soap:body
638
+ use="encoded"
639
+ namespace="urn:iControl:System/Cluster"
640
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
641
+ </output>
642
+ </operation>
643
+
644
+ <operation name="set_cluster_enabled_state">
645
+ <documentation>
646
+ Sets the cluster enabled states.
647
+
648
+ </documentation>
649
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
650
+ <input>
651
+ <soap:body
652
+ use="encoded"
653
+ namespace="urn:iControl:System/Cluster"
654
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
655
+ </input>
656
+ <output>
657
+ <soap:body
658
+ use="encoded"
659
+ namespace="urn:iControl:System/Cluster"
660
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
661
+ </output>
662
+ </operation>
663
+
664
+ <operation name="get_min_up_members_state">
665
+ <documentation>
666
+ Gets the cluster minimum up members enabled states.
667
+
668
+ </documentation>
669
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
670
+ <input>
671
+ <soap:body
672
+ use="encoded"
673
+ namespace="urn:iControl:System/Cluster"
674
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
675
+ </input>
676
+ <output>
677
+ <soap:body
678
+ use="encoded"
679
+ namespace="urn:iControl:System/Cluster"
680
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
681
+ </output>
682
+ </operation>
683
+
684
+ <operation name="set_min_up_members_state">
685
+ <documentation>
686
+ Sets the cluster minimum up members enabled states.
687
+
688
+ </documentation>
689
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
690
+ <input>
691
+ <soap:body
692
+ use="encoded"
693
+ namespace="urn:iControl:System/Cluster"
694
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
695
+ </input>
696
+ <output>
697
+ <soap:body
698
+ use="encoded"
699
+ namespace="urn:iControl:System/Cluster"
700
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
701
+ </output>
702
+ </operation>
703
+
704
+ <operation name="get_min_up_members_action">
705
+ <documentation>
706
+ Gets the cluster minimum up members actions.
707
+
708
+ </documentation>
709
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
710
+ <input>
711
+ <soap:body
712
+ use="encoded"
713
+ namespace="urn:iControl:System/Cluster"
714
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
715
+ </input>
716
+ <output>
717
+ <soap:body
718
+ use="encoded"
719
+ namespace="urn:iControl:System/Cluster"
720
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
721
+ </output>
722
+ </operation>
723
+
724
+ <operation name="set_min_up_members_action">
725
+ <documentation>
726
+ Sets the cluster minimum up members actions.
727
+
728
+ </documentation>
729
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
730
+ <input>
731
+ <soap:body
732
+ use="encoded"
733
+ namespace="urn:iControl:System/Cluster"
734
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
735
+ </input>
736
+ <output>
737
+ <soap:body
738
+ use="encoded"
739
+ namespace="urn:iControl:System/Cluster"
740
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
741
+ </output>
742
+ </operation>
743
+
744
+ <operation name="get_min_up_members">
745
+ <documentation>
746
+ Gets the minimum up members values.
747
+
748
+ </documentation>
749
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
750
+ <input>
751
+ <soap:body
752
+ use="encoded"
753
+ namespace="urn:iControl:System/Cluster"
754
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
755
+ </input>
756
+ <output>
757
+ <soap:body
758
+ use="encoded"
759
+ namespace="urn:iControl:System/Cluster"
760
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
761
+ </output>
762
+ </operation>
763
+
764
+ <operation name="set_min_up_members">
765
+ <documentation>
766
+ Sets the minimum up members values.
767
+
768
+ </documentation>
769
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
770
+ <input>
771
+ <soap:body
772
+ use="encoded"
773
+ namespace="urn:iControl:System/Cluster"
774
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
775
+ </input>
776
+ <output>
777
+ <soap:body
778
+ use="encoded"
779
+ namespace="urn:iControl:System/Cluster"
780
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
781
+ </output>
782
+ </operation>
783
+
784
+ <operation name="get_cluster_ha_state">
785
+ <documentation>
786
+ Gets the cluster high-availability states.
787
+
788
+ </documentation>
789
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
790
+ <input>
791
+ <soap:body
792
+ use="encoded"
793
+ namespace="urn:iControl:System/Cluster"
794
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
795
+ </input>
796
+ <output>
797
+ <soap:body
798
+ use="encoded"
799
+ namespace="urn:iControl:System/Cluster"
800
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
801
+ </output>
802
+ </operation>
803
+
804
+ <operation name="get_member_enabled_state">
805
+ <documentation>
806
+ Gets the cluster member enabled states.
807
+
808
+ </documentation>
809
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
810
+ <input>
811
+ <soap:body
812
+ use="encoded"
813
+ namespace="urn:iControl:System/Cluster"
814
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
815
+ </input>
816
+ <output>
817
+ <soap:body
818
+ use="encoded"
819
+ namespace="urn:iControl:System/Cluster"
820
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
821
+ </output>
822
+ </operation>
823
+
824
+ <operation name="set_member_enabled_state">
825
+ <documentation>
826
+ Sets the cluster member enabled states.
827
+
828
+ </documentation>
829
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
830
+ <input>
831
+ <soap:body
832
+ use="encoded"
833
+ namespace="urn:iControl:System/Cluster"
834
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
835
+ </input>
836
+ <output>
837
+ <soap:body
838
+ use="encoded"
839
+ namespace="urn:iControl:System/Cluster"
840
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
841
+ </output>
842
+ </operation>
843
+
844
+ <operation name="get_member_licensed_state">
845
+ <documentation>
846
+ Gets the cluster member licensed states.
847
+
848
+ </documentation>
849
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
850
+ <input>
851
+ <soap:body
852
+ use="encoded"
853
+ namespace="urn:iControl:System/Cluster"
854
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
855
+ </input>
856
+ <output>
857
+ <soap:body
858
+ use="encoded"
859
+ namespace="urn:iControl:System/Cluster"
860
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
861
+ </output>
862
+ </operation>
863
+
864
+ <operation name="get_member_ha_state">
865
+ <documentation>
866
+ Gets the cluster member high-availability states.
867
+
868
+ </documentation>
869
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
870
+ <input>
871
+ <soap:body
872
+ use="encoded"
873
+ namespace="urn:iControl:System/Cluster"
874
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
875
+ </input>
876
+ <output>
877
+ <soap:body
878
+ use="encoded"
879
+ namespace="urn:iControl:System/Cluster"
880
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
881
+ </output>
882
+ </operation>
883
+
884
+ <operation name="get_member_priming_state">
885
+ <documentation>
886
+ Gets the cluster member priming states.
887
+
888
+ </documentation>
889
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
890
+ <input>
891
+ <soap:body
892
+ use="encoded"
893
+ namespace="urn:iControl:System/Cluster"
894
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
895
+ </input>
896
+ <output>
897
+ <soap:body
898
+ use="encoded"
899
+ namespace="urn:iControl:System/Cluster"
900
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
901
+ </output>
902
+ </operation>
903
+
904
+ <operation name="set_member_priming_state">
905
+ <documentation>
906
+ Sets the cluster member priming states.
907
+
908
+ </documentation>
909
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
910
+ <input>
911
+ <soap:body
912
+ use="encoded"
913
+ namespace="urn:iControl:System/Cluster"
914
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
915
+ </input>
916
+ <output>
917
+ <soap:body
918
+ use="encoded"
919
+ namespace="urn:iControl:System/Cluster"
920
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
921
+ </output>
922
+ </operation>
923
+
924
+ <operation name="get_version">
925
+ <documentation>
926
+ Gets the version information for this interface.
927
+
928
+ </documentation>
929
+ <soap:operation soapAction="urn:iControl:System/Cluster"/>
930
+ <input>
931
+ <soap:body
932
+ use="encoded"
933
+ namespace="urn:iControl:System/Cluster"
934
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
935
+ </input>
936
+ <output>
937
+ <soap:body
938
+ use="encoded"
939
+ namespace="urn:iControl:System/Cluster"
940
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
941
+ </output>
942
+ </operation>
943
+ </binding>
944
+
945
+ <!-- service -->
946
+
947
+ <service name="System.Cluster">
948
+ <documentation>
949
+ The Cluster interface enables you to work with the definitions and attributes in a clustered device.
950
+
951
+ </documentation>
952
+ <port name="System.ClusterPort" binding="tns:System.ClusterBinding">
953
+ <soap:address location="https://url_to_service"/>
954
+ </port>
955
+ </service>
956
+ </definitions>