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,1209 @@
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="Networking.RouteTable"
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="Networking.RouteTable.RouteTableMetricStatistics">
25
+ <xsd:sequence>
26
+ <xsd:element name="statistics" type="tns:Networking.RouteTable.RouteTableMetricEntrySequence"/>
27
+ <xsd:element name="time_stamp" type="tns:Common.TimeStamp"/>
28
+ </xsd:sequence>
29
+ </xsd:complexType>
30
+ <xsd:complexType name="Common.TimeStamp">
31
+ <xsd:sequence>
32
+ <xsd:element name="year" type="xsd:long"/>
33
+ <xsd:element name="month" type="xsd:long"/>
34
+ <xsd:element name="day" type="xsd:long"/>
35
+ <xsd:element name="hour" type="xsd:long"/>
36
+ <xsd:element name="minute" type="xsd:long"/>
37
+ <xsd:element name="second" type="xsd:long"/>
38
+ </xsd:sequence>
39
+ </xsd:complexType>
40
+ <xsd:complexType name="Networking.RouteEntryTypeSequence">
41
+ <xsd:complexContent>
42
+ <xsd:restriction base='SOAP-ENC:Array'>
43
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.RouteEntryType[]'/>
44
+ </xsd:restriction>
45
+ </xsd:complexContent>
46
+ </xsd:complexType>
47
+ <xsd:complexType name="Networking.RouteTable.RouteDefinition">
48
+ <xsd:sequence>
49
+ <xsd:element name="destination" type="xsd:string"/>
50
+ <xsd:element name="netmask" type="xsd:string"/>
51
+ </xsd:sequence>
52
+ </xsd:complexType>
53
+ <xsd:complexType name="Networking.RouteTable.RouteDefinitionSequence">
54
+ <xsd:complexContent>
55
+ <xsd:restriction base='SOAP-ENC:Array'>
56
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.RouteTable.RouteDefinition[]'/>
57
+ </xsd:restriction>
58
+ </xsd:complexContent>
59
+ </xsd:complexType>
60
+ <xsd:complexType name="Common.StringSequence">
61
+ <xsd:complexContent>
62
+ <xsd:restriction base='SOAP-ENC:Array'>
63
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
64
+ </xsd:restriction>
65
+ </xsd:complexContent>
66
+ </xsd:complexType>
67
+ <xsd:complexType name="Networking.RouteTable.DynamicRouteSequence">
68
+ <xsd:complexContent>
69
+ <xsd:restriction base='SOAP-ENC:Array'>
70
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.RouteTable.DynamicRoute[]'/>
71
+ </xsd:restriction>
72
+ </xsd:complexContent>
73
+ </xsd:complexType>
74
+ <xsd:complexType name="Networking.RouteTable.RouteTableMetricStatisticsSequence">
75
+ <xsd:complexContent>
76
+ <xsd:restriction base='SOAP-ENC:Array'>
77
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.RouteTable.RouteTableMetricStatistics[]'/>
78
+ </xsd:restriction>
79
+ </xsd:complexContent>
80
+ </xsd:complexType>
81
+ <xsd:simpleType name="Networking.RouteEntryType">
82
+ <xsd:restriction base="xsd:string">
83
+ <xsd:enumeration value="ROUTE_TYPE_GATEWAY">
84
+ <xsd:annotation>
85
+ <xsd:documentation>ROUTE_TYPE_GATEWAY</xsd:documentation>
86
+ </xsd:annotation>
87
+ </xsd:enumeration>
88
+ <xsd:enumeration value="ROUTE_TYPE_POOL">
89
+ <xsd:annotation>
90
+ <xsd:documentation>ROUTE_TYPE_POOL</xsd:documentation>
91
+ </xsd:annotation>
92
+ </xsd:enumeration>
93
+ <xsd:enumeration value="ROUTE_TYPE_INTERFACE">
94
+ <xsd:annotation>
95
+ <xsd:documentation>ROUTE_TYPE_INTERFACE</xsd:documentation>
96
+ </xsd:annotation>
97
+ </xsd:enumeration>
98
+ <xsd:enumeration value="ROUTE_TYPE_REJECT">
99
+ <xsd:annotation>
100
+ <xsd:documentation>ROUTE_TYPE_REJECT</xsd:documentation>
101
+ </xsd:annotation>
102
+ </xsd:enumeration>
103
+ </xsd:restriction>
104
+ </xsd:simpleType>
105
+ <xsd:complexType name="Common.ULongSequence">
106
+ <xsd:complexContent>
107
+ <xsd:restriction base='SOAP-ENC:Array'>
108
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
109
+ </xsd:restriction>
110
+ </xsd:complexContent>
111
+ </xsd:complexType>
112
+ <xsd:complexType name="Networking.RouteTable.DynamicRouteStatisticsSequence">
113
+ <xsd:complexContent>
114
+ <xsd:restriction base='SOAP-ENC:Array'>
115
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.RouteTable.DynamicRouteStatistics[]'/>
116
+ </xsd:restriction>
117
+ </xsd:complexContent>
118
+ </xsd:complexType>
119
+ <xsd:complexType name="Networking.RouteTable.RouteTableMetricEntrySequence">
120
+ <xsd:complexContent>
121
+ <xsd:restriction base='SOAP-ENC:Array'>
122
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.RouteTable.RouteTableMetricEntry[]'/>
123
+ </xsd:restriction>
124
+ </xsd:complexContent>
125
+ </xsd:complexType>
126
+ <xsd:complexType name="Networking.RouteTable.RouteTableMetricEntry">
127
+ <xsd:sequence>
128
+ <xsd:element name="destination" type="xsd:string"/>
129
+ <xsd:element name="mac_address" type="xsd:string"/>
130
+ <xsd:element name="rtt" type="xsd:long"/>
131
+ <xsd:element name="rtt_variance" type="xsd:long"/>
132
+ <xsd:element name="mtu" type="xsd:long"/>
133
+ <xsd:element name="expiration" type="xsd:long"/>
134
+ </xsd:sequence>
135
+ </xsd:complexType>
136
+ <xsd:complexType name="Networking.RouteTable.DynamicRoute">
137
+ <xsd:sequence>
138
+ <xsd:element name="destination" type="xsd:string"/>
139
+ <xsd:element name="netmask" type="xsd:string"/>
140
+ <xsd:element name="gateway" type="xsd:string"/>
141
+ <xsd:element name="vlan_name" type="xsd:string"/>
142
+ <xsd:element name="pool_name" type="xsd:string"/>
143
+ <xsd:element name="mtu" type="xsd:long"/>
144
+ </xsd:sequence>
145
+ </xsd:complexType>
146
+ <xsd:complexType name="Networking.RouteTable.RouteAttributeSequence">
147
+ <xsd:complexContent>
148
+ <xsd:restriction base='SOAP-ENC:Array'>
149
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.RouteTable.RouteAttribute[]'/>
150
+ </xsd:restriction>
151
+ </xsd:complexContent>
152
+ </xsd:complexType>
153
+ <xsd:complexType name="Common.IPAddressSequence">
154
+ <xsd:complexContent>
155
+ <xsd:restriction base='SOAP-ENC:Array'>
156
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
157
+ </xsd:restriction>
158
+ </xsd:complexContent>
159
+ </xsd:complexType>
160
+ <xsd:complexType name="Networking.RouteTable.DynamicRouteStatistics">
161
+ <xsd:sequence>
162
+ <xsd:element name="statistics" type="tns:Networking.RouteTable.DynamicRouteSequence"/>
163
+ <xsd:element name="time_stamp" type="tns:Common.TimeStamp"/>
164
+ </xsd:sequence>
165
+ </xsd:complexType>
166
+ <xsd:complexType name="Networking.RouteTable.RouteAttribute">
167
+ <xsd:sequence>
168
+ <xsd:element name="gateway" type="xsd:string"/>
169
+ <xsd:element name="vlan_name" type="xsd:string"/>
170
+ <xsd:element name="pool_name" type="xsd:string"/>
171
+ </xsd:sequence>
172
+ </xsd:complexType>
173
+ </xsd:schema>
174
+ </types>
175
+
176
+ <!-- message -->
177
+
178
+ <message name="Networking.RouteTable.get_static_routeRequest">
179
+ </message>
180
+ <message name="Networking.RouteTable.get_static_routeResponse">
181
+ <part name="return" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
182
+ </message>
183
+
184
+ <message name="Networking.RouteTable.add_static_routeRequest">
185
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
186
+ <part name="attributes" type="tns:Networking.RouteTable.RouteAttributeSequence"/>
187
+ </message>
188
+ <message name="Networking.RouteTable.add_static_routeResponse">
189
+ </message>
190
+
191
+ <message name="Networking.RouteTable.delete_static_routeRequest">
192
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
193
+ </message>
194
+ <message name="Networking.RouteTable.delete_static_routeResponse">
195
+ </message>
196
+
197
+ <message name="Networking.RouteTable.delete_all_static_routesRequest">
198
+ </message>
199
+ <message name="Networking.RouteTable.delete_all_static_routesResponse">
200
+ </message>
201
+
202
+ <message name="Networking.RouteTable.get_static_route_typeRequest">
203
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
204
+ </message>
205
+ <message name="Networking.RouteTable.get_static_route_typeResponse">
206
+ <part name="return" type="tns:Networking.RouteEntryTypeSequence"/>
207
+ </message>
208
+
209
+ <message name="Networking.RouteTable.set_static_route_rejectRequest">
210
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
211
+ </message>
212
+ <message name="Networking.RouteTable.set_static_route_rejectResponse">
213
+ </message>
214
+
215
+ <message name="Networking.RouteTable.set_static_route_vlanRequest">
216
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
217
+ <part name="vlans" type="tns:Common.StringSequence"/>
218
+ </message>
219
+ <message name="Networking.RouteTable.set_static_route_vlanResponse">
220
+ </message>
221
+
222
+ <message name="Networking.RouteTable.get_static_route_vlanRequest">
223
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
224
+ </message>
225
+ <message name="Networking.RouteTable.get_static_route_vlanResponse">
226
+ <part name="return" type="tns:Common.StringSequence"/>
227
+ </message>
228
+
229
+ <message name="Networking.RouteTable.set_static_route_gatewayRequest">
230
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
231
+ <part name="gateways" type="tns:Common.IPAddressSequence"/>
232
+ </message>
233
+ <message name="Networking.RouteTable.set_static_route_gatewayResponse">
234
+ </message>
235
+
236
+ <message name="Networking.RouteTable.get_static_route_gatewayRequest">
237
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
238
+ </message>
239
+ <message name="Networking.RouteTable.get_static_route_gatewayResponse">
240
+ <part name="return" type="tns:Common.IPAddressSequence"/>
241
+ </message>
242
+
243
+ <message name="Networking.RouteTable.set_static_route_poolRequest">
244
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
245
+ <part name="pools" type="tns:Common.StringSequence"/>
246
+ </message>
247
+ <message name="Networking.RouteTable.set_static_route_poolResponse">
248
+ </message>
249
+
250
+ <message name="Networking.RouteTable.get_static_route_poolRequest">
251
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
252
+ </message>
253
+ <message name="Networking.RouteTable.get_static_route_poolResponse">
254
+ <part name="return" type="tns:Common.StringSequence"/>
255
+ </message>
256
+
257
+ <message name="Networking.RouteTable.set_static_route_mtuRequest">
258
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
259
+ <part name="mtus" type="tns:Common.ULongSequence"/>
260
+ </message>
261
+ <message name="Networking.RouteTable.set_static_route_mtuResponse">
262
+ </message>
263
+
264
+ <message name="Networking.RouteTable.get_static_route_mtuRequest">
265
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
266
+ </message>
267
+ <message name="Networking.RouteTable.get_static_route_mtuResponse">
268
+ <part name="return" type="tns:Common.ULongSequence"/>
269
+ </message>
270
+
271
+ <message name="Networking.RouteTable.get_management_routeRequest">
272
+ </message>
273
+ <message name="Networking.RouteTable.get_management_routeResponse">
274
+ <part name="return" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
275
+ </message>
276
+
277
+ <message name="Networking.RouteTable.add_management_routeRequest">
278
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
279
+ <part name="attributes" type="tns:Networking.RouteTable.RouteAttributeSequence"/>
280
+ </message>
281
+ <message name="Networking.RouteTable.add_management_routeResponse">
282
+ </message>
283
+
284
+ <message name="Networking.RouteTable.delete_management_routeRequest">
285
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
286
+ </message>
287
+ <message name="Networking.RouteTable.delete_management_routeResponse">
288
+ </message>
289
+
290
+ <message name="Networking.RouteTable.delete_all_management_routesRequest">
291
+ </message>
292
+ <message name="Networking.RouteTable.delete_all_management_routesResponse">
293
+ </message>
294
+
295
+ <message name="Networking.RouteTable.get_management_route_typeRequest">
296
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
297
+ </message>
298
+ <message name="Networking.RouteTable.get_management_route_typeResponse">
299
+ <part name="return" type="tns:Networking.RouteEntryTypeSequence"/>
300
+ </message>
301
+
302
+ <message name="Networking.RouteTable.set_management_route_rejectRequest">
303
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
304
+ </message>
305
+ <message name="Networking.RouteTable.set_management_route_rejectResponse">
306
+ </message>
307
+
308
+ <message name="Networking.RouteTable.set_management_route_gatewayRequest">
309
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
310
+ <part name="gateways" type="tns:Common.IPAddressSequence"/>
311
+ </message>
312
+ <message name="Networking.RouteTable.set_management_route_gatewayResponse">
313
+ </message>
314
+
315
+ <message name="Networking.RouteTable.get_management_route_gatewayRequest">
316
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
317
+ </message>
318
+ <message name="Networking.RouteTable.get_management_route_gatewayResponse">
319
+ <part name="return" type="tns:Common.IPAddressSequence"/>
320
+ </message>
321
+
322
+ <message name="Networking.RouteTable.set_management_route_mtuRequest">
323
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
324
+ <part name="mtus" type="tns:Common.ULongSequence"/>
325
+ </message>
326
+ <message name="Networking.RouteTable.set_management_route_mtuResponse">
327
+ </message>
328
+
329
+ <message name="Networking.RouteTable.get_management_route_mtuRequest">
330
+ <part name="routes" type="tns:Networking.RouteTable.RouteDefinitionSequence"/>
331
+ </message>
332
+ <message name="Networking.RouteTable.get_management_route_mtuResponse">
333
+ <part name="return" type="tns:Common.ULongSequence"/>
334
+ </message>
335
+
336
+ <message name="Networking.RouteTable.get_dynamic_routeRequest">
337
+ <part name="destinations" type="tns:Common.IPAddressSequence"/>
338
+ </message>
339
+ <message name="Networking.RouteTable.get_dynamic_routeResponse">
340
+ <part name="return" type="tns:Networking.RouteTable.DynamicRouteStatisticsSequence"/>
341
+ </message>
342
+
343
+ <message name="Networking.RouteTable.get_route_table_metric_statistics_for_destinationRequest">
344
+ <part name="destinations" type="tns:Common.IPAddressSequence"/>
345
+ </message>
346
+ <message name="Networking.RouteTable.get_route_table_metric_statistics_for_destinationResponse">
347
+ <part name="return" type="tns:Networking.RouteTable.RouteTableMetricStatisticsSequence"/>
348
+ </message>
349
+
350
+ <message name="Networking.RouteTable.get_route_table_metric_statistics_for_macRequest">
351
+ <part name="mac_addresses" type="tns:Common.StringSequence"/>
352
+ </message>
353
+ <message name="Networking.RouteTable.get_route_table_metric_statistics_for_macResponse">
354
+ <part name="return" type="tns:Networking.RouteTable.RouteTableMetricStatisticsSequence"/>
355
+ </message>
356
+
357
+ <message name="Networking.RouteTable.reset_all_route_table_metric_statisticsRequest">
358
+ </message>
359
+ <message name="Networking.RouteTable.reset_all_route_table_metric_statisticsResponse">
360
+ </message>
361
+
362
+ <message name="Networking.RouteTable.get_versionRequest">
363
+ </message>
364
+ <message name="Networking.RouteTable.get_versionResponse">
365
+ <part name="return" type="xsd:string"/>
366
+ </message>
367
+
368
+ <!-- portType -->
369
+
370
+ <portType name="Networking.RouteTablePortType">
371
+ <operation name="get_static_route">
372
+ <documentation>
373
+ Gets a list of all static route entries.
374
+
375
+ </documentation>
376
+ <input message="tns:Networking.RouteTable.get_static_routeRequest"/>
377
+ <output message="tns:Networking.RouteTable.get_static_routeResponse"/>
378
+ </operation>
379
+ <operation name="add_static_route">
380
+ <documentation>
381
+ Adds the specified static route entries to the route table.
382
+
383
+ </documentation>
384
+ <input message="tns:Networking.RouteTable.add_static_routeRequest"/>
385
+ <output message="tns:Networking.RouteTable.add_static_routeResponse"/>
386
+ </operation>
387
+ <operation name="delete_static_route">
388
+ <documentation>
389
+ Deletes the specified static route entries from the route table.
390
+
391
+ </documentation>
392
+ <input message="tns:Networking.RouteTable.delete_static_routeRequest"/>
393
+ <output message="tns:Networking.RouteTable.delete_static_routeResponse"/>
394
+ </operation>
395
+ <operation name="delete_all_static_routes">
396
+ <documentation>
397
+ Deletes all static route entries from the route table.
398
+
399
+ </documentation>
400
+ <input message="tns:Networking.RouteTable.delete_all_static_routesRequest"/>
401
+ <output message="tns:Networking.RouteTable.delete_all_static_routesResponse"/>
402
+ </operation>
403
+ <operation name="get_static_route_type">
404
+ <documentation>
405
+ Gets the route type for the specified static routes.
406
+
407
+ </documentation>
408
+ <input message="tns:Networking.RouteTable.get_static_route_typeRequest"/>
409
+ <output message="tns:Networking.RouteTable.get_static_route_typeResponse"/>
410
+ </operation>
411
+ <operation name="set_static_route_reject">
412
+ <documentation>
413
+ Sets the state that rejects all requests for the specified static routes.
414
+
415
+ </documentation>
416
+ <input message="tns:Networking.RouteTable.set_static_route_rejectRequest"/>
417
+ <output message="tns:Networking.RouteTable.set_static_route_rejectResponse"/>
418
+ </operation>
419
+ <operation name="set_static_route_vlan">
420
+ <documentation>
421
+ Sets the VLAN names for the specified static routes.
422
+
423
+ </documentation>
424
+ <input message="tns:Networking.RouteTable.set_static_route_vlanRequest"/>
425
+ <output message="tns:Networking.RouteTable.set_static_route_vlanResponse"/>
426
+ </operation>
427
+ <operation name="get_static_route_vlan">
428
+ <documentation>
429
+ Gets the VLAN names for the specified static routes.
430
+
431
+ </documentation>
432
+ <input message="tns:Networking.RouteTable.get_static_route_vlanRequest"/>
433
+ <output message="tns:Networking.RouteTable.get_static_route_vlanResponse"/>
434
+ </operation>
435
+ <operation name="set_static_route_gateway">
436
+ <documentation>
437
+ Sets the gateways for the specified static routes.
438
+
439
+ </documentation>
440
+ <input message="tns:Networking.RouteTable.set_static_route_gatewayRequest"/>
441
+ <output message="tns:Networking.RouteTable.set_static_route_gatewayResponse"/>
442
+ </operation>
443
+ <operation name="get_static_route_gateway">
444
+ <documentation>
445
+ Gets the gateways for the specified static routes.
446
+
447
+ </documentation>
448
+ <input message="tns:Networking.RouteTable.get_static_route_gatewayRequest"/>
449
+ <output message="tns:Networking.RouteTable.get_static_route_gatewayResponse"/>
450
+ </operation>
451
+ <operation name="set_static_route_pool">
452
+ <documentation>
453
+ Sets the pool names for the specified static routes. The pool name allow the destination
454
+ to select the nexthop router from a pool.
455
+
456
+ </documentation>
457
+ <input message="tns:Networking.RouteTable.set_static_route_poolRequest"/>
458
+ <output message="tns:Networking.RouteTable.set_static_route_poolResponse"/>
459
+ </operation>
460
+ <operation name="get_static_route_pool">
461
+ <documentation>
462
+ Gets the pool names for the specified static routes. The pool name allow the destination
463
+ to select the nexthop router from a pool.
464
+
465
+ </documentation>
466
+ <input message="tns:Networking.RouteTable.get_static_route_poolRequest"/>
467
+ <output message="tns:Networking.RouteTable.get_static_route_poolResponse"/>
468
+ </operation>
469
+ <operation name="set_static_route_mtu">
470
+ <documentation>
471
+ Sets the MTUs for the specified static routes.
472
+
473
+ </documentation>
474
+ <input message="tns:Networking.RouteTable.set_static_route_mtuRequest"/>
475
+ <output message="tns:Networking.RouteTable.set_static_route_mtuResponse"/>
476
+ </operation>
477
+ <operation name="get_static_route_mtu">
478
+ <documentation>
479
+ Gets the MTUs for the specified static routes.
480
+
481
+ </documentation>
482
+ <input message="tns:Networking.RouteTable.get_static_route_mtuRequest"/>
483
+ <output message="tns:Networking.RouteTable.get_static_route_mtuResponse"/>
484
+ </operation>
485
+ <operation name="get_management_route">
486
+ <documentation>
487
+ Gets a list of all management route entries.
488
+
489
+ </documentation>
490
+ <input message="tns:Networking.RouteTable.get_management_routeRequest"/>
491
+ <output message="tns:Networking.RouteTable.get_management_routeResponse"/>
492
+ </operation>
493
+ <operation name="add_management_route">
494
+ <documentation>
495
+ Adds the specified management route entries to the route table.
496
+
497
+ </documentation>
498
+ <input message="tns:Networking.RouteTable.add_management_routeRequest"/>
499
+ <output message="tns:Networking.RouteTable.add_management_routeResponse"/>
500
+ </operation>
501
+ <operation name="delete_management_route">
502
+ <documentation>
503
+ Deletes the specified management route entries from the route table.
504
+
505
+ </documentation>
506
+ <input message="tns:Networking.RouteTable.delete_management_routeRequest"/>
507
+ <output message="tns:Networking.RouteTable.delete_management_routeResponse"/>
508
+ </operation>
509
+ <operation name="delete_all_management_routes">
510
+ <documentation>
511
+ Deletes all management route entries from the route table.
512
+
513
+ </documentation>
514
+ <input message="tns:Networking.RouteTable.delete_all_management_routesRequest"/>
515
+ <output message="tns:Networking.RouteTable.delete_all_management_routesResponse"/>
516
+ </operation>
517
+ <operation name="get_management_route_type">
518
+ <documentation>
519
+ Gets the route type for the specified management routes.
520
+
521
+ </documentation>
522
+ <input message="tns:Networking.RouteTable.get_management_route_typeRequest"/>
523
+ <output message="tns:Networking.RouteTable.get_management_route_typeResponse"/>
524
+ </operation>
525
+ <operation name="set_management_route_reject">
526
+ <documentation>
527
+ Sets the state that rejects all requests for the specified management routes.
528
+
529
+ </documentation>
530
+ <input message="tns:Networking.RouteTable.set_management_route_rejectRequest"/>
531
+ <output message="tns:Networking.RouteTable.set_management_route_rejectResponse"/>
532
+ </operation>
533
+ <operation name="set_management_route_gateway">
534
+ <documentation>
535
+ Sets the gateways for the specified management routes.
536
+
537
+ </documentation>
538
+ <input message="tns:Networking.RouteTable.set_management_route_gatewayRequest"/>
539
+ <output message="tns:Networking.RouteTable.set_management_route_gatewayResponse"/>
540
+ </operation>
541
+ <operation name="get_management_route_gateway">
542
+ <documentation>
543
+ Gets the gateways for the specified management routes.
544
+
545
+ </documentation>
546
+ <input message="tns:Networking.RouteTable.get_management_route_gatewayRequest"/>
547
+ <output message="tns:Networking.RouteTable.get_management_route_gatewayResponse"/>
548
+ </operation>
549
+ <operation name="set_management_route_mtu">
550
+ <documentation>
551
+ Sets the MTUs for the specified management routes.
552
+
553
+ </documentation>
554
+ <input message="tns:Networking.RouteTable.set_management_route_mtuRequest"/>
555
+ <output message="tns:Networking.RouteTable.set_management_route_mtuResponse"/>
556
+ </operation>
557
+ <operation name="get_management_route_mtu">
558
+ <documentation>
559
+ Gets the MTUs for the specified management routes.
560
+
561
+ </documentation>
562
+ <input message="tns:Networking.RouteTable.get_management_route_mtuRequest"/>
563
+ <output message="tns:Networking.RouteTable.get_management_route_mtuResponse"/>
564
+ </operation>
565
+ <operation name="get_dynamic_route">
566
+ <documentation>
567
+ Gets the dynamic routes for the specified destination IP addresses.
568
+
569
+ </documentation>
570
+ <input message="tns:Networking.RouteTable.get_dynamic_routeRequest"/>
571
+ <output message="tns:Networking.RouteTable.get_dynamic_routeResponse"/>
572
+ </operation>
573
+ <operation name="get_route_table_metric_statistics_for_destination">
574
+ <documentation>
575
+ Gets the route metric statistics for the specified destination IP addresses.
576
+
577
+ </documentation>
578
+ <input message="tns:Networking.RouteTable.get_route_table_metric_statistics_for_destinationRequest"/>
579
+ <output message="tns:Networking.RouteTable.get_route_table_metric_statistics_for_destinationResponse"/>
580
+ </operation>
581
+ <operation name="get_route_table_metric_statistics_for_mac">
582
+ <documentation>
583
+ Gets the route metric statistics for the specified MAC addresses of the gateways.
584
+
585
+ </documentation>
586
+ <input message="tns:Networking.RouteTable.get_route_table_metric_statistics_for_macRequest"/>
587
+ <output message="tns:Networking.RouteTable.get_route_table_metric_statistics_for_macResponse"/>
588
+ </operation>
589
+ <operation name="reset_all_route_table_metric_statistics">
590
+ <documentation>
591
+ Resets or flushes all route metric statistics.
592
+
593
+ </documentation>
594
+ <input message="tns:Networking.RouteTable.reset_all_route_table_metric_statisticsRequest"/>
595
+ <output message="tns:Networking.RouteTable.reset_all_route_table_metric_statisticsResponse"/>
596
+ </operation>
597
+ <operation name="get_version">
598
+ <documentation>
599
+ Gets the version information for this interface.
600
+
601
+ </documentation>
602
+ <input message="tns:Networking.RouteTable.get_versionRequest"/>
603
+ <output message="tns:Networking.RouteTable.get_versionResponse"/>
604
+ </operation>
605
+ </portType>
606
+
607
+ <!-- binding -->
608
+
609
+ <binding name="Networking.RouteTableBinding" type="tns:Networking.RouteTablePortType">
610
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
611
+ <operation name="get_static_route">
612
+ <documentation>
613
+ Gets a list of all static route entries.
614
+
615
+ </documentation>
616
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
617
+ <input>
618
+ <soap:body
619
+ use="encoded"
620
+ namespace="urn:iControl:Networking/RouteTable"
621
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
622
+ </input>
623
+ <output>
624
+ <soap:body
625
+ use="encoded"
626
+ namespace="urn:iControl:Networking/RouteTable"
627
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
628
+ </output>
629
+ </operation>
630
+
631
+ <operation name="add_static_route">
632
+ <documentation>
633
+ Adds the specified static route entries to the route table.
634
+
635
+ </documentation>
636
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
637
+ <input>
638
+ <soap:body
639
+ use="encoded"
640
+ namespace="urn:iControl:Networking/RouteTable"
641
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
642
+ </input>
643
+ <output>
644
+ <soap:body
645
+ use="encoded"
646
+ namespace="urn:iControl:Networking/RouteTable"
647
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
648
+ </output>
649
+ </operation>
650
+
651
+ <operation name="delete_static_route">
652
+ <documentation>
653
+ Deletes the specified static route entries from the route table.
654
+
655
+ </documentation>
656
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
657
+ <input>
658
+ <soap:body
659
+ use="encoded"
660
+ namespace="urn:iControl:Networking/RouteTable"
661
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
662
+ </input>
663
+ <output>
664
+ <soap:body
665
+ use="encoded"
666
+ namespace="urn:iControl:Networking/RouteTable"
667
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
668
+ </output>
669
+ </operation>
670
+
671
+ <operation name="delete_all_static_routes">
672
+ <documentation>
673
+ Deletes all static route entries from the route table.
674
+
675
+ </documentation>
676
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
677
+ <input>
678
+ <soap:body
679
+ use="encoded"
680
+ namespace="urn:iControl:Networking/RouteTable"
681
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
682
+ </input>
683
+ <output>
684
+ <soap:body
685
+ use="encoded"
686
+ namespace="urn:iControl:Networking/RouteTable"
687
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
688
+ </output>
689
+ </operation>
690
+
691
+ <operation name="get_static_route_type">
692
+ <documentation>
693
+ Gets the route type for the specified static routes.
694
+
695
+ </documentation>
696
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
697
+ <input>
698
+ <soap:body
699
+ use="encoded"
700
+ namespace="urn:iControl:Networking/RouteTable"
701
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
702
+ </input>
703
+ <output>
704
+ <soap:body
705
+ use="encoded"
706
+ namespace="urn:iControl:Networking/RouteTable"
707
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
708
+ </output>
709
+ </operation>
710
+
711
+ <operation name="set_static_route_reject">
712
+ <documentation>
713
+ Sets the state that rejects all requests for the specified static routes.
714
+
715
+ </documentation>
716
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
717
+ <input>
718
+ <soap:body
719
+ use="encoded"
720
+ namespace="urn:iControl:Networking/RouteTable"
721
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
722
+ </input>
723
+ <output>
724
+ <soap:body
725
+ use="encoded"
726
+ namespace="urn:iControl:Networking/RouteTable"
727
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
728
+ </output>
729
+ </operation>
730
+
731
+ <operation name="set_static_route_vlan">
732
+ <documentation>
733
+ Sets the VLAN names for the specified static routes.
734
+
735
+ </documentation>
736
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
737
+ <input>
738
+ <soap:body
739
+ use="encoded"
740
+ namespace="urn:iControl:Networking/RouteTable"
741
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
742
+ </input>
743
+ <output>
744
+ <soap:body
745
+ use="encoded"
746
+ namespace="urn:iControl:Networking/RouteTable"
747
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
748
+ </output>
749
+ </operation>
750
+
751
+ <operation name="get_static_route_vlan">
752
+ <documentation>
753
+ Gets the VLAN names for the specified static routes.
754
+
755
+ </documentation>
756
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
757
+ <input>
758
+ <soap:body
759
+ use="encoded"
760
+ namespace="urn:iControl:Networking/RouteTable"
761
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
762
+ </input>
763
+ <output>
764
+ <soap:body
765
+ use="encoded"
766
+ namespace="urn:iControl:Networking/RouteTable"
767
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
768
+ </output>
769
+ </operation>
770
+
771
+ <operation name="set_static_route_gateway">
772
+ <documentation>
773
+ Sets the gateways for the specified static routes.
774
+
775
+ </documentation>
776
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
777
+ <input>
778
+ <soap:body
779
+ use="encoded"
780
+ namespace="urn:iControl:Networking/RouteTable"
781
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
782
+ </input>
783
+ <output>
784
+ <soap:body
785
+ use="encoded"
786
+ namespace="urn:iControl:Networking/RouteTable"
787
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
788
+ </output>
789
+ </operation>
790
+
791
+ <operation name="get_static_route_gateway">
792
+ <documentation>
793
+ Gets the gateways for the specified static routes.
794
+
795
+ </documentation>
796
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
797
+ <input>
798
+ <soap:body
799
+ use="encoded"
800
+ namespace="urn:iControl:Networking/RouteTable"
801
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
802
+ </input>
803
+ <output>
804
+ <soap:body
805
+ use="encoded"
806
+ namespace="urn:iControl:Networking/RouteTable"
807
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
808
+ </output>
809
+ </operation>
810
+
811
+ <operation name="set_static_route_pool">
812
+ <documentation>
813
+ Sets the pool names for the specified static routes. The pool name allow the destination
814
+ to select the nexthop router from a pool.
815
+
816
+ </documentation>
817
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
818
+ <input>
819
+ <soap:body
820
+ use="encoded"
821
+ namespace="urn:iControl:Networking/RouteTable"
822
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
823
+ </input>
824
+ <output>
825
+ <soap:body
826
+ use="encoded"
827
+ namespace="urn:iControl:Networking/RouteTable"
828
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
829
+ </output>
830
+ </operation>
831
+
832
+ <operation name="get_static_route_pool">
833
+ <documentation>
834
+ Gets the pool names for the specified static routes. The pool name allow the destination
835
+ to select the nexthop router from a pool.
836
+
837
+ </documentation>
838
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
839
+ <input>
840
+ <soap:body
841
+ use="encoded"
842
+ namespace="urn:iControl:Networking/RouteTable"
843
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
844
+ </input>
845
+ <output>
846
+ <soap:body
847
+ use="encoded"
848
+ namespace="urn:iControl:Networking/RouteTable"
849
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
850
+ </output>
851
+ </operation>
852
+
853
+ <operation name="set_static_route_mtu">
854
+ <documentation>
855
+ Sets the MTUs for the specified static routes.
856
+
857
+ </documentation>
858
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
859
+ <input>
860
+ <soap:body
861
+ use="encoded"
862
+ namespace="urn:iControl:Networking/RouteTable"
863
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
864
+ </input>
865
+ <output>
866
+ <soap:body
867
+ use="encoded"
868
+ namespace="urn:iControl:Networking/RouteTable"
869
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
870
+ </output>
871
+ </operation>
872
+
873
+ <operation name="get_static_route_mtu">
874
+ <documentation>
875
+ Gets the MTUs for the specified static routes.
876
+
877
+ </documentation>
878
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
879
+ <input>
880
+ <soap:body
881
+ use="encoded"
882
+ namespace="urn:iControl:Networking/RouteTable"
883
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
884
+ </input>
885
+ <output>
886
+ <soap:body
887
+ use="encoded"
888
+ namespace="urn:iControl:Networking/RouteTable"
889
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
890
+ </output>
891
+ </operation>
892
+
893
+ <operation name="get_management_route">
894
+ <documentation>
895
+ Gets a list of all management route entries.
896
+
897
+ </documentation>
898
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
899
+ <input>
900
+ <soap:body
901
+ use="encoded"
902
+ namespace="urn:iControl:Networking/RouteTable"
903
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
904
+ </input>
905
+ <output>
906
+ <soap:body
907
+ use="encoded"
908
+ namespace="urn:iControl:Networking/RouteTable"
909
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
910
+ </output>
911
+ </operation>
912
+
913
+ <operation name="add_management_route">
914
+ <documentation>
915
+ Adds the specified management route entries to the route table.
916
+
917
+ </documentation>
918
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
919
+ <input>
920
+ <soap:body
921
+ use="encoded"
922
+ namespace="urn:iControl:Networking/RouteTable"
923
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
924
+ </input>
925
+ <output>
926
+ <soap:body
927
+ use="encoded"
928
+ namespace="urn:iControl:Networking/RouteTable"
929
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
930
+ </output>
931
+ </operation>
932
+
933
+ <operation name="delete_management_route">
934
+ <documentation>
935
+ Deletes the specified management route entries from the route table.
936
+
937
+ </documentation>
938
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
939
+ <input>
940
+ <soap:body
941
+ use="encoded"
942
+ namespace="urn:iControl:Networking/RouteTable"
943
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
944
+ </input>
945
+ <output>
946
+ <soap:body
947
+ use="encoded"
948
+ namespace="urn:iControl:Networking/RouteTable"
949
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
950
+ </output>
951
+ </operation>
952
+
953
+ <operation name="delete_all_management_routes">
954
+ <documentation>
955
+ Deletes all management route entries from the route table.
956
+
957
+ </documentation>
958
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
959
+ <input>
960
+ <soap:body
961
+ use="encoded"
962
+ namespace="urn:iControl:Networking/RouteTable"
963
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
964
+ </input>
965
+ <output>
966
+ <soap:body
967
+ use="encoded"
968
+ namespace="urn:iControl:Networking/RouteTable"
969
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
970
+ </output>
971
+ </operation>
972
+
973
+ <operation name="get_management_route_type">
974
+ <documentation>
975
+ Gets the route type for the specified management routes.
976
+
977
+ </documentation>
978
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
979
+ <input>
980
+ <soap:body
981
+ use="encoded"
982
+ namespace="urn:iControl:Networking/RouteTable"
983
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
984
+ </input>
985
+ <output>
986
+ <soap:body
987
+ use="encoded"
988
+ namespace="urn:iControl:Networking/RouteTable"
989
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
990
+ </output>
991
+ </operation>
992
+
993
+ <operation name="set_management_route_reject">
994
+ <documentation>
995
+ Sets the state that rejects all requests for the specified management routes.
996
+
997
+ </documentation>
998
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
999
+ <input>
1000
+ <soap:body
1001
+ use="encoded"
1002
+ namespace="urn:iControl:Networking/RouteTable"
1003
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1004
+ </input>
1005
+ <output>
1006
+ <soap:body
1007
+ use="encoded"
1008
+ namespace="urn:iControl:Networking/RouteTable"
1009
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1010
+ </output>
1011
+ </operation>
1012
+
1013
+ <operation name="set_management_route_gateway">
1014
+ <documentation>
1015
+ Sets the gateways for the specified management routes.
1016
+
1017
+ </documentation>
1018
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
1019
+ <input>
1020
+ <soap:body
1021
+ use="encoded"
1022
+ namespace="urn:iControl:Networking/RouteTable"
1023
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1024
+ </input>
1025
+ <output>
1026
+ <soap:body
1027
+ use="encoded"
1028
+ namespace="urn:iControl:Networking/RouteTable"
1029
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1030
+ </output>
1031
+ </operation>
1032
+
1033
+ <operation name="get_management_route_gateway">
1034
+ <documentation>
1035
+ Gets the gateways for the specified management routes.
1036
+
1037
+ </documentation>
1038
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
1039
+ <input>
1040
+ <soap:body
1041
+ use="encoded"
1042
+ namespace="urn:iControl:Networking/RouteTable"
1043
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1044
+ </input>
1045
+ <output>
1046
+ <soap:body
1047
+ use="encoded"
1048
+ namespace="urn:iControl:Networking/RouteTable"
1049
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1050
+ </output>
1051
+ </operation>
1052
+
1053
+ <operation name="set_management_route_mtu">
1054
+ <documentation>
1055
+ Sets the MTUs for the specified management routes.
1056
+
1057
+ </documentation>
1058
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
1059
+ <input>
1060
+ <soap:body
1061
+ use="encoded"
1062
+ namespace="urn:iControl:Networking/RouteTable"
1063
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1064
+ </input>
1065
+ <output>
1066
+ <soap:body
1067
+ use="encoded"
1068
+ namespace="urn:iControl:Networking/RouteTable"
1069
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1070
+ </output>
1071
+ </operation>
1072
+
1073
+ <operation name="get_management_route_mtu">
1074
+ <documentation>
1075
+ Gets the MTUs for the specified management routes.
1076
+
1077
+ </documentation>
1078
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
1079
+ <input>
1080
+ <soap:body
1081
+ use="encoded"
1082
+ namespace="urn:iControl:Networking/RouteTable"
1083
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1084
+ </input>
1085
+ <output>
1086
+ <soap:body
1087
+ use="encoded"
1088
+ namespace="urn:iControl:Networking/RouteTable"
1089
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1090
+ </output>
1091
+ </operation>
1092
+
1093
+ <operation name="get_dynamic_route">
1094
+ <documentation>
1095
+ Gets the dynamic routes for the specified destination IP addresses.
1096
+
1097
+ </documentation>
1098
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
1099
+ <input>
1100
+ <soap:body
1101
+ use="encoded"
1102
+ namespace="urn:iControl:Networking/RouteTable"
1103
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1104
+ </input>
1105
+ <output>
1106
+ <soap:body
1107
+ use="encoded"
1108
+ namespace="urn:iControl:Networking/RouteTable"
1109
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1110
+ </output>
1111
+ </operation>
1112
+
1113
+ <operation name="get_route_table_metric_statistics_for_destination">
1114
+ <documentation>
1115
+ Gets the route metric statistics for the specified destination IP addresses.
1116
+
1117
+ </documentation>
1118
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
1119
+ <input>
1120
+ <soap:body
1121
+ use="encoded"
1122
+ namespace="urn:iControl:Networking/RouteTable"
1123
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1124
+ </input>
1125
+ <output>
1126
+ <soap:body
1127
+ use="encoded"
1128
+ namespace="urn:iControl:Networking/RouteTable"
1129
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1130
+ </output>
1131
+ </operation>
1132
+
1133
+ <operation name="get_route_table_metric_statistics_for_mac">
1134
+ <documentation>
1135
+ Gets the route metric statistics for the specified MAC addresses of the gateways.
1136
+
1137
+ </documentation>
1138
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
1139
+ <input>
1140
+ <soap:body
1141
+ use="encoded"
1142
+ namespace="urn:iControl:Networking/RouteTable"
1143
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1144
+ </input>
1145
+ <output>
1146
+ <soap:body
1147
+ use="encoded"
1148
+ namespace="urn:iControl:Networking/RouteTable"
1149
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1150
+ </output>
1151
+ </operation>
1152
+
1153
+ <operation name="reset_all_route_table_metric_statistics">
1154
+ <documentation>
1155
+ Resets or flushes all route metric statistics.
1156
+
1157
+ </documentation>
1158
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
1159
+ <input>
1160
+ <soap:body
1161
+ use="encoded"
1162
+ namespace="urn:iControl:Networking/RouteTable"
1163
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1164
+ </input>
1165
+ <output>
1166
+ <soap:body
1167
+ use="encoded"
1168
+ namespace="urn:iControl:Networking/RouteTable"
1169
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1170
+ </output>
1171
+ </operation>
1172
+
1173
+ <operation name="get_version">
1174
+ <documentation>
1175
+ Gets the version information for this interface.
1176
+
1177
+ </documentation>
1178
+ <soap:operation soapAction="urn:iControl:Networking/RouteTable"/>
1179
+ <input>
1180
+ <soap:body
1181
+ use="encoded"
1182
+ namespace="urn:iControl:Networking/RouteTable"
1183
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1184
+ </input>
1185
+ <output>
1186
+ <soap:body
1187
+ use="encoded"
1188
+ namespace="urn:iControl:Networking/RouteTable"
1189
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1190
+ </output>
1191
+ </operation>
1192
+ </binding>
1193
+
1194
+ <!-- service -->
1195
+
1196
+ <service name="Networking.RouteTable">
1197
+ <documentation>
1198
+ *IMPORTANT* This entire interface has been deprecated (as of
1199
+ 11.0.0), since all table entries are now accessed by name.
1200
+ Please use the RouteTableV2 interface.
1201
+
1202
+ The RouteTable interface enables you to work with the Route table and entries.
1203
+
1204
+ </documentation>
1205
+ <port name="Networking.RouteTablePort" binding="tns:Networking.RouteTableBinding">
1206
+ <soap:address location="https://url_to_service"/>
1207
+ </port>
1208
+ </service>
1209
+ </definitions>