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,181 @@
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.GeoIP"
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:schema>
25
+ </types>
26
+
27
+ <!-- message -->
28
+
29
+ <message name="System.GeoIP.loadRequest">
30
+ </message>
31
+ <message name="System.GeoIP.loadResponse">
32
+ </message>
33
+
34
+ <message name="System.GeoIP.get_versionRequest">
35
+ </message>
36
+ <message name="System.GeoIP.get_versionResponse">
37
+ <part name="return" type="xsd:string"/>
38
+ </message>
39
+
40
+ <!-- portType -->
41
+
42
+ <portType name="System.GeoIPPortType">
43
+ <operation name="load">
44
+ <documentation>
45
+ Loads GeoIP data files into the running configuration. The
46
+ directory /shared/GeoIP is used for user files (as opposed
47
+ to the information shipped with the system). The user
48
+ files override the system files according to the
49
+ preferences shown below.
50
+
51
+ Note: You can use the upload_file method (ConfigSync
52
+ interface) to get data files to the system.
53
+
54
+ The system has the following order of preference when
55
+ loading files.
56
+
57
+ Order of precedence for IPv4 mapping:
58
+
59
+ /shared/GeoIP/GeoIPCity.dat
60
+ /shared/GeoIP/GeoIPRegion.dat
61
+ /shared/GeoIP/GeoIP.dat
62
+ /usr/share/GeoIP/F5GeoIP.dat
63
+
64
+ Order of precedence for IPv6 mapping:
65
+
66
+ /shared/GeoIP/GeoIPv6.dat
67
+ /usr/share/GeoIP/F5GeoIPv6.dat
68
+
69
+ ISP:
70
+
71
+ /shared/GeoIP/GeoIPISP.dat
72
+
73
+ Organization:
74
+
75
+ /shared/GeoIP/GeoIPOrg.dat
76
+
77
+ </documentation>
78
+ <input message="tns:System.GeoIP.loadRequest"/>
79
+ <output message="tns:System.GeoIP.loadResponse"/>
80
+ </operation>
81
+ <operation name="get_version">
82
+ <documentation>
83
+ Gets the version information for this interface.
84
+
85
+ </documentation>
86
+ <input message="tns:System.GeoIP.get_versionRequest"/>
87
+ <output message="tns:System.GeoIP.get_versionResponse"/>
88
+ </operation>
89
+ </portType>
90
+
91
+ <!-- binding -->
92
+
93
+ <binding name="System.GeoIPBinding" type="tns:System.GeoIPPortType">
94
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
95
+ <operation name="load">
96
+ <documentation>
97
+ Loads GeoIP data files into the running configuration. The
98
+ directory /shared/GeoIP is used for user files (as opposed
99
+ to the information shipped with the system). The user
100
+ files override the system files according to the
101
+ preferences shown below.
102
+
103
+ Note: You can use the upload_file method (ConfigSync
104
+ interface) to get data files to the system.
105
+
106
+ The system has the following order of preference when
107
+ loading files.
108
+
109
+ Order of precedence for IPv4 mapping:
110
+
111
+ /shared/GeoIP/GeoIPCity.dat
112
+ /shared/GeoIP/GeoIPRegion.dat
113
+ /shared/GeoIP/GeoIP.dat
114
+ /usr/share/GeoIP/F5GeoIP.dat
115
+
116
+ Order of precedence for IPv6 mapping:
117
+
118
+ /shared/GeoIP/GeoIPv6.dat
119
+ /usr/share/GeoIP/F5GeoIPv6.dat
120
+
121
+ ISP:
122
+
123
+ /shared/GeoIP/GeoIPISP.dat
124
+
125
+ Organization:
126
+
127
+ /shared/GeoIP/GeoIPOrg.dat
128
+
129
+ </documentation>
130
+ <soap:operation soapAction="urn:iControl:System/GeoIP"/>
131
+ <input>
132
+ <soap:body
133
+ use="encoded"
134
+ namespace="urn:iControl:System/GeoIP"
135
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
136
+ </input>
137
+ <output>
138
+ <soap:body
139
+ use="encoded"
140
+ namespace="urn:iControl:System/GeoIP"
141
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
142
+ </output>
143
+ </operation>
144
+
145
+ <operation name="get_version">
146
+ <documentation>
147
+ Gets the version information for this interface.
148
+
149
+ </documentation>
150
+ <soap:operation soapAction="urn:iControl:System/GeoIP"/>
151
+ <input>
152
+ <soap:body
153
+ use="encoded"
154
+ namespace="urn:iControl:System/GeoIP"
155
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
156
+ </input>
157
+ <output>
158
+ <soap:body
159
+ use="encoded"
160
+ namespace="urn:iControl:System/GeoIP"
161
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
162
+ </output>
163
+ </operation>
164
+ </binding>
165
+
166
+ <!-- service -->
167
+
168
+ <service name="System.GeoIP">
169
+ <documentation>
170
+ The GeoIP interface enables you to maintain the GeoIP location
171
+ database. The location database maps IP addresses to
172
+ geographical locations.
173
+
174
+ This interface does not support transactions.
175
+
176
+ </documentation>
177
+ <port name="System.GeoIPPort" binding="tns:System.GeoIPBinding">
178
+ <soap:address location="https://url_to_service"/>
179
+ </port>
180
+ </service>
181
+ </definitions>
@@ -0,0 +1,1983 @@
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.HAGroup"
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="System.HAGroup.HAGroupClusterAttributeSequenceSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.HAGroup.HAGroupClusterAttributeSequence[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:complexType name="Common.ULongSequenceSequence">
32
+ <xsd:complexContent>
33
+ <xsd:restriction base='SOAP-ENC:Array'>
34
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ULongSequence[]'/>
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:simpleType name="System.HAGroup.HAGroupClusterAttribute">
53
+ <xsd:restriction base="xsd:string">
54
+ <xsd:enumeration value="HA_GROUP_CLUSTER_UNKNOWN">
55
+ <xsd:annotation>
56
+ <xsd:documentation>HA_GROUP_CLUSTER_UNKNOWN</xsd:documentation>
57
+ </xsd:annotation>
58
+ </xsd:enumeration>
59
+ <xsd:enumeration value="HA_GROUP_CLUSTER_PERCENT_MEMBERS_UP">
60
+ <xsd:annotation>
61
+ <xsd:documentation>HA_GROUP_CLUSTER_PERCENT_MEMBERS_UP</xsd:documentation>
62
+ </xsd:annotation>
63
+ </xsd:enumeration>
64
+ </xsd:restriction>
65
+ </xsd:simpleType>
66
+ <xsd:complexType name="Common.StringSequence">
67
+ <xsd:complexContent>
68
+ <xsd:restriction base='SOAP-ENC:Array'>
69
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
70
+ </xsd:restriction>
71
+ </xsd:complexContent>
72
+ </xsd:complexType>
73
+ <xsd:complexType name="System.HAGroup.HAGroupClusterAttributeSequence">
74
+ <xsd:complexContent>
75
+ <xsd:restriction base='SOAP-ENC:Array'>
76
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.HAGroup.HAGroupClusterAttribute[]'/>
77
+ </xsd:restriction>
78
+ </xsd:complexContent>
79
+ </xsd:complexType>
80
+ <xsd:complexType name="Common.ULongSequence">
81
+ <xsd:complexContent>
82
+ <xsd:restriction base='SOAP-ENC:Array'>
83
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
84
+ </xsd:restriction>
85
+ </xsd:complexContent>
86
+ </xsd:complexType>
87
+ <xsd:complexType name="System.HAGroup.HAGroupTrunkAttributeSequenceSequence">
88
+ <xsd:complexContent>
89
+ <xsd:restriction base='SOAP-ENC:Array'>
90
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.HAGroup.HAGroupTrunkAttributeSequence[]'/>
91
+ </xsd:restriction>
92
+ </xsd:complexContent>
93
+ </xsd:complexType>
94
+ <xsd:simpleType name="System.HAGroup.HAGroupPoolAttribute">
95
+ <xsd:restriction base="xsd:string">
96
+ <xsd:enumeration value="HA_GROUP_POOL_UNKNOWN">
97
+ <xsd:annotation>
98
+ <xsd:documentation>HA_GROUP_POOL_UNKNOWN</xsd:documentation>
99
+ </xsd:annotation>
100
+ </xsd:enumeration>
101
+ <xsd:enumeration value="HA_GROUP_POOL_PERCENT_MEMBERS_UP">
102
+ <xsd:annotation>
103
+ <xsd:documentation>HA_GROUP_POOL_PERCENT_MEMBERS_UP</xsd:documentation>
104
+ </xsd:annotation>
105
+ </xsd:enumeration>
106
+ </xsd:restriction>
107
+ </xsd:simpleType>
108
+ <xsd:complexType name="System.HAGroup.HAGroupTrunkAttributeSequence">
109
+ <xsd:complexContent>
110
+ <xsd:restriction base='SOAP-ENC:Array'>
111
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.HAGroup.HAGroupTrunkAttribute[]'/>
112
+ </xsd:restriction>
113
+ </xsd:complexContent>
114
+ </xsd:complexType>
115
+ <xsd:complexType name="Common.StringSequenceSequence">
116
+ <xsd:complexContent>
117
+ <xsd:restriction base='SOAP-ENC:Array'>
118
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
119
+ </xsd:restriction>
120
+ </xsd:complexContent>
121
+ </xsd:complexType>
122
+ <xsd:simpleType name="System.HAGroup.HAGroupTrunkAttribute">
123
+ <xsd:restriction base="xsd:string">
124
+ <xsd:enumeration value="HA_GROUP_TRUNK_UNKNOWN">
125
+ <xsd:annotation>
126
+ <xsd:documentation>HA_GROUP_TRUNK_UNKNOWN</xsd:documentation>
127
+ </xsd:annotation>
128
+ </xsd:enumeration>
129
+ <xsd:enumeration value="HA_GROUP_TRUNK_PERCENT_MEMBERS_UP">
130
+ <xsd:annotation>
131
+ <xsd:documentation>HA_GROUP_TRUNK_PERCENT_MEMBERS_UP</xsd:documentation>
132
+ </xsd:annotation>
133
+ </xsd:enumeration>
134
+ </xsd:restriction>
135
+ </xsd:simpleType>
136
+ <xsd:complexType name="System.HAGroup.HAGroupPoolAttributeSequence">
137
+ <xsd:complexContent>
138
+ <xsd:restriction base='SOAP-ENC:Array'>
139
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.HAGroup.HAGroupPoolAttribute[]'/>
140
+ </xsd:restriction>
141
+ </xsd:complexContent>
142
+ </xsd:complexType>
143
+ <xsd:complexType name="System.HAGroup.HAGroupPoolAttributeSequenceSequence">
144
+ <xsd:complexContent>
145
+ <xsd:restriction base='SOAP-ENC:Array'>
146
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.HAGroup.HAGroupPoolAttributeSequence[]'/>
147
+ </xsd:restriction>
148
+ </xsd:complexContent>
149
+ </xsd:complexType>
150
+ <xsd:complexType name="Common.EnabledStateSequence">
151
+ <xsd:complexContent>
152
+ <xsd:restriction base='SOAP-ENC:Array'>
153
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
154
+ </xsd:restriction>
155
+ </xsd:complexContent>
156
+ </xsd:complexType>
157
+ </xsd:schema>
158
+ </types>
159
+
160
+ <!-- message -->
161
+
162
+ <message name="System.HAGroup.get_listRequest">
163
+ </message>
164
+ <message name="System.HAGroup.get_listResponse">
165
+ <part name="return" type="tns:Common.StringSequence"/>
166
+ </message>
167
+
168
+ <message name="System.HAGroup.createRequest">
169
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
170
+ </message>
171
+ <message name="System.HAGroup.createResponse">
172
+ </message>
173
+
174
+ <message name="System.HAGroup.delete_high_availability_groupRequest">
175
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
176
+ </message>
177
+ <message name="System.HAGroup.delete_high_availability_groupResponse">
178
+ </message>
179
+
180
+ <message name="System.HAGroup.delete_all_high_availability_groupsRequest">
181
+ </message>
182
+ <message name="System.HAGroup.delete_all_high_availability_groupsResponse">
183
+ </message>
184
+
185
+ <message name="System.HAGroup.set_enabled_stateRequest">
186
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
187
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
188
+ </message>
189
+ <message name="System.HAGroup.set_enabled_stateResponse">
190
+ </message>
191
+
192
+ <message name="System.HAGroup.get_enabled_stateRequest">
193
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
194
+ </message>
195
+ <message name="System.HAGroup.get_enabled_stateResponse">
196
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
197
+ </message>
198
+
199
+ <message name="System.HAGroup.set_active_scoreRequest">
200
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
201
+ <part name="scores" type="tns:Common.ULongSequence"/>
202
+ </message>
203
+ <message name="System.HAGroup.set_active_scoreResponse">
204
+ </message>
205
+
206
+ <message name="System.HAGroup.get_active_scoreRequest">
207
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
208
+ </message>
209
+ <message name="System.HAGroup.get_active_scoreResponse">
210
+ <part name="return" type="tns:Common.ULongSequence"/>
211
+ </message>
212
+
213
+ <message name="System.HAGroup.get_total_scoreRequest">
214
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
215
+ </message>
216
+ <message name="System.HAGroup.get_total_scoreResponse">
217
+ <part name="return" type="tns:Common.ULongSequence"/>
218
+ </message>
219
+
220
+ <message name="System.HAGroup.set_descriptionRequest">
221
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
222
+ <part name="descriptions" type="tns:Common.StringSequence"/>
223
+ </message>
224
+ <message name="System.HAGroup.set_descriptionResponse">
225
+ </message>
226
+
227
+ <message name="System.HAGroup.get_descriptionRequest">
228
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
229
+ </message>
230
+ <message name="System.HAGroup.get_descriptionResponse">
231
+ <part name="return" type="tns:Common.StringSequence"/>
232
+ </message>
233
+
234
+ <message name="System.HAGroup.add_poolRequest">
235
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
236
+ <part name="pools" type="tns:Common.StringSequenceSequence"/>
237
+ <part name="weights" type="tns:Common.ULongSequenceSequence"/>
238
+ </message>
239
+ <message name="System.HAGroup.add_poolResponse">
240
+ </message>
241
+
242
+ <message name="System.HAGroup.remove_poolRequest">
243
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
244
+ <part name="pools" type="tns:Common.StringSequenceSequence"/>
245
+ </message>
246
+ <message name="System.HAGroup.remove_poolResponse">
247
+ </message>
248
+
249
+ <message name="System.HAGroup.remove_all_poolsRequest">
250
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
251
+ </message>
252
+ <message name="System.HAGroup.remove_all_poolsResponse">
253
+ </message>
254
+
255
+ <message name="System.HAGroup.get_poolRequest">
256
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
257
+ </message>
258
+ <message name="System.HAGroup.get_poolResponse">
259
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
260
+ </message>
261
+
262
+ <message name="System.HAGroup.set_pool_attributeRequest">
263
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
264
+ <part name="pools" type="tns:Common.StringSequenceSequence"/>
265
+ <part name="attributes" type="tns:System.HAGroup.HAGroupPoolAttributeSequenceSequence"/>
266
+ </message>
267
+ <message name="System.HAGroup.set_pool_attributeResponse">
268
+ </message>
269
+
270
+ <message name="System.HAGroup.get_pool_attributeRequest">
271
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
272
+ <part name="pools" type="tns:Common.StringSequenceSequence"/>
273
+ </message>
274
+ <message name="System.HAGroup.get_pool_attributeResponse">
275
+ <part name="return" type="tns:System.HAGroup.HAGroupPoolAttributeSequenceSequence"/>
276
+ </message>
277
+
278
+ <message name="System.HAGroup.set_pool_weightRequest">
279
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
280
+ <part name="pools" type="tns:Common.StringSequenceSequence"/>
281
+ <part name="weights" type="tns:Common.ULongSequenceSequence"/>
282
+ </message>
283
+ <message name="System.HAGroup.set_pool_weightResponse">
284
+ </message>
285
+
286
+ <message name="System.HAGroup.get_pool_weightRequest">
287
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
288
+ <part name="pools" type="tns:Common.StringSequenceSequence"/>
289
+ </message>
290
+ <message name="System.HAGroup.get_pool_weightResponse">
291
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
292
+ </message>
293
+
294
+ <message name="System.HAGroup.set_pool_attribute_thresholdRequest">
295
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
296
+ <part name="pools" type="tns:Common.StringSequenceSequence"/>
297
+ <part name="thresholds" type="tns:Common.ULongSequenceSequence"/>
298
+ </message>
299
+ <message name="System.HAGroup.set_pool_attribute_thresholdResponse">
300
+ </message>
301
+
302
+ <message name="System.HAGroup.get_pool_attribute_thresholdRequest">
303
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
304
+ <part name="pools" type="tns:Common.StringSequenceSequence"/>
305
+ </message>
306
+ <message name="System.HAGroup.get_pool_attribute_thresholdResponse">
307
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
308
+ </message>
309
+
310
+ <message name="System.HAGroup.get_pool_attribute_valueRequest">
311
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
312
+ <part name="pools" type="tns:Common.StringSequenceSequence"/>
313
+ </message>
314
+ <message name="System.HAGroup.get_pool_attribute_valueResponse">
315
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
316
+ </message>
317
+
318
+ <message name="System.HAGroup.get_pool_scoreRequest">
319
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
320
+ <part name="pools" type="tns:Common.StringSequenceSequence"/>
321
+ </message>
322
+ <message name="System.HAGroup.get_pool_scoreResponse">
323
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
324
+ </message>
325
+
326
+ <message name="System.HAGroup.add_trunkRequest">
327
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
328
+ <part name="trunks" type="tns:Common.StringSequenceSequence"/>
329
+ <part name="weights" type="tns:Common.ULongSequenceSequence"/>
330
+ </message>
331
+ <message name="System.HAGroup.add_trunkResponse">
332
+ </message>
333
+
334
+ <message name="System.HAGroup.remove_trunkRequest">
335
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
336
+ <part name="trunks" type="tns:Common.StringSequenceSequence"/>
337
+ </message>
338
+ <message name="System.HAGroup.remove_trunkResponse">
339
+ </message>
340
+
341
+ <message name="System.HAGroup.remove_all_trunksRequest">
342
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
343
+ </message>
344
+ <message name="System.HAGroup.remove_all_trunksResponse">
345
+ </message>
346
+
347
+ <message name="System.HAGroup.get_trunkRequest">
348
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
349
+ </message>
350
+ <message name="System.HAGroup.get_trunkResponse">
351
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
352
+ </message>
353
+
354
+ <message name="System.HAGroup.set_trunk_attributeRequest">
355
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
356
+ <part name="trunks" type="tns:Common.StringSequenceSequence"/>
357
+ <part name="attributes" type="tns:System.HAGroup.HAGroupTrunkAttributeSequenceSequence"/>
358
+ </message>
359
+ <message name="System.HAGroup.set_trunk_attributeResponse">
360
+ </message>
361
+
362
+ <message name="System.HAGroup.get_trunk_attributeRequest">
363
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
364
+ <part name="trunks" type="tns:Common.StringSequenceSequence"/>
365
+ </message>
366
+ <message name="System.HAGroup.get_trunk_attributeResponse">
367
+ <part name="return" type="tns:System.HAGroup.HAGroupTrunkAttributeSequenceSequence"/>
368
+ </message>
369
+
370
+ <message name="System.HAGroup.set_trunk_weightRequest">
371
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
372
+ <part name="trunks" type="tns:Common.StringSequenceSequence"/>
373
+ <part name="weights" type="tns:Common.ULongSequenceSequence"/>
374
+ </message>
375
+ <message name="System.HAGroup.set_trunk_weightResponse">
376
+ </message>
377
+
378
+ <message name="System.HAGroup.get_trunk_weightRequest">
379
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
380
+ <part name="trunks" type="tns:Common.StringSequenceSequence"/>
381
+ </message>
382
+ <message name="System.HAGroup.get_trunk_weightResponse">
383
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
384
+ </message>
385
+
386
+ <message name="System.HAGroup.set_trunk_attribute_thresholdRequest">
387
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
388
+ <part name="trunks" type="tns:Common.StringSequenceSequence"/>
389
+ <part name="thresholds" type="tns:Common.ULongSequenceSequence"/>
390
+ </message>
391
+ <message name="System.HAGroup.set_trunk_attribute_thresholdResponse">
392
+ </message>
393
+
394
+ <message name="System.HAGroup.get_trunk_attribute_thresholdRequest">
395
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
396
+ <part name="trunks" type="tns:Common.StringSequenceSequence"/>
397
+ </message>
398
+ <message name="System.HAGroup.get_trunk_attribute_thresholdResponse">
399
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
400
+ </message>
401
+
402
+ <message name="System.HAGroup.get_trunk_attribute_valueRequest">
403
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
404
+ <part name="trunks" type="tns:Common.StringSequenceSequence"/>
405
+ </message>
406
+ <message name="System.HAGroup.get_trunk_attribute_valueResponse">
407
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
408
+ </message>
409
+
410
+ <message name="System.HAGroup.get_trunk_scoreRequest">
411
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
412
+ <part name="trunks" type="tns:Common.StringSequenceSequence"/>
413
+ </message>
414
+ <message name="System.HAGroup.get_trunk_scoreResponse">
415
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
416
+ </message>
417
+
418
+ <message name="System.HAGroup.add_clusterRequest">
419
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
420
+ <part name="clusters" type="tns:Common.StringSequenceSequence"/>
421
+ <part name="weights" type="tns:Common.ULongSequenceSequence"/>
422
+ </message>
423
+ <message name="System.HAGroup.add_clusterResponse">
424
+ </message>
425
+
426
+ <message name="System.HAGroup.remove_clusterRequest">
427
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
428
+ <part name="clusters" type="tns:Common.StringSequenceSequence"/>
429
+ </message>
430
+ <message name="System.HAGroup.remove_clusterResponse">
431
+ </message>
432
+
433
+ <message name="System.HAGroup.remove_all_clustersRequest">
434
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
435
+ </message>
436
+ <message name="System.HAGroup.remove_all_clustersResponse">
437
+ </message>
438
+
439
+ <message name="System.HAGroup.get_clusterRequest">
440
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
441
+ </message>
442
+ <message name="System.HAGroup.get_clusterResponse">
443
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
444
+ </message>
445
+
446
+ <message name="System.HAGroup.set_cluster_attributeRequest">
447
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
448
+ <part name="clusters" type="tns:Common.StringSequenceSequence"/>
449
+ <part name="attributes" type="tns:System.HAGroup.HAGroupClusterAttributeSequenceSequence"/>
450
+ </message>
451
+ <message name="System.HAGroup.set_cluster_attributeResponse">
452
+ </message>
453
+
454
+ <message name="System.HAGroup.get_cluster_attributeRequest">
455
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
456
+ <part name="clusters" type="tns:Common.StringSequenceSequence"/>
457
+ </message>
458
+ <message name="System.HAGroup.get_cluster_attributeResponse">
459
+ <part name="return" type="tns:System.HAGroup.HAGroupClusterAttributeSequenceSequence"/>
460
+ </message>
461
+
462
+ <message name="System.HAGroup.set_cluster_weightRequest">
463
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
464
+ <part name="clusters" type="tns:Common.StringSequenceSequence"/>
465
+ <part name="weights" type="tns:Common.ULongSequenceSequence"/>
466
+ </message>
467
+ <message name="System.HAGroup.set_cluster_weightResponse">
468
+ </message>
469
+
470
+ <message name="System.HAGroup.get_cluster_weightRequest">
471
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
472
+ <part name="clusters" type="tns:Common.StringSequenceSequence"/>
473
+ </message>
474
+ <message name="System.HAGroup.get_cluster_weightResponse">
475
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
476
+ </message>
477
+
478
+ <message name="System.HAGroup.set_cluster_attribute_thresholdRequest">
479
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
480
+ <part name="clusters" type="tns:Common.StringSequenceSequence"/>
481
+ <part name="thresholds" type="tns:Common.ULongSequenceSequence"/>
482
+ </message>
483
+ <message name="System.HAGroup.set_cluster_attribute_thresholdResponse">
484
+ </message>
485
+
486
+ <message name="System.HAGroup.get_cluster_attribute_thresholdRequest">
487
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
488
+ <part name="clusters" type="tns:Common.StringSequenceSequence"/>
489
+ </message>
490
+ <message name="System.HAGroup.get_cluster_attribute_thresholdResponse">
491
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
492
+ </message>
493
+
494
+ <message name="System.HAGroup.get_cluster_attribute_valueRequest">
495
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
496
+ <part name="clusters" type="tns:Common.StringSequenceSequence"/>
497
+ </message>
498
+ <message name="System.HAGroup.get_cluster_attribute_valueResponse">
499
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
500
+ </message>
501
+
502
+ <message name="System.HAGroup.get_cluster_scoreRequest">
503
+ <part name="ha_groups" type="tns:Common.StringSequence"/>
504
+ <part name="clusters" type="tns:Common.StringSequenceSequence"/>
505
+ </message>
506
+ <message name="System.HAGroup.get_cluster_scoreResponse">
507
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
508
+ </message>
509
+
510
+ <message name="System.HAGroup.get_versionRequest">
511
+ </message>
512
+ <message name="System.HAGroup.get_versionResponse">
513
+ <part name="return" type="xsd:string"/>
514
+ </message>
515
+
516
+ <!-- portType -->
517
+
518
+ <portType name="System.HAGroupPortType">
519
+ <operation name="get_list">
520
+ <documentation>
521
+ Gets the names of all high availability groups.
522
+
523
+ </documentation>
524
+ <input message="tns:System.HAGroup.get_listRequest"/>
525
+ <output message="tns:System.HAGroup.get_listResponse"/>
526
+ </operation>
527
+ <operation name="create">
528
+ <documentation>
529
+ Creates a set of high availability groups.
530
+
531
+ </documentation>
532
+ <input message="tns:System.HAGroup.createRequest"/>
533
+ <output message="tns:System.HAGroup.createResponse"/>
534
+ </operation>
535
+ <operation name="delete_high_availability_group">
536
+ <documentation>
537
+ Deletes a set of high availability groups.
538
+
539
+ </documentation>
540
+ <input message="tns:System.HAGroup.delete_high_availability_groupRequest"/>
541
+ <output message="tns:System.HAGroup.delete_high_availability_groupResponse"/>
542
+ </operation>
543
+ <operation name="delete_all_high_availability_groups">
544
+ <documentation>
545
+ Deletes all high availability groups.
546
+
547
+ </documentation>
548
+ <input message="tns:System.HAGroup.delete_all_high_availability_groupsRequest"/>
549
+ <output message="tns:System.HAGroup.delete_all_high_availability_groupsResponse"/>
550
+ </operation>
551
+ <operation name="set_enabled_state">
552
+ <documentation>
553
+ Sets whether the score for a group is enabled for use to determine
554
+ system failover for a set of high availability groups.
555
+
556
+ </documentation>
557
+ <input message="tns:System.HAGroup.set_enabled_stateRequest"/>
558
+ <output message="tns:System.HAGroup.set_enabled_stateResponse"/>
559
+ </operation>
560
+ <operation name="get_enabled_state">
561
+ <documentation>
562
+ Gets whether the score for a group is enabled for use to determine
563
+ system failover for a set of high availability groups.
564
+
565
+ </documentation>
566
+ <input message="tns:System.HAGroup.get_enabled_stateRequest"/>
567
+ <output message="tns:System.HAGroup.get_enabled_stateResponse"/>
568
+ </operation>
569
+ <operation name="set_active_score">
570
+ <documentation>
571
+ Sets the value added to the total score if the system is active for
572
+ a set of high availability groups. If zero, the active system
573
+ scoring is disabled. Otherwise, this value must range between 0
574
+ and 100.
575
+
576
+ </documentation>
577
+ <input message="tns:System.HAGroup.set_active_scoreRequest"/>
578
+ <output message="tns:System.HAGroup.set_active_scoreResponse"/>
579
+ </operation>
580
+ <operation name="get_active_score">
581
+ <documentation>
582
+ Gets the value added to the total score if the system is active for
583
+ a set of high availability groups.
584
+
585
+ </documentation>
586
+ <input message="tns:System.HAGroup.get_active_scoreRequest"/>
587
+ <output message="tns:System.HAGroup.get_active_scoreResponse"/>
588
+ </operation>
589
+ <operation name="get_total_score">
590
+ <documentation>
591
+ Gets the current total score for a set of high availablity groups.
592
+
593
+ </documentation>
594
+ <input message="tns:System.HAGroup.get_total_scoreRequest"/>
595
+ <output message="tns:System.HAGroup.get_total_scoreResponse"/>
596
+ </operation>
597
+ <operation name="set_description">
598
+ <documentation>
599
+ Sets the description for a set of high availability groups.
600
+
601
+ This is an arbitrary field which can be used for any purpose.
602
+
603
+ </documentation>
604
+ <input message="tns:System.HAGroup.set_descriptionRequest"/>
605
+ <output message="tns:System.HAGroup.set_descriptionResponse"/>
606
+ </operation>
607
+ <operation name="get_description">
608
+ <documentation>
609
+ Gets the descriptions for a set of high availability groups.
610
+
611
+ </documentation>
612
+ <input message="tns:System.HAGroup.get_descriptionRequest"/>
613
+ <output message="tns:System.HAGroup.get_descriptionResponse"/>
614
+ </operation>
615
+ <operation name="add_pool">
616
+ <documentation>
617
+ Adds pools to a set of high availability groups. Each pool's score
618
+ contributes to the total score for its high availability group.
619
+
620
+ </documentation>
621
+ <input message="tns:System.HAGroup.add_poolRequest"/>
622
+ <output message="tns:System.HAGroup.add_poolResponse"/>
623
+ </operation>
624
+ <operation name="remove_pool">
625
+ <documentation>
626
+ Removes pools from a set of high availability groups.
627
+
628
+ </documentation>
629
+ <input message="tns:System.HAGroup.remove_poolRequest"/>
630
+ <output message="tns:System.HAGroup.remove_poolResponse"/>
631
+ </operation>
632
+ <operation name="remove_all_pools">
633
+ <documentation>
634
+ Removes all pools from a set of high availability groups.
635
+
636
+ </documentation>
637
+ <input message="tns:System.HAGroup.remove_all_poolsRequest"/>
638
+ <output message="tns:System.HAGroup.remove_all_poolsResponse"/>
639
+ </operation>
640
+ <operation name="get_pool">
641
+ <documentation>
642
+ Gets the pools in a set of high availability groups.
643
+
644
+ </documentation>
645
+ <input message="tns:System.HAGroup.get_poolRequest"/>
646
+ <output message="tns:System.HAGroup.get_poolResponse"/>
647
+ </operation>
648
+ <operation name="set_pool_attribute">
649
+ <documentation>
650
+ Sets the attribute used for scoring a set of pools in a set of high
651
+ availability groups.
652
+
653
+ </documentation>
654
+ <input message="tns:System.HAGroup.set_pool_attributeRequest"/>
655
+ <output message="tns:System.HAGroup.set_pool_attributeResponse"/>
656
+ </operation>
657
+ <operation name="get_pool_attribute">
658
+ <documentation>
659
+ Gets the attribute used for scoring a set of pools in a set of high
660
+ availability groups.
661
+
662
+ </documentation>
663
+ <input message="tns:System.HAGroup.get_pool_attributeRequest"/>
664
+ <output message="tns:System.HAGroup.get_pool_attributeResponse"/>
665
+ </operation>
666
+ <operation name="set_pool_weight">
667
+ <documentation>
668
+ Sets the proportional weight of a pool's score in the total score
669
+ for a set of pools in a set of high availability groups.
670
+
671
+ </documentation>
672
+ <input message="tns:System.HAGroup.set_pool_weightRequest"/>
673
+ <output message="tns:System.HAGroup.set_pool_weightResponse"/>
674
+ </operation>
675
+ <operation name="get_pool_weight">
676
+ <documentation>
677
+ Gets the proportional weight of a pool's score in the total score
678
+ for a set of pools in a set of high availability groups.
679
+
680
+ </documentation>
681
+ <input message="tns:System.HAGroup.get_pool_weightRequest"/>
682
+ <output message="tns:System.HAGroup.get_pool_weightResponse"/>
683
+ </operation>
684
+ <operation name="set_pool_attribute_threshold">
685
+ <documentation>
686
+ Sets the value of the scoring attribute below which a pool's
687
+ contribution to the total score is zero for a set of pools in a set
688
+ of high availability groups.
689
+
690
+ </documentation>
691
+ <input message="tns:System.HAGroup.set_pool_attribute_thresholdRequest"/>
692
+ <output message="tns:System.HAGroup.set_pool_attribute_thresholdResponse"/>
693
+ </operation>
694
+ <operation name="get_pool_attribute_threshold">
695
+ <documentation>
696
+ Gets the value of the scoring attribute below which a pools'
697
+ contribution to the total score is zero for a set of pool in a set
698
+ of high availability groups.
699
+
700
+ </documentation>
701
+ <input message="tns:System.HAGroup.get_pool_attribute_thresholdRequest"/>
702
+ <output message="tns:System.HAGroup.get_pool_attribute_thresholdResponse"/>
703
+ </operation>
704
+ <operation name="get_pool_attribute_value">
705
+ <documentation>
706
+ Gets the current value of the scoring attribute for a set of pools
707
+ in a set of high availability groups.
708
+
709
+ </documentation>
710
+ <input message="tns:System.HAGroup.get_pool_attribute_valueRequest"/>
711
+ <output message="tns:System.HAGroup.get_pool_attribute_valueResponse"/>
712
+ </operation>
713
+ <operation name="get_pool_score">
714
+ <documentation>
715
+ Gets the current score for a set of pools for a set of high
716
+ availability groups.
717
+
718
+ </documentation>
719
+ <input message="tns:System.HAGroup.get_pool_scoreRequest"/>
720
+ <output message="tns:System.HAGroup.get_pool_scoreResponse"/>
721
+ </operation>
722
+ <operation name="add_trunk">
723
+ <documentation>
724
+ Adds trunks to a set of high availability groups. Each trunk's
725
+ score contributes to the total score for its high availability
726
+ group.
727
+
728
+ </documentation>
729
+ <input message="tns:System.HAGroup.add_trunkRequest"/>
730
+ <output message="tns:System.HAGroup.add_trunkResponse"/>
731
+ </operation>
732
+ <operation name="remove_trunk">
733
+ <documentation>
734
+ Removes trunks from a set of high availability groups.
735
+
736
+ </documentation>
737
+ <input message="tns:System.HAGroup.remove_trunkRequest"/>
738
+ <output message="tns:System.HAGroup.remove_trunkResponse"/>
739
+ </operation>
740
+ <operation name="remove_all_trunks">
741
+ <documentation>
742
+ Removes all trunks from a set of high availability groups.
743
+
744
+ </documentation>
745
+ <input message="tns:System.HAGroup.remove_all_trunksRequest"/>
746
+ <output message="tns:System.HAGroup.remove_all_trunksResponse"/>
747
+ </operation>
748
+ <operation name="get_trunk">
749
+ <documentation>
750
+ Gets the trunks in a set of high availability groups.
751
+
752
+ </documentation>
753
+ <input message="tns:System.HAGroup.get_trunkRequest"/>
754
+ <output message="tns:System.HAGroup.get_trunkResponse"/>
755
+ </operation>
756
+ <operation name="set_trunk_attribute">
757
+ <documentation>
758
+ Sets the attribute used for scoring a set of trunks in a set of
759
+ high availability groups.
760
+
761
+ </documentation>
762
+ <input message="tns:System.HAGroup.set_trunk_attributeRequest"/>
763
+ <output message="tns:System.HAGroup.set_trunk_attributeResponse"/>
764
+ </operation>
765
+ <operation name="get_trunk_attribute">
766
+ <documentation>
767
+ Gets the attribute used for scoring a set of trunks in a set of
768
+ high availability groups.
769
+
770
+ </documentation>
771
+ <input message="tns:System.HAGroup.get_trunk_attributeRequest"/>
772
+ <output message="tns:System.HAGroup.get_trunk_attributeResponse"/>
773
+ </operation>
774
+ <operation name="set_trunk_weight">
775
+ <documentation>
776
+ Sets the proportional weight of a trunk's score in the total score
777
+ for a set of trunks in a set of high availability groups.
778
+
779
+ </documentation>
780
+ <input message="tns:System.HAGroup.set_trunk_weightRequest"/>
781
+ <output message="tns:System.HAGroup.set_trunk_weightResponse"/>
782
+ </operation>
783
+ <operation name="get_trunk_weight">
784
+ <documentation>
785
+ Gets the proportional weight of a trunk's score in the total score
786
+ for a set of trunks in a set of high availability groups.
787
+
788
+ </documentation>
789
+ <input message="tns:System.HAGroup.get_trunk_weightRequest"/>
790
+ <output message="tns:System.HAGroup.get_trunk_weightResponse"/>
791
+ </operation>
792
+ <operation name="set_trunk_attribute_threshold">
793
+ <documentation>
794
+ Sets the value of the scoring attribute below which a trunk's
795
+ contribution to the total score is zero for a set of trunks in a
796
+ set of high availability groups.
797
+
798
+ </documentation>
799
+ <input message="tns:System.HAGroup.set_trunk_attribute_thresholdRequest"/>
800
+ <output message="tns:System.HAGroup.set_trunk_attribute_thresholdResponse"/>
801
+ </operation>
802
+ <operation name="get_trunk_attribute_threshold">
803
+ <documentation>
804
+ Gets the value of the scoring attribute below which a trunk's
805
+ contribution to the total score is zero for a set of trunks in a
806
+ set of high availability groups.
807
+
808
+ </documentation>
809
+ <input message="tns:System.HAGroup.get_trunk_attribute_thresholdRequest"/>
810
+ <output message="tns:System.HAGroup.get_trunk_attribute_thresholdResponse"/>
811
+ </operation>
812
+ <operation name="get_trunk_attribute_value">
813
+ <documentation>
814
+ Gets the current value of the scoring attribute for a set of trunks
815
+ for a set of high availability groups.
816
+
817
+ </documentation>
818
+ <input message="tns:System.HAGroup.get_trunk_attribute_valueRequest"/>
819
+ <output message="tns:System.HAGroup.get_trunk_attribute_valueResponse"/>
820
+ </operation>
821
+ <operation name="get_trunk_score">
822
+ <documentation>
823
+ Gets the current score for a set of trunks for a set of high
824
+ availability groups.
825
+
826
+ </documentation>
827
+ <input message="tns:System.HAGroup.get_trunk_scoreRequest"/>
828
+ <output message="tns:System.HAGroup.get_trunk_scoreResponse"/>
829
+ </operation>
830
+ <operation name="add_cluster">
831
+ <documentation>
832
+ Adds clusters to a set of high availability groups. Each cluster's
833
+ score contributes to the total score for its high availability
834
+ group.
835
+
836
+ </documentation>
837
+ <input message="tns:System.HAGroup.add_clusterRequest"/>
838
+ <output message="tns:System.HAGroup.add_clusterResponse"/>
839
+ </operation>
840
+ <operation name="remove_cluster">
841
+ <documentation>
842
+ Removes clusters from a set of high availability groups.
843
+
844
+ </documentation>
845
+ <input message="tns:System.HAGroup.remove_clusterRequest"/>
846
+ <output message="tns:System.HAGroup.remove_clusterResponse"/>
847
+ </operation>
848
+ <operation name="remove_all_clusters">
849
+ <documentation>
850
+ Removes all clusters from a set of high availability groups.
851
+
852
+ </documentation>
853
+ <input message="tns:System.HAGroup.remove_all_clustersRequest"/>
854
+ <output message="tns:System.HAGroup.remove_all_clustersResponse"/>
855
+ </operation>
856
+ <operation name="get_cluster">
857
+ <documentation>
858
+ Gets the clusters used to contribute to the score of a set of high
859
+ availability groups.
860
+
861
+ </documentation>
862
+ <input message="tns:System.HAGroup.get_clusterRequest"/>
863
+ <output message="tns:System.HAGroup.get_clusterResponse"/>
864
+ </operation>
865
+ <operation name="set_cluster_attribute">
866
+ <documentation>
867
+ Sets the attribute used for scoring a set of clusters in a set of
868
+ high availability groups.
869
+
870
+ </documentation>
871
+ <input message="tns:System.HAGroup.set_cluster_attributeRequest"/>
872
+ <output message="tns:System.HAGroup.set_cluster_attributeResponse"/>
873
+ </operation>
874
+ <operation name="get_cluster_attribute">
875
+ <documentation>
876
+ Gets the attribute used for scoring a set of clusters in a set of
877
+ high availability groups.
878
+
879
+ </documentation>
880
+ <input message="tns:System.HAGroup.get_cluster_attributeRequest"/>
881
+ <output message="tns:System.HAGroup.get_cluster_attributeResponse"/>
882
+ </operation>
883
+ <operation name="set_cluster_weight">
884
+ <documentation>
885
+ Sets the proportional weight of a cluster's score in the total
886
+ score for a set of clusters in a set of high availability groups.
887
+
888
+ </documentation>
889
+ <input message="tns:System.HAGroup.set_cluster_weightRequest"/>
890
+ <output message="tns:System.HAGroup.set_cluster_weightResponse"/>
891
+ </operation>
892
+ <operation name="get_cluster_weight">
893
+ <documentation>
894
+ Gets the proportional weight of a cluster's score in the total
895
+ score for a set of clusters in a set of high availability groups.
896
+
897
+ </documentation>
898
+ <input message="tns:System.HAGroup.get_cluster_weightRequest"/>
899
+ <output message="tns:System.HAGroup.get_cluster_weightResponse"/>
900
+ </operation>
901
+ <operation name="set_cluster_attribute_threshold">
902
+ <documentation>
903
+ Sets the value of the scoring attribute below which a cluster's
904
+ contribution to the total score is zero for a set of cluster in a
905
+ set of high availability groups.
906
+
907
+ </documentation>
908
+ <input message="tns:System.HAGroup.set_cluster_attribute_thresholdRequest"/>
909
+ <output message="tns:System.HAGroup.set_cluster_attribute_thresholdResponse"/>
910
+ </operation>
911
+ <operation name="get_cluster_attribute_threshold">
912
+ <documentation>
913
+ Gets the value of the scoring attribute below which a cluster's
914
+ contribution to the total score is zero for a set of clusters in a
915
+ set of high availability groups.
916
+
917
+ </documentation>
918
+ <input message="tns:System.HAGroup.get_cluster_attribute_thresholdRequest"/>
919
+ <output message="tns:System.HAGroup.get_cluster_attribute_thresholdResponse"/>
920
+ </operation>
921
+ <operation name="get_cluster_attribute_value">
922
+ <documentation>
923
+ Gets the current value of the scoring attribute for a set of
924
+ clusters for a set of high availability groups.
925
+
926
+ </documentation>
927
+ <input message="tns:System.HAGroup.get_cluster_attribute_valueRequest"/>
928
+ <output message="tns:System.HAGroup.get_cluster_attribute_valueResponse"/>
929
+ </operation>
930
+ <operation name="get_cluster_score">
931
+ <documentation>
932
+ Gets the current score for a set of clusters for a set of high
933
+ availability groups.
934
+
935
+ </documentation>
936
+ <input message="tns:System.HAGroup.get_cluster_scoreRequest"/>
937
+ <output message="tns:System.HAGroup.get_cluster_scoreResponse"/>
938
+ </operation>
939
+ <operation name="get_version">
940
+ <documentation>
941
+ Gets the version information for this interface.
942
+
943
+ </documentation>
944
+ <input message="tns:System.HAGroup.get_versionRequest"/>
945
+ <output message="tns:System.HAGroup.get_versionResponse"/>
946
+ </operation>
947
+ </portType>
948
+
949
+ <!-- binding -->
950
+
951
+ <binding name="System.HAGroupBinding" type="tns:System.HAGroupPortType">
952
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
953
+ <operation name="get_list">
954
+ <documentation>
955
+ Gets the names of all high availability groups.
956
+
957
+ </documentation>
958
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
959
+ <input>
960
+ <soap:body
961
+ use="encoded"
962
+ namespace="urn:iControl:System/HAGroup"
963
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
964
+ </input>
965
+ <output>
966
+ <soap:body
967
+ use="encoded"
968
+ namespace="urn:iControl:System/HAGroup"
969
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
970
+ </output>
971
+ </operation>
972
+
973
+ <operation name="create">
974
+ <documentation>
975
+ Creates a set of high availability groups.
976
+
977
+ </documentation>
978
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
979
+ <input>
980
+ <soap:body
981
+ use="encoded"
982
+ namespace="urn:iControl:System/HAGroup"
983
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
984
+ </input>
985
+ <output>
986
+ <soap:body
987
+ use="encoded"
988
+ namespace="urn:iControl:System/HAGroup"
989
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
990
+ </output>
991
+ </operation>
992
+
993
+ <operation name="delete_high_availability_group">
994
+ <documentation>
995
+ Deletes a set of high availability groups.
996
+
997
+ </documentation>
998
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
999
+ <input>
1000
+ <soap:body
1001
+ use="encoded"
1002
+ namespace="urn:iControl:System/HAGroup"
1003
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1004
+ </input>
1005
+ <output>
1006
+ <soap:body
1007
+ use="encoded"
1008
+ namespace="urn:iControl:System/HAGroup"
1009
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1010
+ </output>
1011
+ </operation>
1012
+
1013
+ <operation name="delete_all_high_availability_groups">
1014
+ <documentation>
1015
+ Deletes all high availability groups.
1016
+
1017
+ </documentation>
1018
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1019
+ <input>
1020
+ <soap:body
1021
+ use="encoded"
1022
+ namespace="urn:iControl:System/HAGroup"
1023
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1024
+ </input>
1025
+ <output>
1026
+ <soap:body
1027
+ use="encoded"
1028
+ namespace="urn:iControl:System/HAGroup"
1029
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1030
+ </output>
1031
+ </operation>
1032
+
1033
+ <operation name="set_enabled_state">
1034
+ <documentation>
1035
+ Sets whether the score for a group is enabled for use to determine
1036
+ system failover for a set of high availability groups.
1037
+
1038
+ </documentation>
1039
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1040
+ <input>
1041
+ <soap:body
1042
+ use="encoded"
1043
+ namespace="urn:iControl:System/HAGroup"
1044
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1045
+ </input>
1046
+ <output>
1047
+ <soap:body
1048
+ use="encoded"
1049
+ namespace="urn:iControl:System/HAGroup"
1050
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1051
+ </output>
1052
+ </operation>
1053
+
1054
+ <operation name="get_enabled_state">
1055
+ <documentation>
1056
+ Gets whether the score for a group is enabled for use to determine
1057
+ system failover for a set of high availability groups.
1058
+
1059
+ </documentation>
1060
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1061
+ <input>
1062
+ <soap:body
1063
+ use="encoded"
1064
+ namespace="urn:iControl:System/HAGroup"
1065
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1066
+ </input>
1067
+ <output>
1068
+ <soap:body
1069
+ use="encoded"
1070
+ namespace="urn:iControl:System/HAGroup"
1071
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1072
+ </output>
1073
+ </operation>
1074
+
1075
+ <operation name="set_active_score">
1076
+ <documentation>
1077
+ Sets the value added to the total score if the system is active for
1078
+ a set of high availability groups. If zero, the active system
1079
+ scoring is disabled. Otherwise, this value must range between 0
1080
+ and 100.
1081
+
1082
+ </documentation>
1083
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1084
+ <input>
1085
+ <soap:body
1086
+ use="encoded"
1087
+ namespace="urn:iControl:System/HAGroup"
1088
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1089
+ </input>
1090
+ <output>
1091
+ <soap:body
1092
+ use="encoded"
1093
+ namespace="urn:iControl:System/HAGroup"
1094
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1095
+ </output>
1096
+ </operation>
1097
+
1098
+ <operation name="get_active_score">
1099
+ <documentation>
1100
+ Gets the value added to the total score if the system is active for
1101
+ a set of high availability groups.
1102
+
1103
+ </documentation>
1104
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1105
+ <input>
1106
+ <soap:body
1107
+ use="encoded"
1108
+ namespace="urn:iControl:System/HAGroup"
1109
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1110
+ </input>
1111
+ <output>
1112
+ <soap:body
1113
+ use="encoded"
1114
+ namespace="urn:iControl:System/HAGroup"
1115
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1116
+ </output>
1117
+ </operation>
1118
+
1119
+ <operation name="get_total_score">
1120
+ <documentation>
1121
+ Gets the current total score for a set of high availablity groups.
1122
+
1123
+ </documentation>
1124
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1125
+ <input>
1126
+ <soap:body
1127
+ use="encoded"
1128
+ namespace="urn:iControl:System/HAGroup"
1129
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1130
+ </input>
1131
+ <output>
1132
+ <soap:body
1133
+ use="encoded"
1134
+ namespace="urn:iControl:System/HAGroup"
1135
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1136
+ </output>
1137
+ </operation>
1138
+
1139
+ <operation name="set_description">
1140
+ <documentation>
1141
+ Sets the description for a set of high availability groups.
1142
+
1143
+ This is an arbitrary field which can be used for any purpose.
1144
+
1145
+ </documentation>
1146
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1147
+ <input>
1148
+ <soap:body
1149
+ use="encoded"
1150
+ namespace="urn:iControl:System/HAGroup"
1151
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1152
+ </input>
1153
+ <output>
1154
+ <soap:body
1155
+ use="encoded"
1156
+ namespace="urn:iControl:System/HAGroup"
1157
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1158
+ </output>
1159
+ </operation>
1160
+
1161
+ <operation name="get_description">
1162
+ <documentation>
1163
+ Gets the descriptions for a set of high availability groups.
1164
+
1165
+ </documentation>
1166
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1167
+ <input>
1168
+ <soap:body
1169
+ use="encoded"
1170
+ namespace="urn:iControl:System/HAGroup"
1171
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1172
+ </input>
1173
+ <output>
1174
+ <soap:body
1175
+ use="encoded"
1176
+ namespace="urn:iControl:System/HAGroup"
1177
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1178
+ </output>
1179
+ </operation>
1180
+
1181
+ <operation name="add_pool">
1182
+ <documentation>
1183
+ Adds pools to a set of high availability groups. Each pool's score
1184
+ contributes to the total score for its high availability group.
1185
+
1186
+ </documentation>
1187
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1188
+ <input>
1189
+ <soap:body
1190
+ use="encoded"
1191
+ namespace="urn:iControl:System/HAGroup"
1192
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1193
+ </input>
1194
+ <output>
1195
+ <soap:body
1196
+ use="encoded"
1197
+ namespace="urn:iControl:System/HAGroup"
1198
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1199
+ </output>
1200
+ </operation>
1201
+
1202
+ <operation name="remove_pool">
1203
+ <documentation>
1204
+ Removes pools from a set of high availability groups.
1205
+
1206
+ </documentation>
1207
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1208
+ <input>
1209
+ <soap:body
1210
+ use="encoded"
1211
+ namespace="urn:iControl:System/HAGroup"
1212
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1213
+ </input>
1214
+ <output>
1215
+ <soap:body
1216
+ use="encoded"
1217
+ namespace="urn:iControl:System/HAGroup"
1218
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1219
+ </output>
1220
+ </operation>
1221
+
1222
+ <operation name="remove_all_pools">
1223
+ <documentation>
1224
+ Removes all pools from a set of high availability groups.
1225
+
1226
+ </documentation>
1227
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1228
+ <input>
1229
+ <soap:body
1230
+ use="encoded"
1231
+ namespace="urn:iControl:System/HAGroup"
1232
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1233
+ </input>
1234
+ <output>
1235
+ <soap:body
1236
+ use="encoded"
1237
+ namespace="urn:iControl:System/HAGroup"
1238
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1239
+ </output>
1240
+ </operation>
1241
+
1242
+ <operation name="get_pool">
1243
+ <documentation>
1244
+ Gets the pools in a set of high availability groups.
1245
+
1246
+ </documentation>
1247
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1248
+ <input>
1249
+ <soap:body
1250
+ use="encoded"
1251
+ namespace="urn:iControl:System/HAGroup"
1252
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1253
+ </input>
1254
+ <output>
1255
+ <soap:body
1256
+ use="encoded"
1257
+ namespace="urn:iControl:System/HAGroup"
1258
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1259
+ </output>
1260
+ </operation>
1261
+
1262
+ <operation name="set_pool_attribute">
1263
+ <documentation>
1264
+ Sets the attribute used for scoring a set of pools in a set of high
1265
+ availability groups.
1266
+
1267
+ </documentation>
1268
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1269
+ <input>
1270
+ <soap:body
1271
+ use="encoded"
1272
+ namespace="urn:iControl:System/HAGroup"
1273
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1274
+ </input>
1275
+ <output>
1276
+ <soap:body
1277
+ use="encoded"
1278
+ namespace="urn:iControl:System/HAGroup"
1279
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1280
+ </output>
1281
+ </operation>
1282
+
1283
+ <operation name="get_pool_attribute">
1284
+ <documentation>
1285
+ Gets the attribute used for scoring a set of pools in a set of high
1286
+ availability groups.
1287
+
1288
+ </documentation>
1289
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1290
+ <input>
1291
+ <soap:body
1292
+ use="encoded"
1293
+ namespace="urn:iControl:System/HAGroup"
1294
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1295
+ </input>
1296
+ <output>
1297
+ <soap:body
1298
+ use="encoded"
1299
+ namespace="urn:iControl:System/HAGroup"
1300
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1301
+ </output>
1302
+ </operation>
1303
+
1304
+ <operation name="set_pool_weight">
1305
+ <documentation>
1306
+ Sets the proportional weight of a pool's score in the total score
1307
+ for a set of pools in a set of high availability groups.
1308
+
1309
+ </documentation>
1310
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1311
+ <input>
1312
+ <soap:body
1313
+ use="encoded"
1314
+ namespace="urn:iControl:System/HAGroup"
1315
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1316
+ </input>
1317
+ <output>
1318
+ <soap:body
1319
+ use="encoded"
1320
+ namespace="urn:iControl:System/HAGroup"
1321
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1322
+ </output>
1323
+ </operation>
1324
+
1325
+ <operation name="get_pool_weight">
1326
+ <documentation>
1327
+ Gets the proportional weight of a pool's score in the total score
1328
+ for a set of pools in a set of high availability groups.
1329
+
1330
+ </documentation>
1331
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1332
+ <input>
1333
+ <soap:body
1334
+ use="encoded"
1335
+ namespace="urn:iControl:System/HAGroup"
1336
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1337
+ </input>
1338
+ <output>
1339
+ <soap:body
1340
+ use="encoded"
1341
+ namespace="urn:iControl:System/HAGroup"
1342
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1343
+ </output>
1344
+ </operation>
1345
+
1346
+ <operation name="set_pool_attribute_threshold">
1347
+ <documentation>
1348
+ Sets the value of the scoring attribute below which a pool's
1349
+ contribution to the total score is zero for a set of pools in a set
1350
+ of high availability groups.
1351
+
1352
+ </documentation>
1353
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1354
+ <input>
1355
+ <soap:body
1356
+ use="encoded"
1357
+ namespace="urn:iControl:System/HAGroup"
1358
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1359
+ </input>
1360
+ <output>
1361
+ <soap:body
1362
+ use="encoded"
1363
+ namespace="urn:iControl:System/HAGroup"
1364
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1365
+ </output>
1366
+ </operation>
1367
+
1368
+ <operation name="get_pool_attribute_threshold">
1369
+ <documentation>
1370
+ Gets the value of the scoring attribute below which a pools'
1371
+ contribution to the total score is zero for a set of pool in a set
1372
+ of high availability groups.
1373
+
1374
+ </documentation>
1375
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1376
+ <input>
1377
+ <soap:body
1378
+ use="encoded"
1379
+ namespace="urn:iControl:System/HAGroup"
1380
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1381
+ </input>
1382
+ <output>
1383
+ <soap:body
1384
+ use="encoded"
1385
+ namespace="urn:iControl:System/HAGroup"
1386
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1387
+ </output>
1388
+ </operation>
1389
+
1390
+ <operation name="get_pool_attribute_value">
1391
+ <documentation>
1392
+ Gets the current value of the scoring attribute for a set of pools
1393
+ in a set of high availability groups.
1394
+
1395
+ </documentation>
1396
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1397
+ <input>
1398
+ <soap:body
1399
+ use="encoded"
1400
+ namespace="urn:iControl:System/HAGroup"
1401
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1402
+ </input>
1403
+ <output>
1404
+ <soap:body
1405
+ use="encoded"
1406
+ namespace="urn:iControl:System/HAGroup"
1407
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1408
+ </output>
1409
+ </operation>
1410
+
1411
+ <operation name="get_pool_score">
1412
+ <documentation>
1413
+ Gets the current score for a set of pools for a set of high
1414
+ availability groups.
1415
+
1416
+ </documentation>
1417
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1418
+ <input>
1419
+ <soap:body
1420
+ use="encoded"
1421
+ namespace="urn:iControl:System/HAGroup"
1422
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1423
+ </input>
1424
+ <output>
1425
+ <soap:body
1426
+ use="encoded"
1427
+ namespace="urn:iControl:System/HAGroup"
1428
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1429
+ </output>
1430
+ </operation>
1431
+
1432
+ <operation name="add_trunk">
1433
+ <documentation>
1434
+ Adds trunks to a set of high availability groups. Each trunk's
1435
+ score contributes to the total score for its high availability
1436
+ group.
1437
+
1438
+ </documentation>
1439
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1440
+ <input>
1441
+ <soap:body
1442
+ use="encoded"
1443
+ namespace="urn:iControl:System/HAGroup"
1444
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1445
+ </input>
1446
+ <output>
1447
+ <soap:body
1448
+ use="encoded"
1449
+ namespace="urn:iControl:System/HAGroup"
1450
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1451
+ </output>
1452
+ </operation>
1453
+
1454
+ <operation name="remove_trunk">
1455
+ <documentation>
1456
+ Removes trunks from a set of high availability groups.
1457
+
1458
+ </documentation>
1459
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1460
+ <input>
1461
+ <soap:body
1462
+ use="encoded"
1463
+ namespace="urn:iControl:System/HAGroup"
1464
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1465
+ </input>
1466
+ <output>
1467
+ <soap:body
1468
+ use="encoded"
1469
+ namespace="urn:iControl:System/HAGroup"
1470
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1471
+ </output>
1472
+ </operation>
1473
+
1474
+ <operation name="remove_all_trunks">
1475
+ <documentation>
1476
+ Removes all trunks from a set of high availability groups.
1477
+
1478
+ </documentation>
1479
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1480
+ <input>
1481
+ <soap:body
1482
+ use="encoded"
1483
+ namespace="urn:iControl:System/HAGroup"
1484
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1485
+ </input>
1486
+ <output>
1487
+ <soap:body
1488
+ use="encoded"
1489
+ namespace="urn:iControl:System/HAGroup"
1490
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1491
+ </output>
1492
+ </operation>
1493
+
1494
+ <operation name="get_trunk">
1495
+ <documentation>
1496
+ Gets the trunks in a set of high availability groups.
1497
+
1498
+ </documentation>
1499
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1500
+ <input>
1501
+ <soap:body
1502
+ use="encoded"
1503
+ namespace="urn:iControl:System/HAGroup"
1504
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1505
+ </input>
1506
+ <output>
1507
+ <soap:body
1508
+ use="encoded"
1509
+ namespace="urn:iControl:System/HAGroup"
1510
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1511
+ </output>
1512
+ </operation>
1513
+
1514
+ <operation name="set_trunk_attribute">
1515
+ <documentation>
1516
+ Sets the attribute used for scoring a set of trunks in a set of
1517
+ high availability groups.
1518
+
1519
+ </documentation>
1520
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1521
+ <input>
1522
+ <soap:body
1523
+ use="encoded"
1524
+ namespace="urn:iControl:System/HAGroup"
1525
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1526
+ </input>
1527
+ <output>
1528
+ <soap:body
1529
+ use="encoded"
1530
+ namespace="urn:iControl:System/HAGroup"
1531
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1532
+ </output>
1533
+ </operation>
1534
+
1535
+ <operation name="get_trunk_attribute">
1536
+ <documentation>
1537
+ Gets the attribute used for scoring a set of trunks in a set of
1538
+ high availability groups.
1539
+
1540
+ </documentation>
1541
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1542
+ <input>
1543
+ <soap:body
1544
+ use="encoded"
1545
+ namespace="urn:iControl:System/HAGroup"
1546
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1547
+ </input>
1548
+ <output>
1549
+ <soap:body
1550
+ use="encoded"
1551
+ namespace="urn:iControl:System/HAGroup"
1552
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1553
+ </output>
1554
+ </operation>
1555
+
1556
+ <operation name="set_trunk_weight">
1557
+ <documentation>
1558
+ Sets the proportional weight of a trunk's score in the total score
1559
+ for a set of trunks in a set of high availability groups.
1560
+
1561
+ </documentation>
1562
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1563
+ <input>
1564
+ <soap:body
1565
+ use="encoded"
1566
+ namespace="urn:iControl:System/HAGroup"
1567
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1568
+ </input>
1569
+ <output>
1570
+ <soap:body
1571
+ use="encoded"
1572
+ namespace="urn:iControl:System/HAGroup"
1573
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1574
+ </output>
1575
+ </operation>
1576
+
1577
+ <operation name="get_trunk_weight">
1578
+ <documentation>
1579
+ Gets the proportional weight of a trunk's score in the total score
1580
+ for a set of trunks in a set of high availability groups.
1581
+
1582
+ </documentation>
1583
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1584
+ <input>
1585
+ <soap:body
1586
+ use="encoded"
1587
+ namespace="urn:iControl:System/HAGroup"
1588
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1589
+ </input>
1590
+ <output>
1591
+ <soap:body
1592
+ use="encoded"
1593
+ namespace="urn:iControl:System/HAGroup"
1594
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1595
+ </output>
1596
+ </operation>
1597
+
1598
+ <operation name="set_trunk_attribute_threshold">
1599
+ <documentation>
1600
+ Sets the value of the scoring attribute below which a trunk's
1601
+ contribution to the total score is zero for a set of trunks in a
1602
+ set of high availability groups.
1603
+
1604
+ </documentation>
1605
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1606
+ <input>
1607
+ <soap:body
1608
+ use="encoded"
1609
+ namespace="urn:iControl:System/HAGroup"
1610
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1611
+ </input>
1612
+ <output>
1613
+ <soap:body
1614
+ use="encoded"
1615
+ namespace="urn:iControl:System/HAGroup"
1616
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1617
+ </output>
1618
+ </operation>
1619
+
1620
+ <operation name="get_trunk_attribute_threshold">
1621
+ <documentation>
1622
+ Gets the value of the scoring attribute below which a trunk's
1623
+ contribution to the total score is zero for a set of trunks in a
1624
+ set of high availability groups.
1625
+
1626
+ </documentation>
1627
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1628
+ <input>
1629
+ <soap:body
1630
+ use="encoded"
1631
+ namespace="urn:iControl:System/HAGroup"
1632
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1633
+ </input>
1634
+ <output>
1635
+ <soap:body
1636
+ use="encoded"
1637
+ namespace="urn:iControl:System/HAGroup"
1638
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1639
+ </output>
1640
+ </operation>
1641
+
1642
+ <operation name="get_trunk_attribute_value">
1643
+ <documentation>
1644
+ Gets the current value of the scoring attribute for a set of trunks
1645
+ for a set of high availability groups.
1646
+
1647
+ </documentation>
1648
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1649
+ <input>
1650
+ <soap:body
1651
+ use="encoded"
1652
+ namespace="urn:iControl:System/HAGroup"
1653
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1654
+ </input>
1655
+ <output>
1656
+ <soap:body
1657
+ use="encoded"
1658
+ namespace="urn:iControl:System/HAGroup"
1659
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1660
+ </output>
1661
+ </operation>
1662
+
1663
+ <operation name="get_trunk_score">
1664
+ <documentation>
1665
+ Gets the current score for a set of trunks for a set of high
1666
+ availability groups.
1667
+
1668
+ </documentation>
1669
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1670
+ <input>
1671
+ <soap:body
1672
+ use="encoded"
1673
+ namespace="urn:iControl:System/HAGroup"
1674
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1675
+ </input>
1676
+ <output>
1677
+ <soap:body
1678
+ use="encoded"
1679
+ namespace="urn:iControl:System/HAGroup"
1680
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1681
+ </output>
1682
+ </operation>
1683
+
1684
+ <operation name="add_cluster">
1685
+ <documentation>
1686
+ Adds clusters to a set of high availability groups. Each cluster's
1687
+ score contributes to the total score for its high availability
1688
+ group.
1689
+
1690
+ </documentation>
1691
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1692
+ <input>
1693
+ <soap:body
1694
+ use="encoded"
1695
+ namespace="urn:iControl:System/HAGroup"
1696
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1697
+ </input>
1698
+ <output>
1699
+ <soap:body
1700
+ use="encoded"
1701
+ namespace="urn:iControl:System/HAGroup"
1702
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1703
+ </output>
1704
+ </operation>
1705
+
1706
+ <operation name="remove_cluster">
1707
+ <documentation>
1708
+ Removes clusters from a set of high availability groups.
1709
+
1710
+ </documentation>
1711
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1712
+ <input>
1713
+ <soap:body
1714
+ use="encoded"
1715
+ namespace="urn:iControl:System/HAGroup"
1716
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1717
+ </input>
1718
+ <output>
1719
+ <soap:body
1720
+ use="encoded"
1721
+ namespace="urn:iControl:System/HAGroup"
1722
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1723
+ </output>
1724
+ </operation>
1725
+
1726
+ <operation name="remove_all_clusters">
1727
+ <documentation>
1728
+ Removes all clusters from a set of high availability groups.
1729
+
1730
+ </documentation>
1731
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1732
+ <input>
1733
+ <soap:body
1734
+ use="encoded"
1735
+ namespace="urn:iControl:System/HAGroup"
1736
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1737
+ </input>
1738
+ <output>
1739
+ <soap:body
1740
+ use="encoded"
1741
+ namespace="urn:iControl:System/HAGroup"
1742
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1743
+ </output>
1744
+ </operation>
1745
+
1746
+ <operation name="get_cluster">
1747
+ <documentation>
1748
+ Gets the clusters used to contribute to the score of a set of high
1749
+ availability groups.
1750
+
1751
+ </documentation>
1752
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1753
+ <input>
1754
+ <soap:body
1755
+ use="encoded"
1756
+ namespace="urn:iControl:System/HAGroup"
1757
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1758
+ </input>
1759
+ <output>
1760
+ <soap:body
1761
+ use="encoded"
1762
+ namespace="urn:iControl:System/HAGroup"
1763
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1764
+ </output>
1765
+ </operation>
1766
+
1767
+ <operation name="set_cluster_attribute">
1768
+ <documentation>
1769
+ Sets the attribute used for scoring a set of clusters in a set of
1770
+ high availability groups.
1771
+
1772
+ </documentation>
1773
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1774
+ <input>
1775
+ <soap:body
1776
+ use="encoded"
1777
+ namespace="urn:iControl:System/HAGroup"
1778
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1779
+ </input>
1780
+ <output>
1781
+ <soap:body
1782
+ use="encoded"
1783
+ namespace="urn:iControl:System/HAGroup"
1784
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1785
+ </output>
1786
+ </operation>
1787
+
1788
+ <operation name="get_cluster_attribute">
1789
+ <documentation>
1790
+ Gets the attribute used for scoring a set of clusters in a set of
1791
+ high availability groups.
1792
+
1793
+ </documentation>
1794
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1795
+ <input>
1796
+ <soap:body
1797
+ use="encoded"
1798
+ namespace="urn:iControl:System/HAGroup"
1799
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1800
+ </input>
1801
+ <output>
1802
+ <soap:body
1803
+ use="encoded"
1804
+ namespace="urn:iControl:System/HAGroup"
1805
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1806
+ </output>
1807
+ </operation>
1808
+
1809
+ <operation name="set_cluster_weight">
1810
+ <documentation>
1811
+ Sets the proportional weight of a cluster's score in the total
1812
+ score for a set of clusters in a set of high availability groups.
1813
+
1814
+ </documentation>
1815
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1816
+ <input>
1817
+ <soap:body
1818
+ use="encoded"
1819
+ namespace="urn:iControl:System/HAGroup"
1820
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1821
+ </input>
1822
+ <output>
1823
+ <soap:body
1824
+ use="encoded"
1825
+ namespace="urn:iControl:System/HAGroup"
1826
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1827
+ </output>
1828
+ </operation>
1829
+
1830
+ <operation name="get_cluster_weight">
1831
+ <documentation>
1832
+ Gets the proportional weight of a cluster's score in the total
1833
+ score for a set of clusters in a set of high availability groups.
1834
+
1835
+ </documentation>
1836
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1837
+ <input>
1838
+ <soap:body
1839
+ use="encoded"
1840
+ namespace="urn:iControl:System/HAGroup"
1841
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1842
+ </input>
1843
+ <output>
1844
+ <soap:body
1845
+ use="encoded"
1846
+ namespace="urn:iControl:System/HAGroup"
1847
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1848
+ </output>
1849
+ </operation>
1850
+
1851
+ <operation name="set_cluster_attribute_threshold">
1852
+ <documentation>
1853
+ Sets the value of the scoring attribute below which a cluster's
1854
+ contribution to the total score is zero for a set of cluster in a
1855
+ set of high availability groups.
1856
+
1857
+ </documentation>
1858
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1859
+ <input>
1860
+ <soap:body
1861
+ use="encoded"
1862
+ namespace="urn:iControl:System/HAGroup"
1863
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1864
+ </input>
1865
+ <output>
1866
+ <soap:body
1867
+ use="encoded"
1868
+ namespace="urn:iControl:System/HAGroup"
1869
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1870
+ </output>
1871
+ </operation>
1872
+
1873
+ <operation name="get_cluster_attribute_threshold">
1874
+ <documentation>
1875
+ Gets the value of the scoring attribute below which a cluster's
1876
+ contribution to the total score is zero for a set of clusters in a
1877
+ set of high availability groups.
1878
+
1879
+ </documentation>
1880
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1881
+ <input>
1882
+ <soap:body
1883
+ use="encoded"
1884
+ namespace="urn:iControl:System/HAGroup"
1885
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1886
+ </input>
1887
+ <output>
1888
+ <soap:body
1889
+ use="encoded"
1890
+ namespace="urn:iControl:System/HAGroup"
1891
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1892
+ </output>
1893
+ </operation>
1894
+
1895
+ <operation name="get_cluster_attribute_value">
1896
+ <documentation>
1897
+ Gets the current value of the scoring attribute for a set of
1898
+ clusters for a set of high availability groups.
1899
+
1900
+ </documentation>
1901
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1902
+ <input>
1903
+ <soap:body
1904
+ use="encoded"
1905
+ namespace="urn:iControl:System/HAGroup"
1906
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1907
+ </input>
1908
+ <output>
1909
+ <soap:body
1910
+ use="encoded"
1911
+ namespace="urn:iControl:System/HAGroup"
1912
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1913
+ </output>
1914
+ </operation>
1915
+
1916
+ <operation name="get_cluster_score">
1917
+ <documentation>
1918
+ Gets the current score for a set of clusters for a set of high
1919
+ availability groups.
1920
+
1921
+ </documentation>
1922
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1923
+ <input>
1924
+ <soap:body
1925
+ use="encoded"
1926
+ namespace="urn:iControl:System/HAGroup"
1927
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1928
+ </input>
1929
+ <output>
1930
+ <soap:body
1931
+ use="encoded"
1932
+ namespace="urn:iControl:System/HAGroup"
1933
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1934
+ </output>
1935
+ </operation>
1936
+
1937
+ <operation name="get_version">
1938
+ <documentation>
1939
+ Gets the version information for this interface.
1940
+
1941
+ </documentation>
1942
+ <soap:operation soapAction="urn:iControl:System/HAGroup"/>
1943
+ <input>
1944
+ <soap:body
1945
+ use="encoded"
1946
+ namespace="urn:iControl:System/HAGroup"
1947
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1948
+ </input>
1949
+ <output>
1950
+ <soap:body
1951
+ use="encoded"
1952
+ namespace="urn:iControl:System/HAGroup"
1953
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1954
+ </output>
1955
+ </operation>
1956
+ </binding>
1957
+
1958
+ <!-- service -->
1959
+
1960
+ <service name="System.HAGroup">
1961
+ <documentation>
1962
+ The high availability group is used to calculate a score to determine
1963
+ the relative health of the system. If enabled for a redundant pair,
1964
+ the system with the highest score becomes the active system, everything
1965
+ else being equal.
1966
+
1967
+ The score is calculated by measuring specified attributes for a set of
1968
+ specified objects (the high availability group). Each object
1969
+ contributes to the total score according to its specified weight. In
1970
+ addition, a value can be added to the total score if a system is
1971
+ currently active, a contribution which can prevent continual failovers
1972
+ due to small fluctuations in the scores on both systems in the
1973
+ redundant pair.
1974
+
1975
+ This interface configures all of the items listed above, plus retrieves
1976
+ the current high availability score and scores for individual objects.
1977
+
1978
+ </documentation>
1979
+ <port name="System.HAGroupPort" binding="tns:System.HAGroupBinding">
1980
+ <soap:address location="https://url_to_service"/>
1981
+ </port>
1982
+ </service>
1983
+ </definitions>