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,751 @@
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="Log.DestinationRemoteSyslog"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:complexType name="Common.StringSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:simpleType name="Log.SyslogLevel">
32
+ <xsd:restriction base="xsd:string">
33
+ <xsd:enumeration value="LOG_LEVEL_UNKNOWN">
34
+ <xsd:annotation>
35
+ <xsd:documentation>LOG_LEVEL_UNKNOWN</xsd:documentation>
36
+ </xsd:annotation>
37
+ </xsd:enumeration>
38
+ <xsd:enumeration value="LOG_LEVEL_EMERG">
39
+ <xsd:annotation>
40
+ <xsd:documentation>LOG_LEVEL_EMERG</xsd:documentation>
41
+ </xsd:annotation>
42
+ </xsd:enumeration>
43
+ <xsd:enumeration value="LOG_LEVEL_ALERT">
44
+ <xsd:annotation>
45
+ <xsd:documentation>LOG_LEVEL_ALERT</xsd:documentation>
46
+ </xsd:annotation>
47
+ </xsd:enumeration>
48
+ <xsd:enumeration value="LOG_LEVEL_CRIT">
49
+ <xsd:annotation>
50
+ <xsd:documentation>LOG_LEVEL_CRIT</xsd:documentation>
51
+ </xsd:annotation>
52
+ </xsd:enumeration>
53
+ <xsd:enumeration value="LOG_LEVEL_ERR">
54
+ <xsd:annotation>
55
+ <xsd:documentation>LOG_LEVEL_ERR</xsd:documentation>
56
+ </xsd:annotation>
57
+ </xsd:enumeration>
58
+ <xsd:enumeration value="LOG_LEVEL_WARNING">
59
+ <xsd:annotation>
60
+ <xsd:documentation>LOG_LEVEL_WARNING</xsd:documentation>
61
+ </xsd:annotation>
62
+ </xsd:enumeration>
63
+ <xsd:enumeration value="LOG_LEVEL_NOTICE">
64
+ <xsd:annotation>
65
+ <xsd:documentation>LOG_LEVEL_NOTICE</xsd:documentation>
66
+ </xsd:annotation>
67
+ </xsd:enumeration>
68
+ <xsd:enumeration value="LOG_LEVEL_INFO">
69
+ <xsd:annotation>
70
+ <xsd:documentation>LOG_LEVEL_INFO</xsd:documentation>
71
+ </xsd:annotation>
72
+ </xsd:enumeration>
73
+ <xsd:enumeration value="LOG_LEVEL_DEBUG">
74
+ <xsd:annotation>
75
+ <xsd:documentation>LOG_LEVEL_DEBUG</xsd:documentation>
76
+ </xsd:annotation>
77
+ </xsd:enumeration>
78
+ </xsd:restriction>
79
+ </xsd:simpleType>
80
+ <xsd:complexType name="Log.SyslogLevelSequence">
81
+ <xsd:complexContent>
82
+ <xsd:restriction base='SOAP-ENC:Array'>
83
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Log.SyslogLevel[]'/>
84
+ </xsd:restriction>
85
+ </xsd:complexContent>
86
+ </xsd:complexType>
87
+ <xsd:simpleType name="Log.SyslogFacility">
88
+ <xsd:restriction base="xsd:string">
89
+ <xsd:enumeration value="LOG_FACILITY_UNKNOWN">
90
+ <xsd:annotation>
91
+ <xsd:documentation>LOG_FACILITY_UNKNOWN</xsd:documentation>
92
+ </xsd:annotation>
93
+ </xsd:enumeration>
94
+ <xsd:enumeration value="LOG_FACILITY_LOCAL0">
95
+ <xsd:annotation>
96
+ <xsd:documentation>LOG_FACILITY_LOCAL0</xsd:documentation>
97
+ </xsd:annotation>
98
+ </xsd:enumeration>
99
+ <xsd:enumeration value="LOG_FACILITY_LOCAL1">
100
+ <xsd:annotation>
101
+ <xsd:documentation>LOG_FACILITY_LOCAL1</xsd:documentation>
102
+ </xsd:annotation>
103
+ </xsd:enumeration>
104
+ <xsd:enumeration value="LOG_FACILITY_LOCAL2">
105
+ <xsd:annotation>
106
+ <xsd:documentation>LOG_FACILITY_LOCAL2</xsd:documentation>
107
+ </xsd:annotation>
108
+ </xsd:enumeration>
109
+ <xsd:enumeration value="LOG_FACILITY_LOCAL3">
110
+ <xsd:annotation>
111
+ <xsd:documentation>LOG_FACILITY_LOCAL3</xsd:documentation>
112
+ </xsd:annotation>
113
+ </xsd:enumeration>
114
+ <xsd:enumeration value="LOG_FACILITY_LOCAL4">
115
+ <xsd:annotation>
116
+ <xsd:documentation>LOG_FACILITY_LOCAL4</xsd:documentation>
117
+ </xsd:annotation>
118
+ </xsd:enumeration>
119
+ <xsd:enumeration value="LOG_FACILITY_LOCAL5">
120
+ <xsd:annotation>
121
+ <xsd:documentation>LOG_FACILITY_LOCAL5</xsd:documentation>
122
+ </xsd:annotation>
123
+ </xsd:enumeration>
124
+ <xsd:enumeration value="LOG_FACILITY_LOCAL6">
125
+ <xsd:annotation>
126
+ <xsd:documentation>LOG_FACILITY_LOCAL6</xsd:documentation>
127
+ </xsd:annotation>
128
+ </xsd:enumeration>
129
+ <xsd:enumeration value="LOG_FACILITY_LOCAL7">
130
+ <xsd:annotation>
131
+ <xsd:documentation>LOG_FACILITY_LOCAL7</xsd:documentation>
132
+ </xsd:annotation>
133
+ </xsd:enumeration>
134
+ </xsd:restriction>
135
+ </xsd:simpleType>
136
+ <xsd:complexType name="Log.SyslogFacilitySequence">
137
+ <xsd:complexContent>
138
+ <xsd:restriction base='SOAP-ENC:Array'>
139
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Log.SyslogFacility[]'/>
140
+ </xsd:restriction>
141
+ </xsd:complexContent>
142
+ </xsd:complexType>
143
+ <xsd:simpleType name="Log.SyslogFormat">
144
+ <xsd:restriction base="xsd:string">
145
+ <xsd:enumeration value="LOG_FORMAT_UNKNOWN">
146
+ <xsd:annotation>
147
+ <xsd:documentation>LOG_FORMAT_UNKNOWN</xsd:documentation>
148
+ </xsd:annotation>
149
+ </xsd:enumeration>
150
+ <xsd:enumeration value="LOG_FORMAT_SYSLOG">
151
+ <xsd:annotation>
152
+ <xsd:documentation>LOG_FORMAT_SYSLOG</xsd:documentation>
153
+ </xsd:annotation>
154
+ </xsd:enumeration>
155
+ <xsd:enumeration value="LOG_FORMAT_BSD_SYSLOG">
156
+ <xsd:annotation>
157
+ <xsd:documentation>LOG_FORMAT_BSD_SYSLOG</xsd:documentation>
158
+ </xsd:annotation>
159
+ </xsd:enumeration>
160
+ <xsd:enumeration value="LOG_FORMAT_LEGACY_BIGIP">
161
+ <xsd:annotation>
162
+ <xsd:documentation>LOG_FORMAT_LEGACY_BIGIP</xsd:documentation>
163
+ </xsd:annotation>
164
+ </xsd:enumeration>
165
+ </xsd:restriction>
166
+ </xsd:simpleType>
167
+ <xsd:complexType name="Log.SyslogFormatSequence">
168
+ <xsd:complexContent>
169
+ <xsd:restriction base='SOAP-ENC:Array'>
170
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Log.SyslogFormat[]'/>
171
+ </xsd:restriction>
172
+ </xsd:complexContent>
173
+ </xsd:complexType>
174
+ </xsd:schema>
175
+ </types>
176
+
177
+ <!-- message -->
178
+
179
+ <message name="Log.DestinationRemoteSyslog.get_listRequest">
180
+ </message>
181
+ <message name="Log.DestinationRemoteSyslog.get_listResponse">
182
+ <part name="return" type="tns:Common.StringSequence"/>
183
+ </message>
184
+
185
+ <message name="Log.DestinationRemoteSyslog.createRequest">
186
+ <part name="destinations" type="tns:Common.StringSequence"/>
187
+ <part name="facilities" type="tns:Log.SyslogFacilitySequence"/>
188
+ <part name="levels" type="tns:Log.SyslogLevelSequence"/>
189
+ <part name="hsl_destinations" type="tns:Common.StringSequence"/>
190
+ </message>
191
+ <message name="Log.DestinationRemoteSyslog.createResponse">
192
+ </message>
193
+
194
+ <message name="Log.DestinationRemoteSyslog.delete_remote_syslog_destinationRequest">
195
+ <part name="destinations" type="tns:Common.StringSequence"/>
196
+ </message>
197
+ <message name="Log.DestinationRemoteSyslog.delete_remote_syslog_destinationResponse">
198
+ </message>
199
+
200
+ <message name="Log.DestinationRemoteSyslog.delete_all_remote_syslog_destinationsRequest">
201
+ </message>
202
+ <message name="Log.DestinationRemoteSyslog.delete_all_remote_syslog_destinationsResponse">
203
+ </message>
204
+
205
+ <message name="Log.DestinationRemoteSyslog.set_default_facilityRequest">
206
+ <part name="destinations" type="tns:Common.StringSequence"/>
207
+ <part name="facilities" type="tns:Log.SyslogFacilitySequence"/>
208
+ </message>
209
+ <message name="Log.DestinationRemoteSyslog.set_default_facilityResponse">
210
+ </message>
211
+
212
+ <message name="Log.DestinationRemoteSyslog.get_default_facilityRequest">
213
+ <part name="destinations" type="tns:Common.StringSequence"/>
214
+ </message>
215
+ <message name="Log.DestinationRemoteSyslog.get_default_facilityResponse">
216
+ <part name="return" type="tns:Log.SyslogFacilitySequence"/>
217
+ </message>
218
+
219
+ <message name="Log.DestinationRemoteSyslog.set_default_severityRequest">
220
+ <part name="destinations" type="tns:Common.StringSequence"/>
221
+ <part name="levels" type="tns:Log.SyslogLevelSequence"/>
222
+ </message>
223
+ <message name="Log.DestinationRemoteSyslog.set_default_severityResponse">
224
+ </message>
225
+
226
+ <message name="Log.DestinationRemoteSyslog.get_default_severityRequest">
227
+ <part name="destinations" type="tns:Common.StringSequence"/>
228
+ </message>
229
+ <message name="Log.DestinationRemoteSyslog.get_default_severityResponse">
230
+ <part name="return" type="tns:Log.SyslogLevelSequence"/>
231
+ </message>
232
+
233
+ <message name="Log.DestinationRemoteSyslog.set_formatRequest">
234
+ <part name="destinations" type="tns:Common.StringSequence"/>
235
+ <part name="formats" type="tns:Log.SyslogFormatSequence"/>
236
+ </message>
237
+ <message name="Log.DestinationRemoteSyslog.set_formatResponse">
238
+ </message>
239
+
240
+ <message name="Log.DestinationRemoteSyslog.get_formatRequest">
241
+ <part name="destinations" type="tns:Common.StringSequence"/>
242
+ </message>
243
+ <message name="Log.DestinationRemoteSyslog.get_formatResponse">
244
+ <part name="return" type="tns:Log.SyslogFormatSequence"/>
245
+ </message>
246
+
247
+ <message name="Log.DestinationRemoteSyslog.set_remote_high_speed_log_destinationRequest">
248
+ <part name="destinations" type="tns:Common.StringSequence"/>
249
+ <part name="hsl_destinations" type="tns:Common.StringSequence"/>
250
+ </message>
251
+ <message name="Log.DestinationRemoteSyslog.set_remote_high_speed_log_destinationResponse">
252
+ </message>
253
+
254
+ <message name="Log.DestinationRemoteSyslog.get_remote_high_speed_log_destinationRequest">
255
+ <part name="destinations" type="tns:Common.StringSequence"/>
256
+ </message>
257
+ <message name="Log.DestinationRemoteSyslog.get_remote_high_speed_log_destinationResponse">
258
+ <part name="return" type="tns:Common.StringSequence"/>
259
+ </message>
260
+
261
+ <message name="Log.DestinationRemoteSyslog.set_descriptionRequest">
262
+ <part name="destinations" type="tns:Common.StringSequence"/>
263
+ <part name="descriptions" type="tns:Common.StringSequence"/>
264
+ </message>
265
+ <message name="Log.DestinationRemoteSyslog.set_descriptionResponse">
266
+ </message>
267
+
268
+ <message name="Log.DestinationRemoteSyslog.get_descriptionRequest">
269
+ <part name="destinations" type="tns:Common.StringSequence"/>
270
+ </message>
271
+ <message name="Log.DestinationRemoteSyslog.get_descriptionResponse">
272
+ <part name="return" type="tns:Common.StringSequence"/>
273
+ </message>
274
+
275
+ <message name="Log.DestinationRemoteSyslog.get_versionRequest">
276
+ </message>
277
+ <message name="Log.DestinationRemoteSyslog.get_versionResponse">
278
+ <part name="return" type="xsd:string"/>
279
+ </message>
280
+
281
+ <!-- portType -->
282
+
283
+ <portType name="Log.DestinationRemoteSyslogPortType">
284
+ <operation name="get_list">
285
+ <documentation>
286
+ Gets the list of remote syslog destinations.
287
+
288
+ </documentation>
289
+ <input message="tns:Log.DestinationRemoteSyslog.get_listRequest"/>
290
+ <output message="tns:Log.DestinationRemoteSyslog.get_listResponse"/>
291
+ </operation>
292
+ <operation name="create">
293
+ <documentation>
294
+ Creates a remote syslog destination.
295
+
296
+ </documentation>
297
+ <input message="tns:Log.DestinationRemoteSyslog.createRequest"/>
298
+ <output message="tns:Log.DestinationRemoteSyslog.createResponse"/>
299
+ </operation>
300
+ <operation name="delete_remote_syslog_destination">
301
+ <documentation>
302
+ Deletes the specified remote syslog destinations.
303
+
304
+ </documentation>
305
+ <input message="tns:Log.DestinationRemoteSyslog.delete_remote_syslog_destinationRequest"/>
306
+ <output message="tns:Log.DestinationRemoteSyslog.delete_remote_syslog_destinationResponse"/>
307
+ </operation>
308
+ <operation name="delete_all_remote_syslog_destinations">
309
+ <documentation>
310
+ Deletes all remote syslog destinations.
311
+
312
+ </documentation>
313
+ <input message="tns:Log.DestinationRemoteSyslog.delete_all_remote_syslog_destinationsRequest"/>
314
+ <output message="tns:Log.DestinationRemoteSyslog.delete_all_remote_syslog_destinationsResponse"/>
315
+ </operation>
316
+ <operation name="set_default_facility">
317
+ <documentation>
318
+ Sets the default facility for the specified remote syslog
319
+ destinations. Syslog messages that come in without a
320
+ facility specified are given the default facility. See
321
+ Log::SyslogFacility for more details.
322
+
323
+ </documentation>
324
+ <input message="tns:Log.DestinationRemoteSyslog.set_default_facilityRequest"/>
325
+ <output message="tns:Log.DestinationRemoteSyslog.set_default_facilityResponse"/>
326
+ </operation>
327
+ <operation name="get_default_facility">
328
+ <documentation>
329
+ Gets the default facility for the specified remote syslog
330
+ destinations.
331
+
332
+ </documentation>
333
+ <input message="tns:Log.DestinationRemoteSyslog.get_default_facilityRequest"/>
334
+ <output message="tns:Log.DestinationRemoteSyslog.get_default_facilityResponse"/>
335
+ </operation>
336
+ <operation name="set_default_severity">
337
+ <documentation>
338
+ Sets the default severity for messages sent to the specified remote
339
+ syslog destinations. The default severity is the severity given to
340
+ syslog messages without a severity given.
341
+
342
+ </documentation>
343
+ <input message="tns:Log.DestinationRemoteSyslog.set_default_severityRequest"/>
344
+ <output message="tns:Log.DestinationRemoteSyslog.set_default_severityResponse"/>
345
+ </operation>
346
+ <operation name="get_default_severity">
347
+ <documentation>
348
+ Gets the default severity for the specified remote syslog
349
+ destinations.
350
+
351
+ </documentation>
352
+ <input message="tns:Log.DestinationRemoteSyslog.get_default_severityRequest"/>
353
+ <output message="tns:Log.DestinationRemoteSyslog.get_default_severityResponse"/>
354
+ </operation>
355
+ <operation name="set_format">
356
+ <documentation>
357
+ Sets the syslog format for the specified remote syslog destinations.
358
+ The format is the format of the syslog messages sent to the remote
359
+ syslog server. See SyslogFormat for more details.
360
+
361
+ </documentation>
362
+ <input message="tns:Log.DestinationRemoteSyslog.set_formatRequest"/>
363
+ <output message="tns:Log.DestinationRemoteSyslog.set_formatResponse"/>
364
+ </operation>
365
+ <operation name="get_format">
366
+ <documentation>
367
+ Gets the formats for the specified remote syslog destinations.
368
+
369
+ </documentation>
370
+ <input message="tns:Log.DestinationRemoteSyslog.get_formatRequest"/>
371
+ <output message="tns:Log.DestinationRemoteSyslog.get_formatResponse"/>
372
+ </operation>
373
+ <operation name="set_remote_high_speed_log_destination">
374
+ <documentation>
375
+ Sets the remote high-speed log destination for the specifed remote
376
+ syslog destinations.
377
+
378
+ </documentation>
379
+ <input message="tns:Log.DestinationRemoteSyslog.set_remote_high_speed_log_destinationRequest"/>
380
+ <output message="tns:Log.DestinationRemoteSyslog.set_remote_high_speed_log_destinationResponse"/>
381
+ </operation>
382
+ <operation name="get_remote_high_speed_log_destination">
383
+ <documentation>
384
+ Gets the remote high-speed log destinations for the specified
385
+ remote syslog destinations.
386
+
387
+ </documentation>
388
+ <input message="tns:Log.DestinationRemoteSyslog.get_remote_high_speed_log_destinationRequest"/>
389
+ <output message="tns:Log.DestinationRemoteSyslog.get_remote_high_speed_log_destinationResponse"/>
390
+ </operation>
391
+ <operation name="set_description">
392
+ <documentation>
393
+ Sets the description for the specified remote syslog destinations.
394
+
395
+ This is an arbitrary field which can be used for any purpose.
396
+
397
+ </documentation>
398
+ <input message="tns:Log.DestinationRemoteSyslog.set_descriptionRequest"/>
399
+ <output message="tns:Log.DestinationRemoteSyslog.set_descriptionResponse"/>
400
+ </operation>
401
+ <operation name="get_description">
402
+ <documentation>
403
+ Gets the descriptions for the specified remote syslog destinations.
404
+
405
+ </documentation>
406
+ <input message="tns:Log.DestinationRemoteSyslog.get_descriptionRequest"/>
407
+ <output message="tns:Log.DestinationRemoteSyslog.get_descriptionResponse"/>
408
+ </operation>
409
+ <operation name="get_version">
410
+ <documentation>
411
+ Gets the version information for this interface.
412
+
413
+ </documentation>
414
+ <input message="tns:Log.DestinationRemoteSyslog.get_versionRequest"/>
415
+ <output message="tns:Log.DestinationRemoteSyslog.get_versionResponse"/>
416
+ </operation>
417
+ </portType>
418
+
419
+ <!-- binding -->
420
+
421
+ <binding name="Log.DestinationRemoteSyslogBinding" type="tns:Log.DestinationRemoteSyslogPortType">
422
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
423
+ <operation name="get_list">
424
+ <documentation>
425
+ Gets the list of remote syslog destinations.
426
+
427
+ </documentation>
428
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
429
+ <input>
430
+ <soap:body
431
+ use="encoded"
432
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
433
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
434
+ </input>
435
+ <output>
436
+ <soap:body
437
+ use="encoded"
438
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
439
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
440
+ </output>
441
+ </operation>
442
+
443
+ <operation name="create">
444
+ <documentation>
445
+ Creates a remote syslog destination.
446
+
447
+ </documentation>
448
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
449
+ <input>
450
+ <soap:body
451
+ use="encoded"
452
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
453
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
454
+ </input>
455
+ <output>
456
+ <soap:body
457
+ use="encoded"
458
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
459
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
460
+ </output>
461
+ </operation>
462
+
463
+ <operation name="delete_remote_syslog_destination">
464
+ <documentation>
465
+ Deletes the specified remote syslog destinations.
466
+
467
+ </documentation>
468
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
469
+ <input>
470
+ <soap:body
471
+ use="encoded"
472
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
473
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
474
+ </input>
475
+ <output>
476
+ <soap:body
477
+ use="encoded"
478
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
479
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
480
+ </output>
481
+ </operation>
482
+
483
+ <operation name="delete_all_remote_syslog_destinations">
484
+ <documentation>
485
+ Deletes all remote syslog destinations.
486
+
487
+ </documentation>
488
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
489
+ <input>
490
+ <soap:body
491
+ use="encoded"
492
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
493
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
494
+ </input>
495
+ <output>
496
+ <soap:body
497
+ use="encoded"
498
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
499
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
500
+ </output>
501
+ </operation>
502
+
503
+ <operation name="set_default_facility">
504
+ <documentation>
505
+ Sets the default facility for the specified remote syslog
506
+ destinations. Syslog messages that come in without a
507
+ facility specified are given the default facility. See
508
+ Log::SyslogFacility for more details.
509
+
510
+ </documentation>
511
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
512
+ <input>
513
+ <soap:body
514
+ use="encoded"
515
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
516
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
517
+ </input>
518
+ <output>
519
+ <soap:body
520
+ use="encoded"
521
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
522
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
523
+ </output>
524
+ </operation>
525
+
526
+ <operation name="get_default_facility">
527
+ <documentation>
528
+ Gets the default facility for the specified remote syslog
529
+ destinations.
530
+
531
+ </documentation>
532
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
533
+ <input>
534
+ <soap:body
535
+ use="encoded"
536
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
537
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
538
+ </input>
539
+ <output>
540
+ <soap:body
541
+ use="encoded"
542
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
543
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
544
+ </output>
545
+ </operation>
546
+
547
+ <operation name="set_default_severity">
548
+ <documentation>
549
+ Sets the default severity for messages sent to the specified remote
550
+ syslog destinations. The default severity is the severity given to
551
+ syslog messages without a severity given.
552
+
553
+ </documentation>
554
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
555
+ <input>
556
+ <soap:body
557
+ use="encoded"
558
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
559
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
560
+ </input>
561
+ <output>
562
+ <soap:body
563
+ use="encoded"
564
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
565
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
566
+ </output>
567
+ </operation>
568
+
569
+ <operation name="get_default_severity">
570
+ <documentation>
571
+ Gets the default severity for the specified remote syslog
572
+ destinations.
573
+
574
+ </documentation>
575
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
576
+ <input>
577
+ <soap:body
578
+ use="encoded"
579
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
580
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
581
+ </input>
582
+ <output>
583
+ <soap:body
584
+ use="encoded"
585
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
586
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
587
+ </output>
588
+ </operation>
589
+
590
+ <operation name="set_format">
591
+ <documentation>
592
+ Sets the syslog format for the specified remote syslog destinations.
593
+ The format is the format of the syslog messages sent to the remote
594
+ syslog server. See SyslogFormat for more details.
595
+
596
+ </documentation>
597
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
598
+ <input>
599
+ <soap:body
600
+ use="encoded"
601
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
602
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
603
+ </input>
604
+ <output>
605
+ <soap:body
606
+ use="encoded"
607
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
608
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
609
+ </output>
610
+ </operation>
611
+
612
+ <operation name="get_format">
613
+ <documentation>
614
+ Gets the formats for the specified remote syslog destinations.
615
+
616
+ </documentation>
617
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
618
+ <input>
619
+ <soap:body
620
+ use="encoded"
621
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
622
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
623
+ </input>
624
+ <output>
625
+ <soap:body
626
+ use="encoded"
627
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
628
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
629
+ </output>
630
+ </operation>
631
+
632
+ <operation name="set_remote_high_speed_log_destination">
633
+ <documentation>
634
+ Sets the remote high-speed log destination for the specifed remote
635
+ syslog destinations.
636
+
637
+ </documentation>
638
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
639
+ <input>
640
+ <soap:body
641
+ use="encoded"
642
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
643
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
644
+ </input>
645
+ <output>
646
+ <soap:body
647
+ use="encoded"
648
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
649
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
650
+ </output>
651
+ </operation>
652
+
653
+ <operation name="get_remote_high_speed_log_destination">
654
+ <documentation>
655
+ Gets the remote high-speed log destinations for the specified
656
+ remote syslog destinations.
657
+
658
+ </documentation>
659
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
660
+ <input>
661
+ <soap:body
662
+ use="encoded"
663
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
664
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
665
+ </input>
666
+ <output>
667
+ <soap:body
668
+ use="encoded"
669
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
670
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
671
+ </output>
672
+ </operation>
673
+
674
+ <operation name="set_description">
675
+ <documentation>
676
+ Sets the description for the specified remote syslog destinations.
677
+
678
+ This is an arbitrary field which can be used for any purpose.
679
+
680
+ </documentation>
681
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
682
+ <input>
683
+ <soap:body
684
+ use="encoded"
685
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
686
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
687
+ </input>
688
+ <output>
689
+ <soap:body
690
+ use="encoded"
691
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
692
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
693
+ </output>
694
+ </operation>
695
+
696
+ <operation name="get_description">
697
+ <documentation>
698
+ Gets the descriptions for the specified remote syslog destinations.
699
+
700
+ </documentation>
701
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
702
+ <input>
703
+ <soap:body
704
+ use="encoded"
705
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
706
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
707
+ </input>
708
+ <output>
709
+ <soap:body
710
+ use="encoded"
711
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
712
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
713
+ </output>
714
+ </operation>
715
+
716
+ <operation name="get_version">
717
+ <documentation>
718
+ Gets the version information for this interface.
719
+
720
+ </documentation>
721
+ <soap:operation soapAction="urn:iControl:Log/DestinationRemoteSyslog"/>
722
+ <input>
723
+ <soap:body
724
+ use="encoded"
725
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
726
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
727
+ </input>
728
+ <output>
729
+ <soap:body
730
+ use="encoded"
731
+ namespace="urn:iControl:Log/DestinationRemoteSyslog"
732
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
733
+ </output>
734
+ </operation>
735
+ </binding>
736
+
737
+ <!-- service -->
738
+
739
+ <service name="Log.DestinationRemoteSyslog">
740
+ <documentation>
741
+ The DestinationRemoteSyslog interface enables you to create and modify
742
+ remote syslog destinations. This destination will take unformatted logs
743
+ and convert them to various syslog formats to be sent to a remote high-
744
+ speed log destination.
745
+
746
+ </documentation>
747
+ <port name="Log.DestinationRemoteSyslogPort" binding="tns:Log.DestinationRemoteSyslogBinding">
748
+ <soap:address location="https://url_to_service"/>
749
+ </port>
750
+ </service>
751
+ </definitions>