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,695 @@
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.HAStatus"
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.HAActionSequenceSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.HAActionSequence[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:complexType name="System.HAStatus.EntryID">
32
+ <xsd:sequence>
33
+ <xsd:element name="ha_feature" type="tns:System.HAStatus.Feature"/>
34
+ <xsd:element name="ha_key" type="xsd:string"/>
35
+ <xsd:element name="slot" type="xsd:long"/>
36
+ </xsd:sequence>
37
+ </xsd:complexType>
38
+ <xsd:complexType name="Common.ULongSequenceSequence">
39
+ <xsd:complexContent>
40
+ <xsd:restriction base='SOAP-ENC:Array'>
41
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ULongSequence[]'/>
42
+ </xsd:restriction>
43
+ </xsd:complexContent>
44
+ </xsd:complexType>
45
+ <xsd:complexType name="System.HAStatus.EntryIDSequence">
46
+ <xsd:complexContent>
47
+ <xsd:restriction base='SOAP-ENC:Array'>
48
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.HAStatus.EntryID[]'/>
49
+ </xsd:restriction>
50
+ </xsd:complexContent>
51
+ </xsd:complexType>
52
+ <xsd:simpleType name="Common.EnabledState">
53
+ <xsd:restriction base="xsd:string">
54
+ <xsd:enumeration value="STATE_DISABLED">
55
+ <xsd:annotation>
56
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
57
+ </xsd:annotation>
58
+ </xsd:enumeration>
59
+ <xsd:enumeration value="STATE_ENABLED">
60
+ <xsd:annotation>
61
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
62
+ </xsd:annotation>
63
+ </xsd:enumeration>
64
+ </xsd:restriction>
65
+ </xsd:simpleType>
66
+ <xsd:complexType name="Common.BooleanSequence">
67
+ <xsd:complexContent>
68
+ <xsd:restriction base='SOAP-ENC:Array'>
69
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:boolean[]'/>
70
+ </xsd:restriction>
71
+ </xsd:complexContent>
72
+ </xsd:complexType>
73
+ <xsd:complexType name="Common.ULongSequence">
74
+ <xsd:complexContent>
75
+ <xsd:restriction base='SOAP-ENC:Array'>
76
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
77
+ </xsd:restriction>
78
+ </xsd:complexContent>
79
+ </xsd:complexType>
80
+ <xsd:simpleType name="System.HAStatus.Feature">
81
+ <xsd:restriction base="xsd:string">
82
+ <xsd:enumeration value="FEATURE_ASM_CONFIGURATION">
83
+ <xsd:annotation>
84
+ <xsd:documentation>FEATURE_ASM_CONFIGURATION</xsd:documentation>
85
+ </xsd:annotation>
86
+ </xsd:enumeration>
87
+ <xsd:enumeration value="FEATURE_CLUSTER_MEMBER">
88
+ <xsd:annotation>
89
+ <xsd:documentation>FEATURE_CLUSTER_MEMBER</xsd:documentation>
90
+ </xsd:annotation>
91
+ </xsd:enumeration>
92
+ <xsd:enumeration value="FEATURE_CLUSTER_MIN_UP_MEMBERS">
93
+ <xsd:annotation>
94
+ <xsd:documentation>FEATURE_CLUSTER_MIN_UP_MEMBERS</xsd:documentation>
95
+ </xsd:annotation>
96
+ </xsd:enumeration>
97
+ <xsd:enumeration value="FEATURE_CLUSTER_TIME_SYNC">
98
+ <xsd:annotation>
99
+ <xsd:documentation>FEATURE_CLUSTER_TIME_SYNC</xsd:documentation>
100
+ </xsd:annotation>
101
+ </xsd:enumeration>
102
+ <xsd:enumeration value="FEATURE_DAEMON">
103
+ <xsd:annotation>
104
+ <xsd:documentation>FEATURE_DAEMON</xsd:documentation>
105
+ </xsd:annotation>
106
+ </xsd:enumeration>
107
+ <xsd:enumeration value="FEATURE_DAEMON_HEARTBEAT">
108
+ <xsd:annotation>
109
+ <xsd:documentation>FEATURE_DAEMON_HEARTBEAT</xsd:documentation>
110
+ </xsd:annotation>
111
+ </xsd:enumeration>
112
+ <xsd:enumeration value="FEATURE_FIPS">
113
+ <xsd:annotation>
114
+ <xsd:documentation>FEATURE_FIPS</xsd:documentation>
115
+ </xsd:annotation>
116
+ </xsd:enumeration>
117
+ <xsd:enumeration value="FEATURE_FORCED_OFFLINE">
118
+ <xsd:annotation>
119
+ <xsd:documentation>FEATURE_FORCED_OFFLINE</xsd:documentation>
120
+ </xsd:annotation>
121
+ </xsd:enumeration>
122
+ <xsd:enumeration value="FEATURE_GROUP_SCORE">
123
+ <xsd:annotation>
124
+ <xsd:documentation>FEATURE_GROUP_SCORE</xsd:documentation>
125
+ </xsd:annotation>
126
+ </xsd:enumeration>
127
+ <xsd:enumeration value="FEATURE_HARDWARE_FAILOVER">
128
+ <xsd:annotation>
129
+ <xsd:documentation>FEATURE_HARDWARE_FAILOVER</xsd:documentation>
130
+ </xsd:annotation>
131
+ </xsd:enumeration>
132
+ <xsd:enumeration value="FEATURE_HSB">
133
+ <xsd:annotation>
134
+ <xsd:documentation>FEATURE_HSB</xsd:documentation>
135
+ </xsd:annotation>
136
+ </xsd:enumeration>
137
+ <xsd:enumeration value="FEATURE_LICENSE">
138
+ <xsd:annotation>
139
+ <xsd:documentation>FEATURE_LICENSE</xsd:documentation>
140
+ </xsd:annotation>
141
+ </xsd:enumeration>
142
+ <xsd:enumeration value="FEATURE_MPI">
143
+ <xsd:annotation>
144
+ <xsd:documentation>FEATURE_MPI</xsd:documentation>
145
+ </xsd:annotation>
146
+ </xsd:enumeration>
147
+ <xsd:enumeration value="FEATURE_MYSQL">
148
+ <xsd:annotation>
149
+ <xsd:documentation>FEATURE_MYSQL</xsd:documentation>
150
+ </xsd:annotation>
151
+ </xsd:enumeration>
152
+ <xsd:enumeration value="FEATURE_NETWORK_FAILOVER">
153
+ <xsd:annotation>
154
+ <xsd:documentation>FEATURE_NETWORK_FAILOVER</xsd:documentation>
155
+ </xsd:annotation>
156
+ </xsd:enumeration>
157
+ <xsd:enumeration value="FEATURE_OVERDOG">
158
+ <xsd:annotation>
159
+ <xsd:documentation>FEATURE_OVERDOG</xsd:documentation>
160
+ </xsd:annotation>
161
+ </xsd:enumeration>
162
+ <xsd:enumeration value="FEATURE_PEER_GROUP_SCORE">
163
+ <xsd:annotation>
164
+ <xsd:documentation>FEATURE_PEER_GROUP_SCORE</xsd:documentation>
165
+ </xsd:annotation>
166
+ </xsd:enumeration>
167
+ <xsd:enumeration value="FEATURE_POOL_MIN_UP_MEMBERS">
168
+ <xsd:annotation>
169
+ <xsd:documentation>FEATURE_POOL_MIN_UP_MEMBERS</xsd:documentation>
170
+ </xsd:annotation>
171
+ </xsd:enumeration>
172
+ <xsd:enumeration value="FEATURE_REBOOT">
173
+ <xsd:annotation>
174
+ <xsd:documentation>FEATURE_REBOOT</xsd:documentation>
175
+ </xsd:annotation>
176
+ </xsd:enumeration>
177
+ <xsd:enumeration value="FEATURE_SECONDARY_SOD">
178
+ <xsd:annotation>
179
+ <xsd:documentation>FEATURE_SECONDARY_SOD</xsd:documentation>
180
+ </xsd:annotation>
181
+ </xsd:enumeration>
182
+ <xsd:enumeration value="FEATURE_SOD_CONFIGURATION">
183
+ <xsd:annotation>
184
+ <xsd:documentation>FEATURE_SOD_CONFIGURATION</xsd:documentation>
185
+ </xsd:annotation>
186
+ </xsd:enumeration>
187
+ <xsd:enumeration value="FEATURE_SOFTWARE_UPDATE">
188
+ <xsd:annotation>
189
+ <xsd:documentation>FEATURE_SOFTWARE_UPDATE</xsd:documentation>
190
+ </xsd:annotation>
191
+ </xsd:enumeration>
192
+ <xsd:enumeration value="FEATURE_SWITCHBOARD">
193
+ <xsd:annotation>
194
+ <xsd:documentation>FEATURE_SWITCHBOARD</xsd:documentation>
195
+ </xsd:annotation>
196
+ </xsd:enumeration>
197
+ <xsd:enumeration value="FEATURE_TMM_DETECTED">
198
+ <xsd:annotation>
199
+ <xsd:documentation>FEATURE_TMM_DETECTED</xsd:documentation>
200
+ </xsd:annotation>
201
+ </xsd:enumeration>
202
+ <xsd:enumeration value="FEATURE_TMM_READY">
203
+ <xsd:annotation>
204
+ <xsd:documentation>FEATURE_TMM_READY</xsd:documentation>
205
+ </xsd:annotation>
206
+ </xsd:enumeration>
207
+ <xsd:enumeration value="FEATURE_UNKNOWN">
208
+ <xsd:annotation>
209
+ <xsd:documentation>FEATURE_UNKNOWN</xsd:documentation>
210
+ </xsd:annotation>
211
+ </xsd:enumeration>
212
+ <xsd:enumeration value="FEATURE_VLAN">
213
+ <xsd:annotation>
214
+ <xsd:documentation>FEATURE_VLAN</xsd:documentation>
215
+ </xsd:annotation>
216
+ </xsd:enumeration>
217
+ <xsd:enumeration value="FEATURE_HYPERVISOR_OFFLINE">
218
+ <xsd:annotation>
219
+ <xsd:documentation>FEATURE_HYPERVISOR_OFFLINE</xsd:documentation>
220
+ </xsd:annotation>
221
+ </xsd:enumeration>
222
+ <xsd:enumeration value="FEATURE_COMPRESSION_FAILSAFE">
223
+ <xsd:annotation>
224
+ <xsd:documentation>FEATURE_COMPRESSION_FAILSAFE</xsd:documentation>
225
+ </xsd:annotation>
226
+ </xsd:enumeration>
227
+ <xsd:enumeration value="FEATURE_CRYPTO_FAILSAFE">
228
+ <xsd:annotation>
229
+ <xsd:documentation>FEATURE_CRYPTO_FAILSAFE</xsd:documentation>
230
+ </xsd:annotation>
231
+ </xsd:enumeration>
232
+ </xsd:restriction>
233
+ </xsd:simpleType>
234
+ <xsd:complexType name="System.HAStatus.EntryIDSequenceSequence">
235
+ <xsd:complexContent>
236
+ <xsd:restriction base='SOAP-ENC:Array'>
237
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.HAStatus.EntryIDSequence[]'/>
238
+ </xsd:restriction>
239
+ </xsd:complexContent>
240
+ </xsd:complexType>
241
+ <xsd:simpleType name="Common.HAAction">
242
+ <xsd:restriction base="xsd:string">
243
+ <xsd:enumeration value="HA_ACTION_NONE">
244
+ <xsd:annotation>
245
+ <xsd:documentation>HA_ACTION_NONE</xsd:documentation>
246
+ </xsd:annotation>
247
+ </xsd:enumeration>
248
+ <xsd:enumeration value="HA_ACTION_REBOOT">
249
+ <xsd:annotation>
250
+ <xsd:documentation>HA_ACTION_REBOOT</xsd:documentation>
251
+ </xsd:annotation>
252
+ </xsd:enumeration>
253
+ <xsd:enumeration value="HA_ACTION_RESTART">
254
+ <xsd:annotation>
255
+ <xsd:documentation>HA_ACTION_RESTART</xsd:documentation>
256
+ </xsd:annotation>
257
+ </xsd:enumeration>
258
+ <xsd:enumeration value="HA_ACTION_FAILOVER">
259
+ <xsd:annotation>
260
+ <xsd:documentation>HA_ACTION_FAILOVER</xsd:documentation>
261
+ </xsd:annotation>
262
+ </xsd:enumeration>
263
+ <xsd:enumeration value="HA_ACTION_FAILOVER_RESTART">
264
+ <xsd:annotation>
265
+ <xsd:documentation>HA_ACTION_FAILOVER_RESTART</xsd:documentation>
266
+ </xsd:annotation>
267
+ </xsd:enumeration>
268
+ <xsd:enumeration value="HA_ACTION_GO_ACTIVE">
269
+ <xsd:annotation>
270
+ <xsd:documentation>HA_ACTION_GO_ACTIVE</xsd:documentation>
271
+ </xsd:annotation>
272
+ </xsd:enumeration>
273
+ <xsd:enumeration value="HA_ACTION_RESTART_ALL">
274
+ <xsd:annotation>
275
+ <xsd:documentation>HA_ACTION_RESTART_ALL</xsd:documentation>
276
+ </xsd:annotation>
277
+ </xsd:enumeration>
278
+ <xsd:enumeration value="HA_ACTION_FAILOVER_ABORT_TRAFFIC_MGT">
279
+ <xsd:annotation>
280
+ <xsd:documentation>HA_ACTION_FAILOVER_ABORT_TRAFFIC_MGT</xsd:documentation>
281
+ </xsd:annotation>
282
+ </xsd:enumeration>
283
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE">
284
+ <xsd:annotation>
285
+ <xsd:documentation>HA_ACTION_GO_OFFLINE</xsd:documentation>
286
+ </xsd:annotation>
287
+ </xsd:enumeration>
288
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE_RESTART">
289
+ <xsd:annotation>
290
+ <xsd:documentation>HA_ACTION_GO_OFFLINE_RESTART</xsd:documentation>
291
+ </xsd:annotation>
292
+ </xsd:enumeration>
293
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE_ABORT_TM">
294
+ <xsd:annotation>
295
+ <xsd:documentation>HA_ACTION_GO_OFFLINE_ABORT_TM</xsd:documentation>
296
+ </xsd:annotation>
297
+ </xsd:enumeration>
298
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE_DOWNLINKS">
299
+ <xsd:annotation>
300
+ <xsd:documentation>HA_ACTION_GO_OFFLINE_DOWNLINKS</xsd:documentation>
301
+ </xsd:annotation>
302
+ </xsd:enumeration>
303
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE_DOWNLINKS_RESTART">
304
+ <xsd:annotation>
305
+ <xsd:documentation>HA_ACTION_GO_OFFLINE_DOWNLINKS_RESTART</xsd:documentation>
306
+ </xsd:annotation>
307
+ </xsd:enumeration>
308
+ </xsd:restriction>
309
+ </xsd:simpleType>
310
+ <xsd:complexType name="Common.HAActionSequence">
311
+ <xsd:complexContent>
312
+ <xsd:restriction base='SOAP-ENC:Array'>
313
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.HAAction[]'/>
314
+ </xsd:restriction>
315
+ </xsd:complexContent>
316
+ </xsd:complexType>
317
+ <xsd:complexType name="Common.EnabledStateSequenceSequence">
318
+ <xsd:complexContent>
319
+ <xsd:restriction base='SOAP-ENC:Array'>
320
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledStateSequence[]'/>
321
+ </xsd:restriction>
322
+ </xsd:complexContent>
323
+ </xsd:complexType>
324
+ <xsd:complexType name="Common.EnabledStateSequence">
325
+ <xsd:complexContent>
326
+ <xsd:restriction base='SOAP-ENC:Array'>
327
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
328
+ </xsd:restriction>
329
+ </xsd:complexContent>
330
+ </xsd:complexType>
331
+ </xsd:schema>
332
+ </types>
333
+
334
+ <!-- message -->
335
+
336
+ <message name="System.HAStatus.get_entryRequest">
337
+ <part name="peers" type="tns:Common.BooleanSequence"/>
338
+ </message>
339
+ <message name="System.HAStatus.get_entryResponse">
340
+ <part name="return" type="tns:System.HAStatus.EntryIDSequenceSequence"/>
341
+ </message>
342
+
343
+ <message name="System.HAStatus.get_entry_actionRequest">
344
+ <part name="peers" type="tns:Common.BooleanSequence"/>
345
+ <part name="ids" type="tns:System.HAStatus.EntryIDSequenceSequence"/>
346
+ </message>
347
+ <message name="System.HAStatus.get_entry_actionResponse">
348
+ <part name="return" type="tns:Common.HAActionSequenceSequence"/>
349
+ </message>
350
+
351
+ <message name="System.HAStatus.get_entry_action_required_stateRequest">
352
+ <part name="peers" type="tns:Common.BooleanSequence"/>
353
+ <part name="ids" type="tns:System.HAStatus.EntryIDSequenceSequence"/>
354
+ </message>
355
+ <message name="System.HAStatus.get_entry_action_required_stateResponse">
356
+ <part name="return" type="tns:Common.EnabledStateSequenceSequence"/>
357
+ </message>
358
+
359
+ <message name="System.HAStatus.get_entry_dataRequest">
360
+ <part name="peers" type="tns:Common.BooleanSequence"/>
361
+ <part name="ids" type="tns:System.HAStatus.EntryIDSequenceSequence"/>
362
+ </message>
363
+ <message name="System.HAStatus.get_entry_dataResponse">
364
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
365
+ </message>
366
+
367
+ <message name="System.HAStatus.get_entry_enabled_stateRequest">
368
+ <part name="peers" type="tns:Common.BooleanSequence"/>
369
+ <part name="ids" type="tns:System.HAStatus.EntryIDSequenceSequence"/>
370
+ </message>
371
+ <message name="System.HAStatus.get_entry_enabled_stateResponse">
372
+ <part name="return" type="tns:Common.EnabledStateSequenceSequence"/>
373
+ </message>
374
+
375
+ <message name="System.HAStatus.get_entry_failure_stateRequest">
376
+ <part name="peers" type="tns:Common.BooleanSequence"/>
377
+ <part name="ids" type="tns:System.HAStatus.EntryIDSequenceSequence"/>
378
+ </message>
379
+ <message name="System.HAStatus.get_entry_failure_stateResponse">
380
+ <part name="return" type="tns:Common.EnabledStateSequenceSequence"/>
381
+ </message>
382
+
383
+ <message name="System.HAStatus.get_entry_timeoutRequest">
384
+ <part name="peers" type="tns:Common.BooleanSequence"/>
385
+ <part name="ids" type="tns:System.HAStatus.EntryIDSequenceSequence"/>
386
+ </message>
387
+ <message name="System.HAStatus.get_entry_timeoutResponse">
388
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
389
+ </message>
390
+
391
+ <message name="System.HAStatus.get_versionRequest">
392
+ </message>
393
+ <message name="System.HAStatus.get_versionResponse">
394
+ <part name="return" type="xsd:string"/>
395
+ </message>
396
+
397
+ <!-- portType -->
398
+
399
+ <portType name="System.HAStatusPortType">
400
+ <operation name="get_entry">
401
+ <documentation>
402
+ Gets the identifiers of all table entries for a set of High
403
+ Availability status tables
404
+
405
+ </documentation>
406
+ <input message="tns:System.HAStatus.get_entryRequest"/>
407
+ <output message="tns:System.HAStatus.get_entryResponse"/>
408
+ </operation>
409
+ <operation name="get_entry_action">
410
+ <documentation>
411
+ Gets the action that should be taken when the "action required"
412
+ state is set for a set of table entries.
413
+
414
+ </documentation>
415
+ <input message="tns:System.HAStatus.get_entry_actionRequest"/>
416
+ <output message="tns:System.HAStatus.get_entry_actionResponse"/>
417
+ </operation>
418
+ <operation name="get_entry_action_required_state">
419
+ <documentation>
420
+ Gets the state to take action to resolve the high availability
421
+ feature failure for a set of table entries.
422
+
423
+ For example, if the VLAN failsafe feature determined that the VLAN
424
+ had failed, it would set this to yes, which would cause the daemon
425
+ to execute the action assigned to the feature, such as rebooting
426
+ the system.
427
+
428
+ </documentation>
429
+ <input message="tns:System.HAStatus.get_entry_action_required_stateRequest"/>
430
+ <output message="tns:System.HAStatus.get_entry_action_required_stateResponse"/>
431
+ </operation>
432
+ <operation name="get_entry_data">
433
+ <documentation>
434
+ Gets the feature-specific data for a set of table entries.
435
+
436
+ The meaning of this value varies according to the feature. For
437
+ daemon heartbeats, for example, this value shows the daemon's
438
+ current heartbeat value. This is documented with the feature
439
+ enumeration values.
440
+
441
+ </documentation>
442
+ <input message="tns:System.HAStatus.get_entry_dataRequest"/>
443
+ <output message="tns:System.HAStatus.get_entry_dataResponse"/>
444
+ </operation>
445
+ <operation name="get_entry_enabled_state">
446
+ <documentation>
447
+ Gets the state to enable the high availability feature for a set of
448
+ table entries.
449
+
450
+ </documentation>
451
+ <input message="tns:System.HAStatus.get_entry_enabled_stateRequest"/>
452
+ <output message="tns:System.HAStatus.get_entry_enabled_stateResponse"/>
453
+ </operation>
454
+ <operation name="get_entry_failure_state">
455
+ <documentation>
456
+ Gets the state to signal a high availability failure for a set of
457
+ table entries.
458
+
459
+ For a properly fully functioning system, no feature should set
460
+ "failure". Thus retrieving a list of features with this flag set
461
+ will quickly show any high availability problems on the system.
462
+
463
+ </documentation>
464
+ <input message="tns:System.HAStatus.get_entry_failure_stateRequest"/>
465
+ <output message="tns:System.HAStatus.get_entry_failure_stateResponse"/>
466
+ </operation>
467
+ <operation name="get_entry_timeout">
468
+ <documentation>
469
+ Gets the timeout for a set of table entries.
470
+
471
+ The precise meaning of this value varies according to the feature,
472
+ but in general, it is the elapsed time between when the feature's
473
+ error state is detected and when the corresponding action is taken.
474
+
475
+ </documentation>
476
+ <input message="tns:System.HAStatus.get_entry_timeoutRequest"/>
477
+ <output message="tns:System.HAStatus.get_entry_timeoutResponse"/>
478
+ </operation>
479
+ <operation name="get_version">
480
+ <documentation>
481
+ Gets the version information for this interface.
482
+
483
+ </documentation>
484
+ <input message="tns:System.HAStatus.get_versionRequest"/>
485
+ <output message="tns:System.HAStatus.get_versionResponse"/>
486
+ </operation>
487
+ </portType>
488
+
489
+ <!-- binding -->
490
+
491
+ <binding name="System.HAStatusBinding" type="tns:System.HAStatusPortType">
492
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
493
+ <operation name="get_entry">
494
+ <documentation>
495
+ Gets the identifiers of all table entries for a set of High
496
+ Availability status tables
497
+
498
+ </documentation>
499
+ <soap:operation soapAction="urn:iControl:System/HAStatus"/>
500
+ <input>
501
+ <soap:body
502
+ use="encoded"
503
+ namespace="urn:iControl:System/HAStatus"
504
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
505
+ </input>
506
+ <output>
507
+ <soap:body
508
+ use="encoded"
509
+ namespace="urn:iControl:System/HAStatus"
510
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
511
+ </output>
512
+ </operation>
513
+
514
+ <operation name="get_entry_action">
515
+ <documentation>
516
+ Gets the action that should be taken when the "action required"
517
+ state is set for a set of table entries.
518
+
519
+ </documentation>
520
+ <soap:operation soapAction="urn:iControl:System/HAStatus"/>
521
+ <input>
522
+ <soap:body
523
+ use="encoded"
524
+ namespace="urn:iControl:System/HAStatus"
525
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
526
+ </input>
527
+ <output>
528
+ <soap:body
529
+ use="encoded"
530
+ namespace="urn:iControl:System/HAStatus"
531
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
532
+ </output>
533
+ </operation>
534
+
535
+ <operation name="get_entry_action_required_state">
536
+ <documentation>
537
+ Gets the state to take action to resolve the high availability
538
+ feature failure for a set of table entries.
539
+
540
+ For example, if the VLAN failsafe feature determined that the VLAN
541
+ had failed, it would set this to yes, which would cause the daemon
542
+ to execute the action assigned to the feature, such as rebooting
543
+ the system.
544
+
545
+ </documentation>
546
+ <soap:operation soapAction="urn:iControl:System/HAStatus"/>
547
+ <input>
548
+ <soap:body
549
+ use="encoded"
550
+ namespace="urn:iControl:System/HAStatus"
551
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
552
+ </input>
553
+ <output>
554
+ <soap:body
555
+ use="encoded"
556
+ namespace="urn:iControl:System/HAStatus"
557
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
558
+ </output>
559
+ </operation>
560
+
561
+ <operation name="get_entry_data">
562
+ <documentation>
563
+ Gets the feature-specific data for a set of table entries.
564
+
565
+ The meaning of this value varies according to the feature. For
566
+ daemon heartbeats, for example, this value shows the daemon's
567
+ current heartbeat value. This is documented with the feature
568
+ enumeration values.
569
+
570
+ </documentation>
571
+ <soap:operation soapAction="urn:iControl:System/HAStatus"/>
572
+ <input>
573
+ <soap:body
574
+ use="encoded"
575
+ namespace="urn:iControl:System/HAStatus"
576
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
577
+ </input>
578
+ <output>
579
+ <soap:body
580
+ use="encoded"
581
+ namespace="urn:iControl:System/HAStatus"
582
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
583
+ </output>
584
+ </operation>
585
+
586
+ <operation name="get_entry_enabled_state">
587
+ <documentation>
588
+ Gets the state to enable the high availability feature for a set of
589
+ table entries.
590
+
591
+ </documentation>
592
+ <soap:operation soapAction="urn:iControl:System/HAStatus"/>
593
+ <input>
594
+ <soap:body
595
+ use="encoded"
596
+ namespace="urn:iControl:System/HAStatus"
597
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
598
+ </input>
599
+ <output>
600
+ <soap:body
601
+ use="encoded"
602
+ namespace="urn:iControl:System/HAStatus"
603
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
604
+ </output>
605
+ </operation>
606
+
607
+ <operation name="get_entry_failure_state">
608
+ <documentation>
609
+ Gets the state to signal a high availability failure for a set of
610
+ table entries.
611
+
612
+ For a properly fully functioning system, no feature should set
613
+ "failure". Thus retrieving a list of features with this flag set
614
+ will quickly show any high availability problems on the system.
615
+
616
+ </documentation>
617
+ <soap:operation soapAction="urn:iControl:System/HAStatus"/>
618
+ <input>
619
+ <soap:body
620
+ use="encoded"
621
+ namespace="urn:iControl:System/HAStatus"
622
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
623
+ </input>
624
+ <output>
625
+ <soap:body
626
+ use="encoded"
627
+ namespace="urn:iControl:System/HAStatus"
628
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
629
+ </output>
630
+ </operation>
631
+
632
+ <operation name="get_entry_timeout">
633
+ <documentation>
634
+ Gets the timeout for a set of table entries.
635
+
636
+ The precise meaning of this value varies according to the feature,
637
+ but in general, it is the elapsed time between when the feature's
638
+ error state is detected and when the corresponding action is taken.
639
+
640
+ </documentation>
641
+ <soap:operation soapAction="urn:iControl:System/HAStatus"/>
642
+ <input>
643
+ <soap:body
644
+ use="encoded"
645
+ namespace="urn:iControl:System/HAStatus"
646
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
647
+ </input>
648
+ <output>
649
+ <soap:body
650
+ use="encoded"
651
+ namespace="urn:iControl:System/HAStatus"
652
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
653
+ </output>
654
+ </operation>
655
+
656
+ <operation name="get_version">
657
+ <documentation>
658
+ Gets the version information for this interface.
659
+
660
+ </documentation>
661
+ <soap:operation soapAction="urn:iControl:System/HAStatus"/>
662
+ <input>
663
+ <soap:body
664
+ use="encoded"
665
+ namespace="urn:iControl:System/HAStatus"
666
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
667
+ </input>
668
+ <output>
669
+ <soap:body
670
+ use="encoded"
671
+ namespace="urn:iControl:System/HAStatus"
672
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
673
+ </output>
674
+ </operation>
675
+ </binding>
676
+
677
+ <!-- service -->
678
+
679
+ <service name="System.HAStatus">
680
+ <documentation>
681
+ The High Availability (HA) status table is a one-stop destination to
682
+ retrieve the current status of the high availability features on either
683
+ the current system or its redundant peer system. The table holds an
684
+ entry for each feature active on the system.
685
+
686
+ It is important to note that this table can only be read. Enabling and
687
+ controlling these features is possible through other interfaces, as
688
+ documented in the Feature enumeration values.
689
+
690
+ </documentation>
691
+ <port name="System.HAStatusPort" binding="tns:System.HAStatusBinding">
692
+ <soap:address location="https://url_to_service"/>
693
+ </port>
694
+ </service>
695
+ </definitions>