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,2228 @@
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="GlobalLB.Monitor"
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="GlobalLB.Monitor.CommonAttributes">
25
+ <xsd:sequence>
26
+ <xsd:element name="parent_template" type="xsd:string"/>
27
+ <xsd:element name="interval" type="xsd:long"/>
28
+ <xsd:element name="timeout" type="xsd:long"/>
29
+ <xsd:element name="dest_ipport" type="tns:GlobalLB.MonitorIPPort"/>
30
+ <xsd:element name="is_read_only" type="xsd:boolean"/>
31
+ <xsd:element name="is_directly_usable" type="xsd:boolean"/>
32
+ </xsd:sequence>
33
+ </xsd:complexType>
34
+ <xsd:complexType name="GlobalLB.Monitor.CommonAttributesSequence">
35
+ <xsd:complexContent>
36
+ <xsd:restriction base='SOAP-ENC:Array'>
37
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.Monitor.CommonAttributes[]'/>
38
+ </xsd:restriction>
39
+ </xsd:complexContent>
40
+ </xsd:complexType>
41
+ <xsd:complexType name="GlobalLB.Monitor.MonitorTemplate">
42
+ <xsd:sequence>
43
+ <xsd:element name="template_name" type="xsd:string"/>
44
+ <xsd:element name="template_type" type="tns:GlobalLB.Monitor.TemplateType"/>
45
+ </xsd:sequence>
46
+ </xsd:complexType>
47
+ <xsd:simpleType name="GlobalLB.Monitor.StrPropertyType">
48
+ <xsd:restriction base="xsd:string">
49
+ <xsd:enumeration value="STYPE_UNSET">
50
+ <xsd:annotation>
51
+ <xsd:documentation>STYPE_UNSET</xsd:documentation>
52
+ </xsd:annotation>
53
+ </xsd:enumeration>
54
+ <xsd:enumeration value="STYPE_SEND">
55
+ <xsd:annotation>
56
+ <xsd:documentation>STYPE_SEND</xsd:documentation>
57
+ </xsd:annotation>
58
+ </xsd:enumeration>
59
+ <xsd:enumeration value="STYPE_GET">
60
+ <xsd:annotation>
61
+ <xsd:documentation>STYPE_GET</xsd:documentation>
62
+ </xsd:annotation>
63
+ </xsd:enumeration>
64
+ <xsd:enumeration value="STYPE_RECEIVE">
65
+ <xsd:annotation>
66
+ <xsd:documentation>STYPE_RECEIVE</xsd:documentation>
67
+ </xsd:annotation>
68
+ </xsd:enumeration>
69
+ <xsd:enumeration value="STYPE_USERNAME">
70
+ <xsd:annotation>
71
+ <xsd:documentation>STYPE_USERNAME</xsd:documentation>
72
+ </xsd:annotation>
73
+ </xsd:enumeration>
74
+ <xsd:enumeration value="STYPE_PASSWORD">
75
+ <xsd:annotation>
76
+ <xsd:documentation>STYPE_PASSWORD</xsd:documentation>
77
+ </xsd:annotation>
78
+ </xsd:enumeration>
79
+ <xsd:enumeration value="STYPE_RUN">
80
+ <xsd:annotation>
81
+ <xsd:documentation>STYPE_RUN</xsd:documentation>
82
+ </xsd:annotation>
83
+ </xsd:enumeration>
84
+ <xsd:enumeration value="STYPE_NEWSGROUP">
85
+ <xsd:annotation>
86
+ <xsd:documentation>STYPE_NEWSGROUP</xsd:documentation>
87
+ </xsd:annotation>
88
+ </xsd:enumeration>
89
+ <xsd:enumeration value="STYPE_DATABASE">
90
+ <xsd:annotation>
91
+ <xsd:documentation>STYPE_DATABASE</xsd:documentation>
92
+ </xsd:annotation>
93
+ </xsd:enumeration>
94
+ <xsd:enumeration value="STYPE_DOMAIN">
95
+ <xsd:annotation>
96
+ <xsd:documentation>STYPE_DOMAIN</xsd:documentation>
97
+ </xsd:annotation>
98
+ </xsd:enumeration>
99
+ <xsd:enumeration value="STYPE_ARGUMENTS">
100
+ <xsd:annotation>
101
+ <xsd:documentation>STYPE_ARGUMENTS</xsd:documentation>
102
+ </xsd:annotation>
103
+ </xsd:enumeration>
104
+ <xsd:enumeration value="STYPE_FOLDER">
105
+ <xsd:annotation>
106
+ <xsd:documentation>STYPE_FOLDER</xsd:documentation>
107
+ </xsd:annotation>
108
+ </xsd:enumeration>
109
+ <xsd:enumeration value="STYPE_BASE">
110
+ <xsd:annotation>
111
+ <xsd:documentation>STYPE_BASE</xsd:documentation>
112
+ </xsd:annotation>
113
+ </xsd:enumeration>
114
+ <xsd:enumeration value="STYPE_FILTER">
115
+ <xsd:annotation>
116
+ <xsd:documentation>STYPE_FILTER</xsd:documentation>
117
+ </xsd:annotation>
118
+ </xsd:enumeration>
119
+ <xsd:enumeration value="STYPE_SECRET">
120
+ <xsd:annotation>
121
+ <xsd:documentation>STYPE_SECRET</xsd:documentation>
122
+ </xsd:annotation>
123
+ </xsd:enumeration>
124
+ <xsd:enumeration value="STYPE_METHOD">
125
+ <xsd:annotation>
126
+ <xsd:documentation>STYPE_METHOD</xsd:documentation>
127
+ </xsd:annotation>
128
+ </xsd:enumeration>
129
+ <xsd:enumeration value="STYPE_URL">
130
+ <xsd:annotation>
131
+ <xsd:documentation>STYPE_URL</xsd:documentation>
132
+ </xsd:annotation>
133
+ </xsd:enumeration>
134
+ <xsd:enumeration value="STYPE_COMMAND">
135
+ <xsd:annotation>
136
+ <xsd:documentation>STYPE_COMMAND</xsd:documentation>
137
+ </xsd:annotation>
138
+ </xsd:enumeration>
139
+ <xsd:enumeration value="STYPE_METRICS">
140
+ <xsd:annotation>
141
+ <xsd:documentation>STYPE_METRICS</xsd:documentation>
142
+ </xsd:annotation>
143
+ </xsd:enumeration>
144
+ <xsd:enumeration value="STYPE_POST">
145
+ <xsd:annotation>
146
+ <xsd:documentation>STYPE_POST</xsd:documentation>
147
+ </xsd:annotation>
148
+ </xsd:enumeration>
149
+ <xsd:enumeration value="STYPE_USERAGENT">
150
+ <xsd:annotation>
151
+ <xsd:documentation>STYPE_USERAGENT</xsd:documentation>
152
+ </xsd:annotation>
153
+ </xsd:enumeration>
154
+ <xsd:enumeration value="STYPE_AGENT_TYPE">
155
+ <xsd:annotation>
156
+ <xsd:documentation>STYPE_AGENT_TYPE</xsd:documentation>
157
+ </xsd:annotation>
158
+ </xsd:enumeration>
159
+ <xsd:enumeration value="STYPE_CPU_COEFFICIENT">
160
+ <xsd:annotation>
161
+ <xsd:documentation>STYPE_CPU_COEFFICIENT</xsd:documentation>
162
+ </xsd:annotation>
163
+ </xsd:enumeration>
164
+ <xsd:enumeration value="STYPE_CPU_THRESHOLD">
165
+ <xsd:annotation>
166
+ <xsd:documentation>STYPE_CPU_THRESHOLD</xsd:documentation>
167
+ </xsd:annotation>
168
+ </xsd:enumeration>
169
+ <xsd:enumeration value="STYPE_MEMORY_COEFFICIENT">
170
+ <xsd:annotation>
171
+ <xsd:documentation>STYPE_MEMORY_COEFFICIENT</xsd:documentation>
172
+ </xsd:annotation>
173
+ </xsd:enumeration>
174
+ <xsd:enumeration value="STYPE_MEMORY_THRESHOLD">
175
+ <xsd:annotation>
176
+ <xsd:documentation>STYPE_MEMORY_THRESHOLD</xsd:documentation>
177
+ </xsd:annotation>
178
+ </xsd:enumeration>
179
+ <xsd:enumeration value="STYPE_DISK_COEFFICIENT">
180
+ <xsd:annotation>
181
+ <xsd:documentation>STYPE_DISK_COEFFICIENT</xsd:documentation>
182
+ </xsd:annotation>
183
+ </xsd:enumeration>
184
+ <xsd:enumeration value="STYPE_DISK_THRESHOLD">
185
+ <xsd:annotation>
186
+ <xsd:documentation>STYPE_DISK_THRESHOLD</xsd:documentation>
187
+ </xsd:annotation>
188
+ </xsd:enumeration>
189
+ <xsd:enumeration value="STYPE_SNMP_VERSION">
190
+ <xsd:annotation>
191
+ <xsd:documentation>STYPE_SNMP_VERSION</xsd:documentation>
192
+ </xsd:annotation>
193
+ </xsd:enumeration>
194
+ <xsd:enumeration value="STYPE_COMMUNITY">
195
+ <xsd:annotation>
196
+ <xsd:documentation>STYPE_COMMUNITY</xsd:documentation>
197
+ </xsd:annotation>
198
+ </xsd:enumeration>
199
+ <xsd:enumeration value="STYPE_SEND_PACKETS">
200
+ <xsd:annotation>
201
+ <xsd:documentation>STYPE_SEND_PACKETS</xsd:documentation>
202
+ </xsd:annotation>
203
+ </xsd:enumeration>
204
+ <xsd:enumeration value="STYPE_TIMEOUT_PACKETS">
205
+ <xsd:annotation>
206
+ <xsd:documentation>STYPE_TIMEOUT_PACKETS</xsd:documentation>
207
+ </xsd:annotation>
208
+ </xsd:enumeration>
209
+ <xsd:enumeration value="STYPE_RECEIVE_DRAIN">
210
+ <xsd:annotation>
211
+ <xsd:documentation>STYPE_RECEIVE_DRAIN</xsd:documentation>
212
+ </xsd:annotation>
213
+ </xsd:enumeration>
214
+ <xsd:enumeration value="STYPE_RECEIVE_ROW">
215
+ <xsd:annotation>
216
+ <xsd:documentation>STYPE_RECEIVE_ROW</xsd:documentation>
217
+ </xsd:annotation>
218
+ </xsd:enumeration>
219
+ <xsd:enumeration value="STYPE_RECEIVE_COLUMN">
220
+ <xsd:annotation>
221
+ <xsd:documentation>STYPE_RECEIVE_COLUMN</xsd:documentation>
222
+ </xsd:annotation>
223
+ </xsd:enumeration>
224
+ <xsd:enumeration value="STYPE_DEBUG">
225
+ <xsd:annotation>
226
+ <xsd:documentation>STYPE_DEBUG</xsd:documentation>
227
+ </xsd:annotation>
228
+ </xsd:enumeration>
229
+ <xsd:enumeration value="STYPE_SECURITY">
230
+ <xsd:annotation>
231
+ <xsd:documentation>STYPE_SECURITY</xsd:documentation>
232
+ </xsd:annotation>
233
+ </xsd:enumeration>
234
+ <xsd:enumeration value="STYPE_MODE">
235
+ <xsd:annotation>
236
+ <xsd:documentation>STYPE_MODE</xsd:documentation>
237
+ </xsd:annotation>
238
+ </xsd:enumeration>
239
+ <xsd:enumeration value="STYPE_CIPHER_LIST">
240
+ <xsd:annotation>
241
+ <xsd:documentation>STYPE_CIPHER_LIST</xsd:documentation>
242
+ </xsd:annotation>
243
+ </xsd:enumeration>
244
+ <xsd:enumeration value="STYPE_NAMESPACE">
245
+ <xsd:annotation>
246
+ <xsd:documentation>STYPE_NAMESPACE</xsd:documentation>
247
+ </xsd:annotation>
248
+ </xsd:enumeration>
249
+ <xsd:enumeration value="STYPE_PARAMETER_NAME">
250
+ <xsd:annotation>
251
+ <xsd:documentation>STYPE_PARAMETER_NAME</xsd:documentation>
252
+ </xsd:annotation>
253
+ </xsd:enumeration>
254
+ <xsd:enumeration value="STYPE_PARAMETER_VALUE">
255
+ <xsd:annotation>
256
+ <xsd:documentation>STYPE_PARAMETER_VALUE</xsd:documentation>
257
+ </xsd:annotation>
258
+ </xsd:enumeration>
259
+ <xsd:enumeration value="STYPE_PARAMETER_TYPE">
260
+ <xsd:annotation>
261
+ <xsd:documentation>STYPE_PARAMETER_TYPE</xsd:documentation>
262
+ </xsd:annotation>
263
+ </xsd:enumeration>
264
+ <xsd:enumeration value="STYPE_RETURN_TYPE">
265
+ <xsd:annotation>
266
+ <xsd:documentation>STYPE_RETURN_TYPE</xsd:documentation>
267
+ </xsd:annotation>
268
+ </xsd:enumeration>
269
+ <xsd:enumeration value="STYPE_RETURN_VALUE">
270
+ <xsd:annotation>
271
+ <xsd:documentation>STYPE_RETURN_VALUE</xsd:documentation>
272
+ </xsd:annotation>
273
+ </xsd:enumeration>
274
+ <xsd:enumeration value="STYPE_SOAP_FAULT">
275
+ <xsd:annotation>
276
+ <xsd:documentation>STYPE_SOAP_FAULT</xsd:documentation>
277
+ </xsd:annotation>
278
+ </xsd:enumeration>
279
+ <xsd:enumeration value="STYPE_SSL_OPTIONS">
280
+ <xsd:annotation>
281
+ <xsd:documentation>STYPE_SSL_OPTIONS</xsd:documentation>
282
+ </xsd:annotation>
283
+ </xsd:enumeration>
284
+ <xsd:enumeration value="STYPE_CLIENT_CERTIFICATE">
285
+ <xsd:annotation>
286
+ <xsd:documentation>STYPE_CLIENT_CERTIFICATE</xsd:documentation>
287
+ </xsd:annotation>
288
+ </xsd:enumeration>
289
+ <xsd:enumeration value="STYPE_PROTOCOL">
290
+ <xsd:annotation>
291
+ <xsd:documentation>STYPE_PROTOCOL</xsd:documentation>
292
+ </xsd:annotation>
293
+ </xsd:enumeration>
294
+ <xsd:enumeration value="STYPE_MANDATORY_ATTRS">
295
+ <xsd:annotation>
296
+ <xsd:documentation>STYPE_MANDATORY_ATTRS</xsd:documentation>
297
+ </xsd:annotation>
298
+ </xsd:enumeration>
299
+ <xsd:enumeration value="STYPE_FILENAME">
300
+ <xsd:annotation>
301
+ <xsd:documentation>STYPE_FILENAME</xsd:documentation>
302
+ </xsd:annotation>
303
+ </xsd:enumeration>
304
+ <xsd:enumeration value="STYPE_ACCOUNTING_NODE">
305
+ <xsd:annotation>
306
+ <xsd:documentation>STYPE_ACCOUNTING_NODE</xsd:documentation>
307
+ </xsd:annotation>
308
+ </xsd:enumeration>
309
+ <xsd:enumeration value="STYPE_ACCOUNTING_PORT">
310
+ <xsd:annotation>
311
+ <xsd:documentation>STYPE_ACCOUNTING_PORT</xsd:documentation>
312
+ </xsd:annotation>
313
+ </xsd:enumeration>
314
+ <xsd:enumeration value="STYPE_SERVER_ID">
315
+ <xsd:annotation>
316
+ <xsd:documentation>STYPE_SERVER_ID</xsd:documentation>
317
+ </xsd:annotation>
318
+ </xsd:enumeration>
319
+ <xsd:enumeration value="STYPE_CALL_ID">
320
+ <xsd:annotation>
321
+ <xsd:documentation>STYPE_CALL_ID</xsd:documentation>
322
+ </xsd:annotation>
323
+ </xsd:enumeration>
324
+ <xsd:enumeration value="STYPE_SESSION_ID">
325
+ <xsd:annotation>
326
+ <xsd:documentation>STYPE_SESSION_ID</xsd:documentation>
327
+ </xsd:annotation>
328
+ </xsd:enumeration>
329
+ <xsd:enumeration value="STYPE_FRAMED_ADDRESS">
330
+ <xsd:annotation>
331
+ <xsd:documentation>STYPE_FRAMED_ADDRESS</xsd:documentation>
332
+ </xsd:annotation>
333
+ </xsd:enumeration>
334
+ <xsd:enumeration value="STYPE_SNMP_PORT">
335
+ <xsd:annotation>
336
+ <xsd:documentation>STYPE_SNMP_PORT</xsd:documentation>
337
+ </xsd:annotation>
338
+ </xsd:enumeration>
339
+ <xsd:enumeration value="STYPE_AGGREGATE_DYNAMIC_RATIOS">
340
+ <xsd:annotation>
341
+ <xsd:documentation>STYPE_AGGREGATE_DYNAMIC_RATIOS</xsd:documentation>
342
+ </xsd:annotation>
343
+ </xsd:enumeration>
344
+ <xsd:enumeration value="STYPE_DB_COUNT">
345
+ <xsd:annotation>
346
+ <xsd:documentation>STYPE_DB_COUNT</xsd:documentation>
347
+ </xsd:annotation>
348
+ </xsd:enumeration>
349
+ <xsd:enumeration value="STYPE_NAS_IP">
350
+ <xsd:annotation>
351
+ <xsd:documentation>STYPE_NAS_IP</xsd:documentation>
352
+ </xsd:annotation>
353
+ </xsd:enumeration>
354
+ <xsd:enumeration value="STYPE_CLIENT_KEY">
355
+ <xsd:annotation>
356
+ <xsd:documentation>STYPE_CLIENT_KEY</xsd:documentation>
357
+ </xsd:annotation>
358
+ </xsd:enumeration>
359
+ <xsd:enumeration value="STYPE_MAX_LOAD_AVERAGE">
360
+ <xsd:annotation>
361
+ <xsd:documentation>STYPE_MAX_LOAD_AVERAGE</xsd:documentation>
362
+ </xsd:annotation>
363
+ </xsd:enumeration>
364
+ <xsd:enumeration value="STYPE_CONCURRENCY_LIMIT">
365
+ <xsd:annotation>
366
+ <xsd:documentation>STYPE_CONCURRENCY_LIMIT</xsd:documentation>
367
+ </xsd:annotation>
368
+ </xsd:enumeration>
369
+ <xsd:enumeration value="STYPE_FILTER_NEG">
370
+ <xsd:annotation>
371
+ <xsd:documentation>STYPE_FILTER_NEG</xsd:documentation>
372
+ </xsd:annotation>
373
+ </xsd:enumeration>
374
+ <xsd:enumeration value="STYPE_REQUEST">
375
+ <xsd:annotation>
376
+ <xsd:documentation>STYPE_REQUEST</xsd:documentation>
377
+ </xsd:annotation>
378
+ </xsd:enumeration>
379
+ <xsd:enumeration value="STYPE_HEADERS">
380
+ <xsd:annotation>
381
+ <xsd:documentation>STYPE_HEADERS</xsd:documentation>
382
+ </xsd:annotation>
383
+ </xsd:enumeration>
384
+ <xsd:enumeration value="STYPE_DIAMETER_ACCT_APPLICATION_ID">
385
+ <xsd:annotation>
386
+ <xsd:documentation>STYPE_DIAMETER_ACCT_APPLICATION_ID</xsd:documentation>
387
+ </xsd:annotation>
388
+ </xsd:enumeration>
389
+ <xsd:enumeration value="STYPE_DIAMETER_AUTH_APPLICATION_ID">
390
+ <xsd:annotation>
391
+ <xsd:documentation>STYPE_DIAMETER_AUTH_APPLICATION_ID</xsd:documentation>
392
+ </xsd:annotation>
393
+ </xsd:enumeration>
394
+ <xsd:enumeration value="STYPE_DIAMETER_ORIGIN_HOST">
395
+ <xsd:annotation>
396
+ <xsd:documentation>STYPE_DIAMETER_ORIGIN_HOST</xsd:documentation>
397
+ </xsd:annotation>
398
+ </xsd:enumeration>
399
+ <xsd:enumeration value="STYPE_DIAMETER_ORIGIN_REALM">
400
+ <xsd:annotation>
401
+ <xsd:documentation>STYPE_DIAMETER_ORIGIN_REALM</xsd:documentation>
402
+ </xsd:annotation>
403
+ </xsd:enumeration>
404
+ <xsd:enumeration value="STYPE_DIAMETER_HOST_IP_ADDRESS">
405
+ <xsd:annotation>
406
+ <xsd:documentation>STYPE_DIAMETER_HOST_IP_ADDRESS</xsd:documentation>
407
+ </xsd:annotation>
408
+ </xsd:enumeration>
409
+ <xsd:enumeration value="STYPE_DIAMETER_VENDOR_ID">
410
+ <xsd:annotation>
411
+ <xsd:documentation>STYPE_DIAMETER_VENDOR_ID</xsd:documentation>
412
+ </xsd:annotation>
413
+ </xsd:enumeration>
414
+ <xsd:enumeration value="STYPE_DIAMETER_PRODUCT_NAME">
415
+ <xsd:annotation>
416
+ <xsd:documentation>STYPE_DIAMETER_PRODUCT_NAME</xsd:documentation>
417
+ </xsd:annotation>
418
+ </xsd:enumeration>
419
+ <xsd:enumeration value="STYPE_DIAMETER_VENDOR_SPECIFIC_VENDOR_ID">
420
+ <xsd:annotation>
421
+ <xsd:documentation>STYPE_DIAMETER_VENDOR_SPECIFIC_VENDOR_ID</xsd:documentation>
422
+ </xsd:annotation>
423
+ </xsd:enumeration>
424
+ <xsd:enumeration value="STYPE_DIAMETER_VENDOR_SPECIFIC_ACCT_APPLICATION_ID">
425
+ <xsd:annotation>
426
+ <xsd:documentation>STYPE_DIAMETER_VENDOR_SPECIFIC_ACCT_APPLICATION_ID</xsd:documentation>
427
+ </xsd:annotation>
428
+ </xsd:enumeration>
429
+ <xsd:enumeration value="STYPE_DIAMETER_VENDOR_SPECIFIC_AUTH_APPLICATION_ID">
430
+ <xsd:annotation>
431
+ <xsd:documentation>STYPE_DIAMETER_VENDOR_SPECIFIC_AUTH_APPLICATION_ID</xsd:documentation>
432
+ </xsd:annotation>
433
+ </xsd:enumeration>
434
+ <xsd:enumeration value="STYPE_RUN_V2">
435
+ <xsd:annotation>
436
+ <xsd:documentation>STYPE_RUN_V2</xsd:documentation>
437
+ </xsd:annotation>
438
+ </xsd:enumeration>
439
+ <xsd:enumeration value="STYPE_CLIENT_CERTIFICATE_V2">
440
+ <xsd:annotation>
441
+ <xsd:documentation>STYPE_CLIENT_CERTIFICATE_V2</xsd:documentation>
442
+ </xsd:annotation>
443
+ </xsd:enumeration>
444
+ <xsd:enumeration value="STYPE_CLIENT_KEY_V2">
445
+ <xsd:annotation>
446
+ <xsd:documentation>STYPE_CLIENT_KEY_V2</xsd:documentation>
447
+ </xsd:annotation>
448
+ </xsd:enumeration>
449
+ <xsd:enumeration value="STYPE_CHASE_REFERRALS">
450
+ <xsd:annotation>
451
+ <xsd:documentation>STYPE_CHASE_REFERRALS</xsd:documentation>
452
+ </xsd:annotation>
453
+ </xsd:enumeration>
454
+ </xsd:restriction>
455
+ </xsd:simpleType>
456
+ <xsd:complexType name="GlobalLB.Monitor.TemplateTypeSequence">
457
+ <xsd:complexContent>
458
+ <xsd:restriction base='SOAP-ENC:Array'>
459
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.Monitor.TemplateType[]'/>
460
+ </xsd:restriction>
461
+ </xsd:complexContent>
462
+ </xsd:complexType>
463
+ <xsd:simpleType name="Common.EnabledState">
464
+ <xsd:restriction base="xsd:string">
465
+ <xsd:enumeration value="STATE_DISABLED">
466
+ <xsd:annotation>
467
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
468
+ </xsd:annotation>
469
+ </xsd:enumeration>
470
+ <xsd:enumeration value="STATE_ENABLED">
471
+ <xsd:annotation>
472
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
473
+ </xsd:annotation>
474
+ </xsd:enumeration>
475
+ </xsd:restriction>
476
+ </xsd:simpleType>
477
+ <xsd:simpleType name="GlobalLB.AddressType">
478
+ <xsd:restriction base="xsd:string">
479
+ <xsd:enumeration value="ATYPE_UNSET">
480
+ <xsd:annotation>
481
+ <xsd:documentation>ATYPE_UNSET</xsd:documentation>
482
+ </xsd:annotation>
483
+ </xsd:enumeration>
484
+ <xsd:enumeration value="ATYPE_STAR_ADDRESS_STAR_PORT">
485
+ <xsd:annotation>
486
+ <xsd:documentation>ATYPE_STAR_ADDRESS_STAR_PORT</xsd:documentation>
487
+ </xsd:annotation>
488
+ </xsd:enumeration>
489
+ <xsd:enumeration value="ATYPE_STAR_ADDRESS_EXPLICIT_PORT">
490
+ <xsd:annotation>
491
+ <xsd:documentation>ATYPE_STAR_ADDRESS_EXPLICIT_PORT</xsd:documentation>
492
+ </xsd:annotation>
493
+ </xsd:enumeration>
494
+ <xsd:enumeration value="ATYPE_EXPLICIT_ADDRESS_EXPLICIT_PORT">
495
+ <xsd:annotation>
496
+ <xsd:documentation>ATYPE_EXPLICIT_ADDRESS_EXPLICIT_PORT</xsd:documentation>
497
+ </xsd:annotation>
498
+ </xsd:enumeration>
499
+ <xsd:enumeration value="ATYPE_STAR_ADDRESS">
500
+ <xsd:annotation>
501
+ <xsd:documentation>ATYPE_STAR_ADDRESS</xsd:documentation>
502
+ </xsd:annotation>
503
+ </xsd:enumeration>
504
+ <xsd:enumeration value="ATYPE_EXPLICIT_ADDRESS">
505
+ <xsd:annotation>
506
+ <xsd:documentation>ATYPE_EXPLICIT_ADDRESS</xsd:documentation>
507
+ </xsd:annotation>
508
+ </xsd:enumeration>
509
+ </xsd:restriction>
510
+ </xsd:simpleType>
511
+ <xsd:complexType name="Common.StringSequence">
512
+ <xsd:complexContent>
513
+ <xsd:restriction base='SOAP-ENC:Array'>
514
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
515
+ </xsd:restriction>
516
+ </xsd:complexContent>
517
+ </xsd:complexType>
518
+ <xsd:complexType name="GlobalLB.Monitor.StrPropertyTypeSequence">
519
+ <xsd:complexContent>
520
+ <xsd:restriction base='SOAP-ENC:Array'>
521
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.Monitor.StrPropertyType[]'/>
522
+ </xsd:restriction>
523
+ </xsd:complexContent>
524
+ </xsd:complexType>
525
+ <xsd:complexType name="GlobalLB.Monitor.StringValue">
526
+ <xsd:sequence>
527
+ <xsd:element name="type" type="tns:GlobalLB.Monitor.StrPropertyType"/>
528
+ <xsd:element name="value" type="xsd:string"/>
529
+ </xsd:sequence>
530
+ </xsd:complexType>
531
+ <xsd:complexType name="GlobalLB.Monitor.IntPropertyTypeSequence">
532
+ <xsd:complexContent>
533
+ <xsd:restriction base='SOAP-ENC:Array'>
534
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.Monitor.IntPropertyType[]'/>
535
+ </xsd:restriction>
536
+ </xsd:complexContent>
537
+ </xsd:complexType>
538
+ <xsd:complexType name="Common.BooleanSequence">
539
+ <xsd:complexContent>
540
+ <xsd:restriction base='SOAP-ENC:Array'>
541
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:boolean[]'/>
542
+ </xsd:restriction>
543
+ </xsd:complexContent>
544
+ </xsd:complexType>
545
+ <xsd:simpleType name="GlobalLB.MonitorInstanceStateType">
546
+ <xsd:restriction base="xsd:string">
547
+ <xsd:enumeration value="INSTANCE_STATE_UNCHECKED">
548
+ <xsd:annotation>
549
+ <xsd:documentation>INSTANCE_STATE_UNCHECKED</xsd:documentation>
550
+ </xsd:annotation>
551
+ </xsd:enumeration>
552
+ <xsd:enumeration value="INSTANCE_STATE_CHECKING">
553
+ <xsd:annotation>
554
+ <xsd:documentation>INSTANCE_STATE_CHECKING</xsd:documentation>
555
+ </xsd:annotation>
556
+ </xsd:enumeration>
557
+ <xsd:enumeration value="INSTANCE_STATE_UP">
558
+ <xsd:annotation>
559
+ <xsd:documentation>INSTANCE_STATE_UP</xsd:documentation>
560
+ </xsd:annotation>
561
+ </xsd:enumeration>
562
+ <xsd:enumeration value="INSTANCE_STATE_DOWN">
563
+ <xsd:annotation>
564
+ <xsd:documentation>INSTANCE_STATE_DOWN</xsd:documentation>
565
+ </xsd:annotation>
566
+ </xsd:enumeration>
567
+ <xsd:enumeration value="INSTANCE_STATE_FORCED_DOWN">
568
+ <xsd:annotation>
569
+ <xsd:documentation>INSTANCE_STATE_FORCED_DOWN</xsd:documentation>
570
+ </xsd:annotation>
571
+ </xsd:enumeration>
572
+ <xsd:enumeration value="INSTANCE_STATE_DISABLED">
573
+ <xsd:annotation>
574
+ <xsd:documentation>INSTANCE_STATE_DISABLED</xsd:documentation>
575
+ </xsd:annotation>
576
+ </xsd:enumeration>
577
+ <xsd:enumeration value="INSTANCE_STATE_DOWN_BY_IRULE">
578
+ <xsd:annotation>
579
+ <xsd:documentation>INSTANCE_STATE_DOWN_BY_IRULE</xsd:documentation>
580
+ </xsd:annotation>
581
+ </xsd:enumeration>
582
+ <xsd:enumeration value="INSTANCE_STATE_DOWN_WAIT_FOR_MANUAL_RESUME">
583
+ <xsd:annotation>
584
+ <xsd:documentation>INSTANCE_STATE_DOWN_WAIT_FOR_MANUAL_RESUME</xsd:documentation>
585
+ </xsd:annotation>
586
+ </xsd:enumeration>
587
+ </xsd:restriction>
588
+ </xsd:simpleType>
589
+ <xsd:complexType name="GlobalLB.MonitorInstanceSequence">
590
+ <xsd:complexContent>
591
+ <xsd:restriction base='SOAP-ENC:Array'>
592
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.MonitorInstance[]'/>
593
+ </xsd:restriction>
594
+ </xsd:complexContent>
595
+ </xsd:complexType>
596
+ <xsd:complexType name="GlobalLB.Monitor.StringValueSequence">
597
+ <xsd:complexContent>
598
+ <xsd:restriction base='SOAP-ENC:Array'>
599
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.Monitor.StringValue[]'/>
600
+ </xsd:restriction>
601
+ </xsd:complexContent>
602
+ </xsd:complexType>
603
+ <xsd:complexType name="GlobalLB.Monitor.UserDefinedStringValue">
604
+ <xsd:sequence>
605
+ <xsd:element name="name" type="xsd:string"/>
606
+ <xsd:element name="value" type="xsd:string"/>
607
+ </xsd:sequence>
608
+ </xsd:complexType>
609
+ <xsd:simpleType name="GlobalLB.Monitor.TemplateType">
610
+ <xsd:restriction base="xsd:string">
611
+ <xsd:enumeration value="TTYPE_UNSET">
612
+ <xsd:annotation>
613
+ <xsd:documentation>TTYPE_UNSET</xsd:documentation>
614
+ </xsd:annotation>
615
+ </xsd:enumeration>
616
+ <xsd:enumeration value="TTYPE_ICMP">
617
+ <xsd:annotation>
618
+ <xsd:documentation>TTYPE_ICMP</xsd:documentation>
619
+ </xsd:annotation>
620
+ </xsd:enumeration>
621
+ <xsd:enumeration value="TTYPE_TCP">
622
+ <xsd:annotation>
623
+ <xsd:documentation>TTYPE_TCP</xsd:documentation>
624
+ </xsd:annotation>
625
+ </xsd:enumeration>
626
+ <xsd:enumeration value="TTYPE_TCP_ECHO">
627
+ <xsd:annotation>
628
+ <xsd:documentation>TTYPE_TCP_ECHO</xsd:documentation>
629
+ </xsd:annotation>
630
+ </xsd:enumeration>
631
+ <xsd:enumeration value="TTYPE_EXTERNAL">
632
+ <xsd:annotation>
633
+ <xsd:documentation>TTYPE_EXTERNAL</xsd:documentation>
634
+ </xsd:annotation>
635
+ </xsd:enumeration>
636
+ <xsd:enumeration value="TTYPE_HTTP">
637
+ <xsd:annotation>
638
+ <xsd:documentation>TTYPE_HTTP</xsd:documentation>
639
+ </xsd:annotation>
640
+ </xsd:enumeration>
641
+ <xsd:enumeration value="TTYPE_HTTPS">
642
+ <xsd:annotation>
643
+ <xsd:documentation>TTYPE_HTTPS</xsd:documentation>
644
+ </xsd:annotation>
645
+ </xsd:enumeration>
646
+ <xsd:enumeration value="TTYPE_NNTP">
647
+ <xsd:annotation>
648
+ <xsd:documentation>TTYPE_NNTP</xsd:documentation>
649
+ </xsd:annotation>
650
+ </xsd:enumeration>
651
+ <xsd:enumeration value="TTYPE_FTP">
652
+ <xsd:annotation>
653
+ <xsd:documentation>TTYPE_FTP</xsd:documentation>
654
+ </xsd:annotation>
655
+ </xsd:enumeration>
656
+ <xsd:enumeration value="TTYPE_POP3">
657
+ <xsd:annotation>
658
+ <xsd:documentation>TTYPE_POP3</xsd:documentation>
659
+ </xsd:annotation>
660
+ </xsd:enumeration>
661
+ <xsd:enumeration value="TTYPE_SMTP">
662
+ <xsd:annotation>
663
+ <xsd:documentation>TTYPE_SMTP</xsd:documentation>
664
+ </xsd:annotation>
665
+ </xsd:enumeration>
666
+ <xsd:enumeration value="TTYPE_MSSQL">
667
+ <xsd:annotation>
668
+ <xsd:documentation>TTYPE_MSSQL</xsd:documentation>
669
+ </xsd:annotation>
670
+ </xsd:enumeration>
671
+ <xsd:enumeration value="TTYPE_GATEWAY">
672
+ <xsd:annotation>
673
+ <xsd:documentation>TTYPE_GATEWAY</xsd:documentation>
674
+ </xsd:annotation>
675
+ </xsd:enumeration>
676
+ <xsd:enumeration value="TTYPE_IMAP">
677
+ <xsd:annotation>
678
+ <xsd:documentation>TTYPE_IMAP</xsd:documentation>
679
+ </xsd:annotation>
680
+ </xsd:enumeration>
681
+ <xsd:enumeration value="TTYPE_RADIUS">
682
+ <xsd:annotation>
683
+ <xsd:documentation>TTYPE_RADIUS</xsd:documentation>
684
+ </xsd:annotation>
685
+ </xsd:enumeration>
686
+ <xsd:enumeration value="TTYPE_LDAP">
687
+ <xsd:annotation>
688
+ <xsd:documentation>TTYPE_LDAP</xsd:documentation>
689
+ </xsd:annotation>
690
+ </xsd:enumeration>
691
+ <xsd:enumeration value="TTYPE_WMI">
692
+ <xsd:annotation>
693
+ <xsd:documentation>TTYPE_WMI</xsd:documentation>
694
+ </xsd:annotation>
695
+ </xsd:enumeration>
696
+ <xsd:enumeration value="TTYPE_SNMP_DCA">
697
+ <xsd:annotation>
698
+ <xsd:documentation>TTYPE_SNMP_DCA</xsd:documentation>
699
+ </xsd:annotation>
700
+ </xsd:enumeration>
701
+ <xsd:enumeration value="TTYPE_SNMP_DCA_BASE">
702
+ <xsd:annotation>
703
+ <xsd:documentation>TTYPE_SNMP_DCA_BASE</xsd:documentation>
704
+ </xsd:annotation>
705
+ </xsd:enumeration>
706
+ <xsd:enumeration value="TTYPE_REAL_SERVER">
707
+ <xsd:annotation>
708
+ <xsd:documentation>TTYPE_REAL_SERVER</xsd:documentation>
709
+ </xsd:annotation>
710
+ </xsd:enumeration>
711
+ <xsd:enumeration value="TTYPE_UDP">
712
+ <xsd:annotation>
713
+ <xsd:documentation>TTYPE_UDP</xsd:documentation>
714
+ </xsd:annotation>
715
+ </xsd:enumeration>
716
+ <xsd:enumeration value="TTYPE_NONE">
717
+ <xsd:annotation>
718
+ <xsd:documentation>TTYPE_NONE</xsd:documentation>
719
+ </xsd:annotation>
720
+ </xsd:enumeration>
721
+ <xsd:enumeration value="TTYPE_ORACLE">
722
+ <xsd:annotation>
723
+ <xsd:documentation>TTYPE_ORACLE</xsd:documentation>
724
+ </xsd:annotation>
725
+ </xsd:enumeration>
726
+ <xsd:enumeration value="TTYPE_SOAP">
727
+ <xsd:annotation>
728
+ <xsd:documentation>TTYPE_SOAP</xsd:documentation>
729
+ </xsd:annotation>
730
+ </xsd:enumeration>
731
+ <xsd:enumeration value="TTYPE_GATEWAY_ICMP">
732
+ <xsd:annotation>
733
+ <xsd:documentation>TTYPE_GATEWAY_ICMP</xsd:documentation>
734
+ </xsd:annotation>
735
+ </xsd:enumeration>
736
+ <xsd:enumeration value="TTYPE_SIP">
737
+ <xsd:annotation>
738
+ <xsd:documentation>TTYPE_SIP</xsd:documentation>
739
+ </xsd:annotation>
740
+ </xsd:enumeration>
741
+ <xsd:enumeration value="TTYPE_TCP_HALF_OPEN">
742
+ <xsd:annotation>
743
+ <xsd:documentation>TTYPE_TCP_HALF_OPEN</xsd:documentation>
744
+ </xsd:annotation>
745
+ </xsd:enumeration>
746
+ <xsd:enumeration value="TTYPE_SCRIPTED">
747
+ <xsd:annotation>
748
+ <xsd:documentation>TTYPE_SCRIPTED</xsd:documentation>
749
+ </xsd:annotation>
750
+ </xsd:enumeration>
751
+ <xsd:enumeration value="TTYPE_WAP">
752
+ <xsd:annotation>
753
+ <xsd:documentation>TTYPE_WAP</xsd:documentation>
754
+ </xsd:annotation>
755
+ </xsd:enumeration>
756
+ <xsd:enumeration value="TTYPE_BIGIP">
757
+ <xsd:annotation>
758
+ <xsd:documentation>TTYPE_BIGIP</xsd:documentation>
759
+ </xsd:annotation>
760
+ </xsd:enumeration>
761
+ <xsd:enumeration value="TTYPE_BIGIP_LINK">
762
+ <xsd:annotation>
763
+ <xsd:documentation>TTYPE_BIGIP_LINK</xsd:documentation>
764
+ </xsd:annotation>
765
+ </xsd:enumeration>
766
+ <xsd:enumeration value="TTYPE_SNMP_GTM">
767
+ <xsd:annotation>
768
+ <xsd:documentation>TTYPE_SNMP_GTM</xsd:documentation>
769
+ </xsd:annotation>
770
+ </xsd:enumeration>
771
+ <xsd:enumeration value="TTYPE_SNMP_LINK">
772
+ <xsd:annotation>
773
+ <xsd:documentation>TTYPE_SNMP_LINK</xsd:documentation>
774
+ </xsd:annotation>
775
+ </xsd:enumeration>
776
+ <xsd:enumeration value="TTYPE_FIREPASS_GTM">
777
+ <xsd:annotation>
778
+ <xsd:documentation>TTYPE_FIREPASS_GTM</xsd:documentation>
779
+ </xsd:annotation>
780
+ </xsd:enumeration>
781
+ <xsd:enumeration value="TTYPE_RADIUS_ACCOUNTING">
782
+ <xsd:annotation>
783
+ <xsd:documentation>TTYPE_RADIUS_ACCOUNTING</xsd:documentation>
784
+ </xsd:annotation>
785
+ </xsd:enumeration>
786
+ <xsd:enumeration value="TTYPE_DIAMETER">
787
+ <xsd:annotation>
788
+ <xsd:documentation>TTYPE_DIAMETER</xsd:documentation>
789
+ </xsd:annotation>
790
+ </xsd:enumeration>
791
+ <xsd:enumeration value="TTYPE_MYSQL">
792
+ <xsd:annotation>
793
+ <xsd:documentation>TTYPE_MYSQL</xsd:documentation>
794
+ </xsd:annotation>
795
+ </xsd:enumeration>
796
+ <xsd:enumeration value="TTYPE_POSTGRESQL">
797
+ <xsd:annotation>
798
+ <xsd:documentation>TTYPE_POSTGRESQL</xsd:documentation>
799
+ </xsd:annotation>
800
+ </xsd:enumeration>
801
+ </xsd:restriction>
802
+ </xsd:simpleType>
803
+ <xsd:complexType name="GlobalLB.MonitorInstanceState">
804
+ <xsd:sequence>
805
+ <xsd:element name="instance" type="tns:GlobalLB.MonitorInstance"/>
806
+ <xsd:element name="instance_state" type="tns:GlobalLB.MonitorInstanceStateType"/>
807
+ <xsd:element name="enabled_state" type="xsd:boolean"/>
808
+ </xsd:sequence>
809
+ </xsd:complexType>
810
+ <xsd:complexType name="GlobalLB.Monitor.IntegerValueSequence">
811
+ <xsd:complexContent>
812
+ <xsd:restriction base='SOAP-ENC:Array'>
813
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.Monitor.IntegerValue[]'/>
814
+ </xsd:restriction>
815
+ </xsd:complexContent>
816
+ </xsd:complexType>
817
+ <xsd:complexType name="GlobalLB.MonitorInstance">
818
+ <xsd:sequence>
819
+ <xsd:element name="template_name" type="xsd:string"/>
820
+ <xsd:element name="instance_definition" type="tns:GlobalLB.MonitorIPPort"/>
821
+ </xsd:sequence>
822
+ </xsd:complexType>
823
+ <xsd:complexType name="GlobalLB.MonitorIPPortSequence">
824
+ <xsd:complexContent>
825
+ <xsd:restriction base='SOAP-ENC:Array'>
826
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.MonitorIPPort[]'/>
827
+ </xsd:restriction>
828
+ </xsd:complexContent>
829
+ </xsd:complexType>
830
+ <xsd:complexType name="GlobalLB.Monitor.MonitorTemplateSequence">
831
+ <xsd:complexContent>
832
+ <xsd:restriction base='SOAP-ENC:Array'>
833
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.Monitor.MonitorTemplate[]'/>
834
+ </xsd:restriction>
835
+ </xsd:complexContent>
836
+ </xsd:complexType>
837
+ <xsd:complexType name="GlobalLB.Monitor.IntegerValue">
838
+ <xsd:sequence>
839
+ <xsd:element name="type" type="tns:GlobalLB.Monitor.IntPropertyType"/>
840
+ <xsd:element name="value" type="xsd:long"/>
841
+ </xsd:sequence>
842
+ </xsd:complexType>
843
+ <xsd:complexType name="Common.IPPortDefinition">
844
+ <xsd:sequence>
845
+ <xsd:element name="address" type="xsd:string"/>
846
+ <xsd:element name="port" type="xsd:long"/>
847
+ </xsd:sequence>
848
+ </xsd:complexType>
849
+ <xsd:complexType name="GlobalLB.MonitorInstanceStateSequence">
850
+ <xsd:complexContent>
851
+ <xsd:restriction base='SOAP-ENC:Array'>
852
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.MonitorInstanceState[]'/>
853
+ </xsd:restriction>
854
+ </xsd:complexContent>
855
+ </xsd:complexType>
856
+ <xsd:complexType name="GlobalLB.AddressTypeSequence">
857
+ <xsd:complexContent>
858
+ <xsd:restriction base='SOAP-ENC:Array'>
859
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.AddressType[]'/>
860
+ </xsd:restriction>
861
+ </xsd:complexContent>
862
+ </xsd:complexType>
863
+ <xsd:complexType name="GlobalLB.Monitor.UserDefinedStringValueSequence">
864
+ <xsd:complexContent>
865
+ <xsd:restriction base='SOAP-ENC:Array'>
866
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.Monitor.UserDefinedStringValue[]'/>
867
+ </xsd:restriction>
868
+ </xsd:complexContent>
869
+ </xsd:complexType>
870
+ <xsd:simpleType name="GlobalLB.Monitor.IntPropertyType">
871
+ <xsd:restriction base="xsd:string">
872
+ <xsd:enumeration value="ITYPE_UNSET">
873
+ <xsd:annotation>
874
+ <xsd:documentation>ITYPE_UNSET</xsd:documentation>
875
+ </xsd:annotation>
876
+ </xsd:enumeration>
877
+ <xsd:enumeration value="ITYPE_INTERVAL">
878
+ <xsd:annotation>
879
+ <xsd:documentation>ITYPE_INTERVAL</xsd:documentation>
880
+ </xsd:annotation>
881
+ </xsd:enumeration>
882
+ <xsd:enumeration value="ITYPE_TIMEOUT">
883
+ <xsd:annotation>
884
+ <xsd:documentation>ITYPE_TIMEOUT</xsd:documentation>
885
+ </xsd:annotation>
886
+ </xsd:enumeration>
887
+ <xsd:enumeration value="ITYPE_PROBE_INTERVAL">
888
+ <xsd:annotation>
889
+ <xsd:documentation>ITYPE_PROBE_INTERVAL</xsd:documentation>
890
+ </xsd:annotation>
891
+ </xsd:enumeration>
892
+ <xsd:enumeration value="ITYPE_PROBE_TIMEOUT">
893
+ <xsd:annotation>
894
+ <xsd:documentation>ITYPE_PROBE_TIMEOUT</xsd:documentation>
895
+ </xsd:annotation>
896
+ </xsd:enumeration>
897
+ <xsd:enumeration value="ITYPE_PROBE_NUM_PROBES">
898
+ <xsd:annotation>
899
+ <xsd:documentation>ITYPE_PROBE_NUM_PROBES</xsd:documentation>
900
+ </xsd:annotation>
901
+ </xsd:enumeration>
902
+ <xsd:enumeration value="ITYPE_PROBE_NUM_SUCCESSES">
903
+ <xsd:annotation>
904
+ <xsd:documentation>ITYPE_PROBE_NUM_SUCCESSES</xsd:documentation>
905
+ </xsd:annotation>
906
+ </xsd:enumeration>
907
+ </xsd:restriction>
908
+ </xsd:simpleType>
909
+ <xsd:complexType name="GlobalLB.MonitorIPPort">
910
+ <xsd:sequence>
911
+ <xsd:element name="address_type" type="tns:GlobalLB.AddressType"/>
912
+ <xsd:element name="ipport" type="tns:Common.IPPortDefinition"/>
913
+ </xsd:sequence>
914
+ </xsd:complexType>
915
+ <xsd:complexType name="Common.EnabledStateSequence">
916
+ <xsd:complexContent>
917
+ <xsd:restriction base='SOAP-ENC:Array'>
918
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
919
+ </xsd:restriction>
920
+ </xsd:complexContent>
921
+ </xsd:complexType>
922
+ </xsd:schema>
923
+ </types>
924
+
925
+ <!-- message -->
926
+
927
+ <message name="GlobalLB.Monitor.get_template_listRequest">
928
+ </message>
929
+ <message name="GlobalLB.Monitor.get_template_listResponse">
930
+ <part name="return" type="tns:GlobalLB.Monitor.MonitorTemplateSequence"/>
931
+ </message>
932
+
933
+ <message name="GlobalLB.Monitor.create_templateRequest">
934
+ <part name="templates" type="tns:GlobalLB.Monitor.MonitorTemplateSequence"/>
935
+ <part name="template_attributes" type="tns:GlobalLB.Monitor.CommonAttributesSequence"/>
936
+ </message>
937
+ <message name="GlobalLB.Monitor.create_templateResponse">
938
+ </message>
939
+
940
+ <message name="GlobalLB.Monitor.delete_templateRequest">
941
+ <part name="template_names" type="tns:Common.StringSequence"/>
942
+ </message>
943
+ <message name="GlobalLB.Monitor.delete_templateResponse">
944
+ </message>
945
+
946
+ <message name="GlobalLB.Monitor.delete_all_templatesRequest">
947
+ </message>
948
+ <message name="GlobalLB.Monitor.delete_all_templatesResponse">
949
+ </message>
950
+
951
+ <message name="GlobalLB.Monitor.is_template_rootRequest">
952
+ <part name="template_names" type="tns:Common.StringSequence"/>
953
+ </message>
954
+ <message name="GlobalLB.Monitor.is_template_rootResponse">
955
+ <part name="return" type="tns:Common.BooleanSequence"/>
956
+ </message>
957
+
958
+ <message name="GlobalLB.Monitor.is_template_directly_usableRequest">
959
+ <part name="template_names" type="tns:Common.StringSequence"/>
960
+ </message>
961
+ <message name="GlobalLB.Monitor.is_template_directly_usableResponse">
962
+ <part name="return" type="tns:Common.BooleanSequence"/>
963
+ </message>
964
+
965
+ <message name="GlobalLB.Monitor.is_template_read_onlyRequest">
966
+ <part name="template_names" type="tns:Common.StringSequence"/>
967
+ </message>
968
+ <message name="GlobalLB.Monitor.is_template_read_onlyResponse">
969
+ <part name="return" type="tns:Common.BooleanSequence"/>
970
+ </message>
971
+
972
+ <message name="GlobalLB.Monitor.get_parent_templateRequest">
973
+ <part name="template_names" type="tns:Common.StringSequence"/>
974
+ </message>
975
+ <message name="GlobalLB.Monitor.get_parent_templateResponse">
976
+ <part name="return" type="tns:Common.StringSequence"/>
977
+ </message>
978
+
979
+ <message name="GlobalLB.Monitor.get_template_address_typeRequest">
980
+ <part name="template_names" type="tns:Common.StringSequence"/>
981
+ </message>
982
+ <message name="GlobalLB.Monitor.get_template_address_typeResponse">
983
+ <part name="return" type="tns:GlobalLB.AddressTypeSequence"/>
984
+ </message>
985
+
986
+ <message name="GlobalLB.Monitor.get_template_typeRequest">
987
+ <part name="template_names" type="tns:Common.StringSequence"/>
988
+ </message>
989
+ <message name="GlobalLB.Monitor.get_template_typeResponse">
990
+ <part name="return" type="tns:GlobalLB.Monitor.TemplateTypeSequence"/>
991
+ </message>
992
+
993
+ <message name="GlobalLB.Monitor.set_template_stateRequest">
994
+ <part name="template_names" type="tns:Common.StringSequence"/>
995
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
996
+ </message>
997
+ <message name="GlobalLB.Monitor.set_template_stateResponse">
998
+ </message>
999
+
1000
+ <message name="GlobalLB.Monitor.get_template_stateRequest">
1001
+ <part name="template_names" type="tns:Common.StringSequence"/>
1002
+ </message>
1003
+ <message name="GlobalLB.Monitor.get_template_stateResponse">
1004
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
1005
+ </message>
1006
+
1007
+ <message name="GlobalLB.Monitor.set_template_reverse_modeRequest">
1008
+ <part name="template_names" type="tns:Common.StringSequence"/>
1009
+ <part name="reverse_modes" type="tns:Common.BooleanSequence"/>
1010
+ </message>
1011
+ <message name="GlobalLB.Monitor.set_template_reverse_modeResponse">
1012
+ </message>
1013
+
1014
+ <message name="GlobalLB.Monitor.get_template_reverse_modeRequest">
1015
+ <part name="template_names" type="tns:Common.StringSequence"/>
1016
+ </message>
1017
+ <message name="GlobalLB.Monitor.get_template_reverse_modeResponse">
1018
+ <part name="return" type="tns:Common.BooleanSequence"/>
1019
+ </message>
1020
+
1021
+ <message name="GlobalLB.Monitor.set_template_transparent_modeRequest">
1022
+ <part name="template_names" type="tns:Common.StringSequence"/>
1023
+ <part name="transparent_modes" type="tns:Common.BooleanSequence"/>
1024
+ </message>
1025
+ <message name="GlobalLB.Monitor.set_template_transparent_modeResponse">
1026
+ </message>
1027
+
1028
+ <message name="GlobalLB.Monitor.get_template_transparent_modeRequest">
1029
+ <part name="template_names" type="tns:Common.StringSequence"/>
1030
+ </message>
1031
+ <message name="GlobalLB.Monitor.get_template_transparent_modeResponse">
1032
+ <part name="return" type="tns:Common.BooleanSequence"/>
1033
+ </message>
1034
+
1035
+ <message name="GlobalLB.Monitor.set_manual_resume_stateRequest">
1036
+ <part name="template_names" type="tns:Common.StringSequence"/>
1037
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
1038
+ </message>
1039
+ <message name="GlobalLB.Monitor.set_manual_resume_stateResponse">
1040
+ </message>
1041
+
1042
+ <message name="GlobalLB.Monitor.get_manual_resume_stateRequest">
1043
+ <part name="template_names" type="tns:Common.StringSequence"/>
1044
+ </message>
1045
+ <message name="GlobalLB.Monitor.get_manual_resume_stateResponse">
1046
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
1047
+ </message>
1048
+
1049
+ <message name="GlobalLB.Monitor.set_ignore_down_response_stateRequest">
1050
+ <part name="template_names" type="tns:Common.StringSequence"/>
1051
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
1052
+ </message>
1053
+ <message name="GlobalLB.Monitor.set_ignore_down_response_stateResponse">
1054
+ </message>
1055
+
1056
+ <message name="GlobalLB.Monitor.get_ignore_down_response_stateRequest">
1057
+ <part name="template_names" type="tns:Common.StringSequence"/>
1058
+ </message>
1059
+ <message name="GlobalLB.Monitor.get_ignore_down_response_stateResponse">
1060
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
1061
+ </message>
1062
+
1063
+ <message name="GlobalLB.Monitor.set_template_destinationRequest">
1064
+ <part name="template_names" type="tns:Common.StringSequence"/>
1065
+ <part name="destinations" type="tns:GlobalLB.MonitorIPPortSequence"/>
1066
+ </message>
1067
+ <message name="GlobalLB.Monitor.set_template_destinationResponse">
1068
+ </message>
1069
+
1070
+ <message name="GlobalLB.Monitor.get_template_destinationRequest">
1071
+ <part name="template_names" type="tns:Common.StringSequence"/>
1072
+ </message>
1073
+ <message name="GlobalLB.Monitor.get_template_destinationResponse">
1074
+ <part name="return" type="tns:GlobalLB.MonitorIPPortSequence"/>
1075
+ </message>
1076
+
1077
+ <message name="GlobalLB.Monitor.set_descriptionRequest">
1078
+ <part name="template_names" type="tns:Common.StringSequence"/>
1079
+ <part name="descriptions" type="tns:Common.StringSequence"/>
1080
+ </message>
1081
+ <message name="GlobalLB.Monitor.set_descriptionResponse">
1082
+ </message>
1083
+
1084
+ <message name="GlobalLB.Monitor.get_descriptionRequest">
1085
+ <part name="template_names" type="tns:Common.StringSequence"/>
1086
+ </message>
1087
+ <message name="GlobalLB.Monitor.get_descriptionResponse">
1088
+ <part name="return" type="tns:Common.StringSequence"/>
1089
+ </message>
1090
+
1091
+ <message name="GlobalLB.Monitor.set_template_integer_propertyRequest">
1092
+ <part name="template_names" type="tns:Common.StringSequence"/>
1093
+ <part name="values" type="tns:GlobalLB.Monitor.IntegerValueSequence"/>
1094
+ </message>
1095
+ <message name="GlobalLB.Monitor.set_template_integer_propertyResponse">
1096
+ </message>
1097
+
1098
+ <message name="GlobalLB.Monitor.get_template_integer_propertyRequest">
1099
+ <part name="template_names" type="tns:Common.StringSequence"/>
1100
+ <part name="property_types" type="tns:GlobalLB.Monitor.IntPropertyTypeSequence"/>
1101
+ </message>
1102
+ <message name="GlobalLB.Monitor.get_template_integer_propertyResponse">
1103
+ <part name="return" type="tns:GlobalLB.Monitor.IntegerValueSequence"/>
1104
+ </message>
1105
+
1106
+ <message name="GlobalLB.Monitor.set_template_string_propertyRequest">
1107
+ <part name="template_names" type="tns:Common.StringSequence"/>
1108
+ <part name="values" type="tns:GlobalLB.Monitor.StringValueSequence"/>
1109
+ </message>
1110
+ <message name="GlobalLB.Monitor.set_template_string_propertyResponse">
1111
+ </message>
1112
+
1113
+ <message name="GlobalLB.Monitor.get_template_string_propertyRequest">
1114
+ <part name="template_names" type="tns:Common.StringSequence"/>
1115
+ <part name="property_types" type="tns:GlobalLB.Monitor.StrPropertyTypeSequence"/>
1116
+ </message>
1117
+ <message name="GlobalLB.Monitor.get_template_string_propertyResponse">
1118
+ <part name="return" type="tns:GlobalLB.Monitor.StringValueSequence"/>
1119
+ </message>
1120
+
1121
+ <message name="GlobalLB.Monitor.set_template_user_defined_string_propertyRequest">
1122
+ <part name="template_names" type="tns:Common.StringSequence"/>
1123
+ <part name="values" type="tns:GlobalLB.Monitor.UserDefinedStringValueSequence"/>
1124
+ </message>
1125
+ <message name="GlobalLB.Monitor.set_template_user_defined_string_propertyResponse">
1126
+ </message>
1127
+
1128
+ <message name="GlobalLB.Monitor.get_template_user_defined_string_propertyRequest">
1129
+ <part name="template_names" type="tns:Common.StringSequence"/>
1130
+ <part name="property_names" type="tns:Common.StringSequence"/>
1131
+ </message>
1132
+ <message name="GlobalLB.Monitor.get_template_user_defined_string_propertyResponse">
1133
+ <part name="return" type="tns:GlobalLB.Monitor.UserDefinedStringValueSequence"/>
1134
+ </message>
1135
+
1136
+ <message name="GlobalLB.Monitor.set_instance_stateRequest">
1137
+ <part name="instance_states" type="tns:GlobalLB.MonitorInstanceStateSequence"/>
1138
+ </message>
1139
+ <message name="GlobalLB.Monitor.set_instance_stateResponse">
1140
+ </message>
1141
+
1142
+ <message name="GlobalLB.Monitor.get_instance_stateRequest">
1143
+ <part name="instances" type="tns:GlobalLB.MonitorInstanceSequence"/>
1144
+ </message>
1145
+ <message name="GlobalLB.Monitor.get_instance_stateResponse">
1146
+ <part name="return" type="tns:GlobalLB.MonitorInstanceStateSequence"/>
1147
+ </message>
1148
+
1149
+ <message name="GlobalLB.Monitor.get_versionRequest">
1150
+ </message>
1151
+ <message name="GlobalLB.Monitor.get_versionResponse">
1152
+ <part name="return" type="xsd:string"/>
1153
+ </message>
1154
+
1155
+ <!-- portType -->
1156
+
1157
+ <portType name="GlobalLB.MonitorPortType">
1158
+ <operation name="get_template_list">
1159
+ <documentation>
1160
+ Gets the list of monitor templates.
1161
+
1162
+
1163
+ </documentation>
1164
+ <input message="tns:GlobalLB.Monitor.get_template_listRequest"/>
1165
+ <output message="tns:GlobalLB.Monitor.get_template_listResponse"/>
1166
+ </operation>
1167
+ <operation name="create_template">
1168
+ <documentation>
1169
+ Creates monitor templates with some basic attributes.
1170
+ If the "parent_template" attribute in "template_attributes" is empty, then the
1171
+ new template is based on the template type field given in "templates".
1172
+ If the "parent_template" attribute in "template_attributes" is specified, then
1173
+ the new template is derived from the "parent_template", and template type field
1174
+ in "templates" is ignored.
1175
+ If "parent_template" is empty, and the template type field in "templates" is not
1176
+ specified, then the new template is a root template.
1177
+
1178
+
1179
+ </documentation>
1180
+ <input message="tns:GlobalLB.Monitor.create_templateRequest"/>
1181
+ <output message="tns:GlobalLB.Monitor.create_templateResponse"/>
1182
+ </operation>
1183
+ <operation name="delete_template">
1184
+ <documentation>
1185
+ Deletes the specified monitor templates.
1186
+
1187
+
1188
+ </documentation>
1189
+ <input message="tns:GlobalLB.Monitor.delete_templateRequest"/>
1190
+ <output message="tns:GlobalLB.Monitor.delete_templateResponse"/>
1191
+ </operation>
1192
+ <operation name="delete_all_templates">
1193
+ <documentation>
1194
+ Deletes all user-defined (non-root) monitor templates.
1195
+
1196
+
1197
+ </documentation>
1198
+ <input message="tns:GlobalLB.Monitor.delete_all_templatesRequest"/>
1199
+ <output message="tns:GlobalLB.Monitor.delete_all_templatesResponse"/>
1200
+ </operation>
1201
+ <operation name="is_template_root">
1202
+ <documentation>
1203
+ Determines if the specified monitor templates are of the base monitor templates.
1204
+
1205
+
1206
+ </documentation>
1207
+ <input message="tns:GlobalLB.Monitor.is_template_rootRequest"/>
1208
+ <output message="tns:GlobalLB.Monitor.is_template_rootResponse"/>
1209
+ </operation>
1210
+ <operation name="is_template_directly_usable">
1211
+ <documentation>
1212
+ Determines if the specified monitor templates can be used directly,
1213
+ or a user-defined monitor based on each monitor must be created first
1214
+ before it can be used.
1215
+
1216
+
1217
+ </documentation>
1218
+ <input message="tns:GlobalLB.Monitor.is_template_directly_usableRequest"/>
1219
+ <output message="tns:GlobalLB.Monitor.is_template_directly_usableResponse"/>
1220
+ </operation>
1221
+ <operation name="is_template_read_only">
1222
+ <documentation>
1223
+ Determines if the specified monitor templates are read-only.
1224
+ The user can only modify properties for read/write monitor templates.
1225
+
1226
+
1227
+ </documentation>
1228
+ <input message="tns:GlobalLB.Monitor.is_template_read_onlyRequest"/>
1229
+ <output message="tns:GlobalLB.Monitor.is_template_read_onlyResponse"/>
1230
+ </operation>
1231
+ <operation name="get_parent_template">
1232
+ <documentation>
1233
+ Gets the parent monitor templates from which the specified monitor templates are derived.
1234
+ A user-defined monitor template will get its defaults from its parent monitor template.
1235
+
1236
+
1237
+ </documentation>
1238
+ <input message="tns:GlobalLB.Monitor.get_parent_templateRequest"/>
1239
+ <output message="tns:GlobalLB.Monitor.get_parent_templateResponse"/>
1240
+ </operation>
1241
+ <operation name="get_template_address_type">
1242
+ <documentation>
1243
+ Gets the destination address types of the monitor templates. This allows the user to determine
1244
+ what node IP:port can be associated with this monitor when creating a monitor instance.
1245
+
1246
+
1247
+ </documentation>
1248
+ <input message="tns:GlobalLB.Monitor.get_template_address_typeRequest"/>
1249
+ <output message="tns:GlobalLB.Monitor.get_template_address_typeResponse"/>
1250
+ </operation>
1251
+ <operation name="get_template_type">
1252
+ <documentation>
1253
+ Gets the template types of the specified monitor templates.
1254
+
1255
+
1256
+ </documentation>
1257
+ <input message="tns:GlobalLB.Monitor.get_template_typeRequest"/>
1258
+ <output message="tns:GlobalLB.Monitor.get_template_typeResponse"/>
1259
+ </operation>
1260
+ <operation name="set_template_state">
1261
+ <documentation>
1262
+ Sets the monitor templates' enabled/disabled states.
1263
+ This will enable/disable all instances that use the specified templates.
1264
+ This serves as a quick and convenient method to enable/disable all instances,
1265
+ but if you want only to enable/disable a specific instance, use set_instance_enabled.
1266
+
1267
+
1268
+ </documentation>
1269
+ <input message="tns:GlobalLB.Monitor.set_template_stateRequest"/>
1270
+ <output message="tns:GlobalLB.Monitor.set_template_stateResponse"/>
1271
+ </operation>
1272
+ <operation name="get_template_state">
1273
+ <documentation>
1274
+ Gets the enabled/disabled states of the specified monitor templates.
1275
+
1276
+
1277
+ </documentation>
1278
+ <input message="tns:GlobalLB.Monitor.get_template_stateRequest"/>
1279
+ <output message="tns:GlobalLB.Monitor.get_template_stateResponse"/>
1280
+ </operation>
1281
+ <operation name="set_template_reverse_mode">
1282
+ <documentation>
1283
+ Sets the reverse mode states of the specified monitor templates.
1284
+ When in reverse mode, a successful test marks the node down instead of up.
1285
+
1286
+
1287
+ </documentation>
1288
+ <input message="tns:GlobalLB.Monitor.set_template_reverse_modeRequest"/>
1289
+ <output message="tns:GlobalLB.Monitor.set_template_reverse_modeResponse"/>
1290
+ </operation>
1291
+ <operation name="get_template_reverse_mode">
1292
+ <documentation>
1293
+ Gets the reverse mode states of the specified monitor templates.
1294
+
1295
+
1296
+ </documentation>
1297
+ <input message="tns:GlobalLB.Monitor.get_template_reverse_modeRequest"/>
1298
+ <output message="tns:GlobalLB.Monitor.get_template_reverse_modeResponse"/>
1299
+ </operation>
1300
+ <operation name="set_template_transparent_mode">
1301
+ <documentation>
1302
+ Sets the transparent mode states of the specified monitor templates.
1303
+ Transparent mode is used when a user has to go through a firewall to do monitoring.
1304
+
1305
+
1306
+ </documentation>
1307
+ <input message="tns:GlobalLB.Monitor.set_template_transparent_modeRequest"/>
1308
+ <output message="tns:GlobalLB.Monitor.set_template_transparent_modeResponse"/>
1309
+ </operation>
1310
+ <operation name="get_template_transparent_mode">
1311
+ <documentation>
1312
+ Gets the transparent mode states of the specified monitor templates.
1313
+
1314
+
1315
+ </documentation>
1316
+ <input message="tns:GlobalLB.Monitor.get_template_transparent_modeRequest"/>
1317
+ <output message="tns:GlobalLB.Monitor.get_template_transparent_modeResponse"/>
1318
+ </operation>
1319
+ <operation name="set_manual_resume_state">
1320
+ <documentation>
1321
+ Sets the monitor templates' manual resume states. When enabled and a monitor has
1322
+ marked an object down, that object will not be marked up by the monitor, i.e. the
1323
+ object will be manually marked up.
1324
+
1325
+ </documentation>
1326
+ <input message="tns:GlobalLB.Monitor.set_manual_resume_stateRequest"/>
1327
+ <output message="tns:GlobalLB.Monitor.set_manual_resume_stateResponse"/>
1328
+ </operation>
1329
+ <operation name="get_manual_resume_state">
1330
+ <documentation>
1331
+ Gets the monitor templates' manual resume states. When enabled and a monitor has
1332
+ marked an object down, that object will not be marked up by the monitor, i.e. the
1333
+ object will be manually marked up.
1334
+
1335
+ </documentation>
1336
+ <input message="tns:GlobalLB.Monitor.get_manual_resume_stateRequest"/>
1337
+ <output message="tns:GlobalLB.Monitor.get_manual_resume_stateResponse"/>
1338
+ </operation>
1339
+ <operation name="set_ignore_down_response_state">
1340
+ <documentation>
1341
+ Sets the monitor templates' ignore down response states.
1342
+ When enabled, the system will mark objects down only if the
1343
+ monitor timer expires without receiving an "up" response.
1344
+
1345
+ This is useful because probe_num_probes is not effective
1346
+ with ECV monitors. To get similar functionality, enable
1347
+ ignore down response, and set timeout and probe timeout.
1348
+
1349
+ </documentation>
1350
+ <input message="tns:GlobalLB.Monitor.set_ignore_down_response_stateRequest"/>
1351
+ <output message="tns:GlobalLB.Monitor.set_ignore_down_response_stateResponse"/>
1352
+ </operation>
1353
+ <operation name="get_ignore_down_response_state">
1354
+ <documentation>
1355
+ Gets the monitor templates' ignore down response states.
1356
+ When enabled, the system will mark objects down only if the
1357
+ monitor timer expires without receiving an "up" response.
1358
+
1359
+ </documentation>
1360
+ <input message="tns:GlobalLB.Monitor.get_ignore_down_response_stateRequest"/>
1361
+ <output message="tns:GlobalLB.Monitor.get_ignore_down_response_stateResponse"/>
1362
+ </operation>
1363
+ <operation name="set_template_destination">
1364
+ <documentation>
1365
+ Sets the destination IP:port values for the specified templates.
1366
+ NOTE: This should only be done when the monitor templates in "template_names"
1367
+ have NOT been associated to any node addresses or pool members.
1368
+
1369
+ </documentation>
1370
+ <input message="tns:GlobalLB.Monitor.set_template_destinationRequest"/>
1371
+ <output message="tns:GlobalLB.Monitor.set_template_destinationResponse"/>
1372
+ </operation>
1373
+ <operation name="get_template_destination">
1374
+ <documentation>
1375
+ Gets the destination IP:port values of the specified monitor templates.
1376
+
1377
+
1378
+ </documentation>
1379
+ <input message="tns:GlobalLB.Monitor.get_template_destinationRequest"/>
1380
+ <output message="tns:GlobalLB.Monitor.get_template_destinationResponse"/>
1381
+ </operation>
1382
+ <operation name="set_description">
1383
+ <documentation>
1384
+ Sets the description for a set of monitor templates.
1385
+
1386
+ This is an arbitrary field which can be used for any purpose.
1387
+
1388
+ </documentation>
1389
+ <input message="tns:GlobalLB.Monitor.set_descriptionRequest"/>
1390
+ <output message="tns:GlobalLB.Monitor.set_descriptionResponse"/>
1391
+ </operation>
1392
+ <operation name="get_description">
1393
+ <documentation>
1394
+ Gets the descriptions for a set of monitor templates.
1395
+
1396
+ </documentation>
1397
+ <input message="tns:GlobalLB.Monitor.get_descriptionRequest"/>
1398
+ <output message="tns:GlobalLB.Monitor.get_descriptionResponse"/>
1399
+ </operation>
1400
+ <operation name="set_template_integer_property">
1401
+ <documentation>
1402
+ Sets an integer property values of the specified monitor templates.
1403
+
1404
+
1405
+ </documentation>
1406
+ <input message="tns:GlobalLB.Monitor.set_template_integer_propertyRequest"/>
1407
+ <output message="tns:GlobalLB.Monitor.set_template_integer_propertyResponse"/>
1408
+ </operation>
1409
+ <operation name="get_template_integer_property">
1410
+ <documentation>
1411
+ Gets the integer property values of the specified monitor templates.
1412
+
1413
+
1414
+ </documentation>
1415
+ <input message="tns:GlobalLB.Monitor.get_template_integer_propertyRequest"/>
1416
+ <output message="tns:GlobalLB.Monitor.get_template_integer_propertyResponse"/>
1417
+ </operation>
1418
+ <operation name="set_template_string_property">
1419
+ <documentation>
1420
+ Sets a string property values of the specified monitor templates.
1421
+
1422
+
1423
+ </documentation>
1424
+ <input message="tns:GlobalLB.Monitor.set_template_string_propertyRequest"/>
1425
+ <output message="tns:GlobalLB.Monitor.set_template_string_propertyResponse"/>
1426
+ </operation>
1427
+ <operation name="get_template_string_property">
1428
+ <documentation>
1429
+ Gets a string property values of the specified monitor templates.
1430
+
1431
+
1432
+ </documentation>
1433
+ <input message="tns:GlobalLB.Monitor.get_template_string_propertyRequest"/>
1434
+ <output message="tns:GlobalLB.Monitor.get_template_string_propertyResponse"/>
1435
+ </operation>
1436
+ <operation name="set_template_user_defined_string_property">
1437
+ <documentation>
1438
+ Sets the user-defined string property values of the specified
1439
+ monitor templates. The user-defined string property is an
1440
+ arbitrary name/value pair used as configuration information for the
1441
+ monitor. Only certain monitors accept such user-defined properties
1442
+ and the meaning of these name/value pairs is dependent on the
1443
+ specific monitor.
1444
+
1445
+ </documentation>
1446
+ <input message="tns:GlobalLB.Monitor.set_template_user_defined_string_propertyRequest"/>
1447
+ <output message="tns:GlobalLB.Monitor.set_template_user_defined_string_propertyResponse"/>
1448
+ </operation>
1449
+ <operation name="get_template_user_defined_string_property">
1450
+ <documentation>
1451
+ Gets the user-defined string property values of the specified
1452
+ monitor templates.
1453
+
1454
+ </documentation>
1455
+ <input message="tns:GlobalLB.Monitor.get_template_user_defined_string_propertyRequest"/>
1456
+ <output message="tns:GlobalLB.Monitor.get_template_user_defined_string_propertyResponse"/>
1457
+ </operation>
1458
+ <operation name="set_instance_state">
1459
+ <documentation>
1460
+ Sets the enabled/disabled states of the monitor instances.
1461
+
1462
+
1463
+ </documentation>
1464
+ <input message="tns:GlobalLB.Monitor.set_instance_stateRequest"/>
1465
+ <output message="tns:GlobalLB.Monitor.set_instance_stateResponse"/>
1466
+ </operation>
1467
+ <operation name="get_instance_state">
1468
+ <documentation>
1469
+ Gets the enabled/disabled states of the monitor instances.
1470
+
1471
+
1472
+ </documentation>
1473
+ <input message="tns:GlobalLB.Monitor.get_instance_stateRequest"/>
1474
+ <output message="tns:GlobalLB.Monitor.get_instance_stateResponse"/>
1475
+ </operation>
1476
+ <operation name="get_version">
1477
+ <documentation>
1478
+ Gets the version information for this interface.
1479
+
1480
+
1481
+ </documentation>
1482
+ <input message="tns:GlobalLB.Monitor.get_versionRequest"/>
1483
+ <output message="tns:GlobalLB.Monitor.get_versionResponse"/>
1484
+ </operation>
1485
+ </portType>
1486
+
1487
+ <!-- binding -->
1488
+
1489
+ <binding name="GlobalLB.MonitorBinding" type="tns:GlobalLB.MonitorPortType">
1490
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
1491
+ <operation name="get_template_list">
1492
+ <documentation>
1493
+ Gets the list of monitor templates.
1494
+
1495
+
1496
+ </documentation>
1497
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1498
+ <input>
1499
+ <soap:body
1500
+ use="encoded"
1501
+ namespace="urn:iControl:GlobalLB/Monitor"
1502
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1503
+ </input>
1504
+ <output>
1505
+ <soap:body
1506
+ use="encoded"
1507
+ namespace="urn:iControl:GlobalLB/Monitor"
1508
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1509
+ </output>
1510
+ </operation>
1511
+
1512
+ <operation name="create_template">
1513
+ <documentation>
1514
+ Creates monitor templates with some basic attributes.
1515
+ If the "parent_template" attribute in "template_attributes" is empty, then the
1516
+ new template is based on the template type field given in "templates".
1517
+ If the "parent_template" attribute in "template_attributes" is specified, then
1518
+ the new template is derived from the "parent_template", and template type field
1519
+ in "templates" is ignored.
1520
+ If "parent_template" is empty, and the template type field in "templates" is not
1521
+ specified, then the new template is a root template.
1522
+
1523
+
1524
+ </documentation>
1525
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1526
+ <input>
1527
+ <soap:body
1528
+ use="encoded"
1529
+ namespace="urn:iControl:GlobalLB/Monitor"
1530
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1531
+ </input>
1532
+ <output>
1533
+ <soap:body
1534
+ use="encoded"
1535
+ namespace="urn:iControl:GlobalLB/Monitor"
1536
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1537
+ </output>
1538
+ </operation>
1539
+
1540
+ <operation name="delete_template">
1541
+ <documentation>
1542
+ Deletes the specified monitor templates.
1543
+
1544
+
1545
+ </documentation>
1546
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1547
+ <input>
1548
+ <soap:body
1549
+ use="encoded"
1550
+ namespace="urn:iControl:GlobalLB/Monitor"
1551
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1552
+ </input>
1553
+ <output>
1554
+ <soap:body
1555
+ use="encoded"
1556
+ namespace="urn:iControl:GlobalLB/Monitor"
1557
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1558
+ </output>
1559
+ </operation>
1560
+
1561
+ <operation name="delete_all_templates">
1562
+ <documentation>
1563
+ Deletes all user-defined (non-root) monitor templates.
1564
+
1565
+
1566
+ </documentation>
1567
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1568
+ <input>
1569
+ <soap:body
1570
+ use="encoded"
1571
+ namespace="urn:iControl:GlobalLB/Monitor"
1572
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1573
+ </input>
1574
+ <output>
1575
+ <soap:body
1576
+ use="encoded"
1577
+ namespace="urn:iControl:GlobalLB/Monitor"
1578
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1579
+ </output>
1580
+ </operation>
1581
+
1582
+ <operation name="is_template_root">
1583
+ <documentation>
1584
+ Determines if the specified monitor templates are of the base monitor templates.
1585
+
1586
+
1587
+ </documentation>
1588
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1589
+ <input>
1590
+ <soap:body
1591
+ use="encoded"
1592
+ namespace="urn:iControl:GlobalLB/Monitor"
1593
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1594
+ </input>
1595
+ <output>
1596
+ <soap:body
1597
+ use="encoded"
1598
+ namespace="urn:iControl:GlobalLB/Monitor"
1599
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1600
+ </output>
1601
+ </operation>
1602
+
1603
+ <operation name="is_template_directly_usable">
1604
+ <documentation>
1605
+ Determines if the specified monitor templates can be used directly,
1606
+ or a user-defined monitor based on each monitor must be created first
1607
+ before it can be used.
1608
+
1609
+
1610
+ </documentation>
1611
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1612
+ <input>
1613
+ <soap:body
1614
+ use="encoded"
1615
+ namespace="urn:iControl:GlobalLB/Monitor"
1616
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1617
+ </input>
1618
+ <output>
1619
+ <soap:body
1620
+ use="encoded"
1621
+ namespace="urn:iControl:GlobalLB/Monitor"
1622
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1623
+ </output>
1624
+ </operation>
1625
+
1626
+ <operation name="is_template_read_only">
1627
+ <documentation>
1628
+ Determines if the specified monitor templates are read-only.
1629
+ The user can only modify properties for read/write monitor templates.
1630
+
1631
+
1632
+ </documentation>
1633
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1634
+ <input>
1635
+ <soap:body
1636
+ use="encoded"
1637
+ namespace="urn:iControl:GlobalLB/Monitor"
1638
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1639
+ </input>
1640
+ <output>
1641
+ <soap:body
1642
+ use="encoded"
1643
+ namespace="urn:iControl:GlobalLB/Monitor"
1644
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1645
+ </output>
1646
+ </operation>
1647
+
1648
+ <operation name="get_parent_template">
1649
+ <documentation>
1650
+ Gets the parent monitor templates from which the specified monitor templates are derived.
1651
+ A user-defined monitor template will get its defaults from its parent monitor template.
1652
+
1653
+
1654
+ </documentation>
1655
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1656
+ <input>
1657
+ <soap:body
1658
+ use="encoded"
1659
+ namespace="urn:iControl:GlobalLB/Monitor"
1660
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1661
+ </input>
1662
+ <output>
1663
+ <soap:body
1664
+ use="encoded"
1665
+ namespace="urn:iControl:GlobalLB/Monitor"
1666
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1667
+ </output>
1668
+ </operation>
1669
+
1670
+ <operation name="get_template_address_type">
1671
+ <documentation>
1672
+ Gets the destination address types of the monitor templates. This allows the user to determine
1673
+ what node IP:port can be associated with this monitor when creating a monitor instance.
1674
+
1675
+
1676
+ </documentation>
1677
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1678
+ <input>
1679
+ <soap:body
1680
+ use="encoded"
1681
+ namespace="urn:iControl:GlobalLB/Monitor"
1682
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1683
+ </input>
1684
+ <output>
1685
+ <soap:body
1686
+ use="encoded"
1687
+ namespace="urn:iControl:GlobalLB/Monitor"
1688
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1689
+ </output>
1690
+ </operation>
1691
+
1692
+ <operation name="get_template_type">
1693
+ <documentation>
1694
+ Gets the template types of the specified monitor templates.
1695
+
1696
+
1697
+ </documentation>
1698
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1699
+ <input>
1700
+ <soap:body
1701
+ use="encoded"
1702
+ namespace="urn:iControl:GlobalLB/Monitor"
1703
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1704
+ </input>
1705
+ <output>
1706
+ <soap:body
1707
+ use="encoded"
1708
+ namespace="urn:iControl:GlobalLB/Monitor"
1709
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1710
+ </output>
1711
+ </operation>
1712
+
1713
+ <operation name="set_template_state">
1714
+ <documentation>
1715
+ Sets the monitor templates' enabled/disabled states.
1716
+ This will enable/disable all instances that use the specified templates.
1717
+ This serves as a quick and convenient method to enable/disable all instances,
1718
+ but if you want only to enable/disable a specific instance, use set_instance_enabled.
1719
+
1720
+
1721
+ </documentation>
1722
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1723
+ <input>
1724
+ <soap:body
1725
+ use="encoded"
1726
+ namespace="urn:iControl:GlobalLB/Monitor"
1727
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1728
+ </input>
1729
+ <output>
1730
+ <soap:body
1731
+ use="encoded"
1732
+ namespace="urn:iControl:GlobalLB/Monitor"
1733
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1734
+ </output>
1735
+ </operation>
1736
+
1737
+ <operation name="get_template_state">
1738
+ <documentation>
1739
+ Gets the enabled/disabled states of the specified monitor templates.
1740
+
1741
+
1742
+ </documentation>
1743
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1744
+ <input>
1745
+ <soap:body
1746
+ use="encoded"
1747
+ namespace="urn:iControl:GlobalLB/Monitor"
1748
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1749
+ </input>
1750
+ <output>
1751
+ <soap:body
1752
+ use="encoded"
1753
+ namespace="urn:iControl:GlobalLB/Monitor"
1754
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1755
+ </output>
1756
+ </operation>
1757
+
1758
+ <operation name="set_template_reverse_mode">
1759
+ <documentation>
1760
+ Sets the reverse mode states of the specified monitor templates.
1761
+ When in reverse mode, a successful test marks the node down instead of up.
1762
+
1763
+
1764
+ </documentation>
1765
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1766
+ <input>
1767
+ <soap:body
1768
+ use="encoded"
1769
+ namespace="urn:iControl:GlobalLB/Monitor"
1770
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1771
+ </input>
1772
+ <output>
1773
+ <soap:body
1774
+ use="encoded"
1775
+ namespace="urn:iControl:GlobalLB/Monitor"
1776
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1777
+ </output>
1778
+ </operation>
1779
+
1780
+ <operation name="get_template_reverse_mode">
1781
+ <documentation>
1782
+ Gets the reverse mode states of the specified monitor templates.
1783
+
1784
+
1785
+ </documentation>
1786
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1787
+ <input>
1788
+ <soap:body
1789
+ use="encoded"
1790
+ namespace="urn:iControl:GlobalLB/Monitor"
1791
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1792
+ </input>
1793
+ <output>
1794
+ <soap:body
1795
+ use="encoded"
1796
+ namespace="urn:iControl:GlobalLB/Monitor"
1797
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1798
+ </output>
1799
+ </operation>
1800
+
1801
+ <operation name="set_template_transparent_mode">
1802
+ <documentation>
1803
+ Sets the transparent mode states of the specified monitor templates.
1804
+ Transparent mode is used when a user has to go through a firewall to do monitoring.
1805
+
1806
+
1807
+ </documentation>
1808
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1809
+ <input>
1810
+ <soap:body
1811
+ use="encoded"
1812
+ namespace="urn:iControl:GlobalLB/Monitor"
1813
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1814
+ </input>
1815
+ <output>
1816
+ <soap:body
1817
+ use="encoded"
1818
+ namespace="urn:iControl:GlobalLB/Monitor"
1819
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1820
+ </output>
1821
+ </operation>
1822
+
1823
+ <operation name="get_template_transparent_mode">
1824
+ <documentation>
1825
+ Gets the transparent mode states of the specified monitor templates.
1826
+
1827
+
1828
+ </documentation>
1829
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1830
+ <input>
1831
+ <soap:body
1832
+ use="encoded"
1833
+ namespace="urn:iControl:GlobalLB/Monitor"
1834
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1835
+ </input>
1836
+ <output>
1837
+ <soap:body
1838
+ use="encoded"
1839
+ namespace="urn:iControl:GlobalLB/Monitor"
1840
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1841
+ </output>
1842
+ </operation>
1843
+
1844
+ <operation name="set_manual_resume_state">
1845
+ <documentation>
1846
+ Sets the monitor templates' manual resume states. When enabled and a monitor has
1847
+ marked an object down, that object will not be marked up by the monitor, i.e. the
1848
+ object will be manually marked up.
1849
+
1850
+ </documentation>
1851
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1852
+ <input>
1853
+ <soap:body
1854
+ use="encoded"
1855
+ namespace="urn:iControl:GlobalLB/Monitor"
1856
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1857
+ </input>
1858
+ <output>
1859
+ <soap:body
1860
+ use="encoded"
1861
+ namespace="urn:iControl:GlobalLB/Monitor"
1862
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1863
+ </output>
1864
+ </operation>
1865
+
1866
+ <operation name="get_manual_resume_state">
1867
+ <documentation>
1868
+ Gets the monitor templates' manual resume states. When enabled and a monitor has
1869
+ marked an object down, that object will not be marked up by the monitor, i.e. the
1870
+ object will be manually marked up.
1871
+
1872
+ </documentation>
1873
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1874
+ <input>
1875
+ <soap:body
1876
+ use="encoded"
1877
+ namespace="urn:iControl:GlobalLB/Monitor"
1878
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1879
+ </input>
1880
+ <output>
1881
+ <soap:body
1882
+ use="encoded"
1883
+ namespace="urn:iControl:GlobalLB/Monitor"
1884
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1885
+ </output>
1886
+ </operation>
1887
+
1888
+ <operation name="set_ignore_down_response_state">
1889
+ <documentation>
1890
+ Sets the monitor templates' ignore down response states.
1891
+ When enabled, the system will mark objects down only if the
1892
+ monitor timer expires without receiving an "up" response.
1893
+
1894
+ This is useful because probe_num_probes is not effective
1895
+ with ECV monitors. To get similar functionality, enable
1896
+ ignore down response, and set timeout and probe timeout.
1897
+
1898
+ </documentation>
1899
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1900
+ <input>
1901
+ <soap:body
1902
+ use="encoded"
1903
+ namespace="urn:iControl:GlobalLB/Monitor"
1904
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1905
+ </input>
1906
+ <output>
1907
+ <soap:body
1908
+ use="encoded"
1909
+ namespace="urn:iControl:GlobalLB/Monitor"
1910
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1911
+ </output>
1912
+ </operation>
1913
+
1914
+ <operation name="get_ignore_down_response_state">
1915
+ <documentation>
1916
+ Gets the monitor templates' ignore down response states.
1917
+ When enabled, the system will mark objects down only if the
1918
+ monitor timer expires without receiving an "up" response.
1919
+
1920
+ </documentation>
1921
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1922
+ <input>
1923
+ <soap:body
1924
+ use="encoded"
1925
+ namespace="urn:iControl:GlobalLB/Monitor"
1926
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1927
+ </input>
1928
+ <output>
1929
+ <soap:body
1930
+ use="encoded"
1931
+ namespace="urn:iControl:GlobalLB/Monitor"
1932
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1933
+ </output>
1934
+ </operation>
1935
+
1936
+ <operation name="set_template_destination">
1937
+ <documentation>
1938
+ Sets the destination IP:port values for the specified templates.
1939
+ NOTE: This should only be done when the monitor templates in "template_names"
1940
+ have NOT been associated to any node addresses or pool members.
1941
+
1942
+ </documentation>
1943
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1944
+ <input>
1945
+ <soap:body
1946
+ use="encoded"
1947
+ namespace="urn:iControl:GlobalLB/Monitor"
1948
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1949
+ </input>
1950
+ <output>
1951
+ <soap:body
1952
+ use="encoded"
1953
+ namespace="urn:iControl:GlobalLB/Monitor"
1954
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1955
+ </output>
1956
+ </operation>
1957
+
1958
+ <operation name="get_template_destination">
1959
+ <documentation>
1960
+ Gets the destination IP:port values of the specified monitor templates.
1961
+
1962
+
1963
+ </documentation>
1964
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1965
+ <input>
1966
+ <soap:body
1967
+ use="encoded"
1968
+ namespace="urn:iControl:GlobalLB/Monitor"
1969
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1970
+ </input>
1971
+ <output>
1972
+ <soap:body
1973
+ use="encoded"
1974
+ namespace="urn:iControl:GlobalLB/Monitor"
1975
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1976
+ </output>
1977
+ </operation>
1978
+
1979
+ <operation name="set_description">
1980
+ <documentation>
1981
+ Sets the description for a set of monitor templates.
1982
+
1983
+ This is an arbitrary field which can be used for any purpose.
1984
+
1985
+ </documentation>
1986
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
1987
+ <input>
1988
+ <soap:body
1989
+ use="encoded"
1990
+ namespace="urn:iControl:GlobalLB/Monitor"
1991
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1992
+ </input>
1993
+ <output>
1994
+ <soap:body
1995
+ use="encoded"
1996
+ namespace="urn:iControl:GlobalLB/Monitor"
1997
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1998
+ </output>
1999
+ </operation>
2000
+
2001
+ <operation name="get_description">
2002
+ <documentation>
2003
+ Gets the descriptions for a set of monitor templates.
2004
+
2005
+ </documentation>
2006
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
2007
+ <input>
2008
+ <soap:body
2009
+ use="encoded"
2010
+ namespace="urn:iControl:GlobalLB/Monitor"
2011
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2012
+ </input>
2013
+ <output>
2014
+ <soap:body
2015
+ use="encoded"
2016
+ namespace="urn:iControl:GlobalLB/Monitor"
2017
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2018
+ </output>
2019
+ </operation>
2020
+
2021
+ <operation name="set_template_integer_property">
2022
+ <documentation>
2023
+ Sets an integer property values of the specified monitor templates.
2024
+
2025
+
2026
+ </documentation>
2027
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
2028
+ <input>
2029
+ <soap:body
2030
+ use="encoded"
2031
+ namespace="urn:iControl:GlobalLB/Monitor"
2032
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2033
+ </input>
2034
+ <output>
2035
+ <soap:body
2036
+ use="encoded"
2037
+ namespace="urn:iControl:GlobalLB/Monitor"
2038
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2039
+ </output>
2040
+ </operation>
2041
+
2042
+ <operation name="get_template_integer_property">
2043
+ <documentation>
2044
+ Gets the integer property values of the specified monitor templates.
2045
+
2046
+
2047
+ </documentation>
2048
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
2049
+ <input>
2050
+ <soap:body
2051
+ use="encoded"
2052
+ namespace="urn:iControl:GlobalLB/Monitor"
2053
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2054
+ </input>
2055
+ <output>
2056
+ <soap:body
2057
+ use="encoded"
2058
+ namespace="urn:iControl:GlobalLB/Monitor"
2059
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2060
+ </output>
2061
+ </operation>
2062
+
2063
+ <operation name="set_template_string_property">
2064
+ <documentation>
2065
+ Sets a string property values of the specified monitor templates.
2066
+
2067
+
2068
+ </documentation>
2069
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
2070
+ <input>
2071
+ <soap:body
2072
+ use="encoded"
2073
+ namespace="urn:iControl:GlobalLB/Monitor"
2074
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2075
+ </input>
2076
+ <output>
2077
+ <soap:body
2078
+ use="encoded"
2079
+ namespace="urn:iControl:GlobalLB/Monitor"
2080
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2081
+ </output>
2082
+ </operation>
2083
+
2084
+ <operation name="get_template_string_property">
2085
+ <documentation>
2086
+ Gets a string property values of the specified monitor templates.
2087
+
2088
+
2089
+ </documentation>
2090
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
2091
+ <input>
2092
+ <soap:body
2093
+ use="encoded"
2094
+ namespace="urn:iControl:GlobalLB/Monitor"
2095
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2096
+ </input>
2097
+ <output>
2098
+ <soap:body
2099
+ use="encoded"
2100
+ namespace="urn:iControl:GlobalLB/Monitor"
2101
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2102
+ </output>
2103
+ </operation>
2104
+
2105
+ <operation name="set_template_user_defined_string_property">
2106
+ <documentation>
2107
+ Sets the user-defined string property values of the specified
2108
+ monitor templates. The user-defined string property is an
2109
+ arbitrary name/value pair used as configuration information for the
2110
+ monitor. Only certain monitors accept such user-defined properties
2111
+ and the meaning of these name/value pairs is dependent on the
2112
+ specific monitor.
2113
+
2114
+ </documentation>
2115
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
2116
+ <input>
2117
+ <soap:body
2118
+ use="encoded"
2119
+ namespace="urn:iControl:GlobalLB/Monitor"
2120
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2121
+ </input>
2122
+ <output>
2123
+ <soap:body
2124
+ use="encoded"
2125
+ namespace="urn:iControl:GlobalLB/Monitor"
2126
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2127
+ </output>
2128
+ </operation>
2129
+
2130
+ <operation name="get_template_user_defined_string_property">
2131
+ <documentation>
2132
+ Gets the user-defined string property values of the specified
2133
+ monitor templates.
2134
+
2135
+ </documentation>
2136
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
2137
+ <input>
2138
+ <soap:body
2139
+ use="encoded"
2140
+ namespace="urn:iControl:GlobalLB/Monitor"
2141
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2142
+ </input>
2143
+ <output>
2144
+ <soap:body
2145
+ use="encoded"
2146
+ namespace="urn:iControl:GlobalLB/Monitor"
2147
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2148
+ </output>
2149
+ </operation>
2150
+
2151
+ <operation name="set_instance_state">
2152
+ <documentation>
2153
+ Sets the enabled/disabled states of the monitor instances.
2154
+
2155
+
2156
+ </documentation>
2157
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
2158
+ <input>
2159
+ <soap:body
2160
+ use="encoded"
2161
+ namespace="urn:iControl:GlobalLB/Monitor"
2162
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2163
+ </input>
2164
+ <output>
2165
+ <soap:body
2166
+ use="encoded"
2167
+ namespace="urn:iControl:GlobalLB/Monitor"
2168
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2169
+ </output>
2170
+ </operation>
2171
+
2172
+ <operation name="get_instance_state">
2173
+ <documentation>
2174
+ Gets the enabled/disabled states of the monitor instances.
2175
+
2176
+
2177
+ </documentation>
2178
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
2179
+ <input>
2180
+ <soap:body
2181
+ use="encoded"
2182
+ namespace="urn:iControl:GlobalLB/Monitor"
2183
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2184
+ </input>
2185
+ <output>
2186
+ <soap:body
2187
+ use="encoded"
2188
+ namespace="urn:iControl:GlobalLB/Monitor"
2189
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2190
+ </output>
2191
+ </operation>
2192
+
2193
+ <operation name="get_version">
2194
+ <documentation>
2195
+ Gets the version information for this interface.
2196
+
2197
+
2198
+ </documentation>
2199
+ <soap:operation soapAction="urn:iControl:GlobalLB/Monitor"/>
2200
+ <input>
2201
+ <soap:body
2202
+ use="encoded"
2203
+ namespace="urn:iControl:GlobalLB/Monitor"
2204
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2205
+ </input>
2206
+ <output>
2207
+ <soap:body
2208
+ use="encoded"
2209
+ namespace="urn:iControl:GlobalLB/Monitor"
2210
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2211
+ </output>
2212
+ </operation>
2213
+ </binding>
2214
+
2215
+ <!-- service -->
2216
+
2217
+ <service name="GlobalLB.Monitor">
2218
+ <documentation>
2219
+ The Monitor interface enables you to manipulate a load balancer's monitor templates and instances.
2220
+ For example, use the Monitor interface to enable or disable a monitor instance, or to create a monitor template,
2221
+ or to get and set different attributes of a monitor template.
2222
+
2223
+ </documentation>
2224
+ <port name="GlobalLB.MonitorPort" binding="tns:GlobalLB.MonitorBinding">
2225
+ <soap:address location="https://url_to_service"/>
2226
+ </port>
2227
+ </service>
2228
+ </definitions>