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,1354 @@
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.Tunnel"
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:simpleType name="Common.EnabledState">
25
+ <xsd:restriction base="xsd:string">
26
+ <xsd:enumeration value="STATE_DISABLED">
27
+ <xsd:annotation>
28
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
29
+ </xsd:annotation>
30
+ </xsd:enumeration>
31
+ <xsd:enumeration value="STATE_ENABLED">
32
+ <xsd:annotation>
33
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
34
+ </xsd:annotation>
35
+ </xsd:enumeration>
36
+ </xsd:restriction>
37
+ </xsd:simpleType>
38
+ <xsd:simpleType name="Common.AutoLasthop">
39
+ <xsd:restriction base="xsd:string">
40
+ <xsd:enumeration value="AUTO_LASTHOP_UNKNOWN">
41
+ <xsd:annotation>
42
+ <xsd:documentation>AUTO_LASTHOP_UNKNOWN</xsd:documentation>
43
+ </xsd:annotation>
44
+ </xsd:enumeration>
45
+ <xsd:enumeration value="AUTO_LASTHOP_DEFAULT">
46
+ <xsd:annotation>
47
+ <xsd:documentation>AUTO_LASTHOP_DEFAULT</xsd:documentation>
48
+ </xsd:annotation>
49
+ </xsd:enumeration>
50
+ <xsd:enumeration value="AUTO_LASTHOP_ENABLED">
51
+ <xsd:annotation>
52
+ <xsd:documentation>AUTO_LASTHOP_ENABLED</xsd:documentation>
53
+ </xsd:annotation>
54
+ </xsd:enumeration>
55
+ <xsd:enumeration value="AUTO_LASTHOP_DISABLED">
56
+ <xsd:annotation>
57
+ <xsd:documentation>AUTO_LASTHOP_DISABLED</xsd:documentation>
58
+ </xsd:annotation>
59
+ </xsd:enumeration>
60
+ </xsd:restriction>
61
+ </xsd:simpleType>
62
+ <xsd:complexType name="Common.StringSequence">
63
+ <xsd:complexContent>
64
+ <xsd:restriction base='SOAP-ENC:Array'>
65
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
66
+ </xsd:restriction>
67
+ </xsd:complexContent>
68
+ </xsd:complexType>
69
+ <xsd:simpleType name="Networking.Tunnel.TunnelDirection">
70
+ <xsd:restriction base="xsd:string">
71
+ <xsd:enumeration value="TUNNEL_DIRECTION_UNKNOWN">
72
+ <xsd:annotation>
73
+ <xsd:documentation>TUNNEL_DIRECTION_UNKNOWN</xsd:documentation>
74
+ </xsd:annotation>
75
+ </xsd:enumeration>
76
+ <xsd:enumeration value="TUNNEL_DIRECTION_INBOUND">
77
+ <xsd:annotation>
78
+ <xsd:documentation>TUNNEL_DIRECTION_INBOUND</xsd:documentation>
79
+ </xsd:annotation>
80
+ </xsd:enumeration>
81
+ <xsd:enumeration value="TUNNEL_DIRECTION_OUTBOUND">
82
+ <xsd:annotation>
83
+ <xsd:documentation>TUNNEL_DIRECTION_OUTBOUND</xsd:documentation>
84
+ </xsd:annotation>
85
+ </xsd:enumeration>
86
+ <xsd:enumeration value="TUNNEL_DIRECTION_BIDIRECTIONAL">
87
+ <xsd:annotation>
88
+ <xsd:documentation>TUNNEL_DIRECTION_BIDIRECTIONAL</xsd:documentation>
89
+ </xsd:annotation>
90
+ </xsd:enumeration>
91
+ </xsd:restriction>
92
+ </xsd:simpleType>
93
+ <xsd:complexType name="Common.ULongSequence">
94
+ <xsd:complexContent>
95
+ <xsd:restriction base='SOAP-ENC:Array'>
96
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
97
+ </xsd:restriction>
98
+ </xsd:complexContent>
99
+ </xsd:complexType>
100
+ <xsd:complexType name="Common.IPAddressSequence">
101
+ <xsd:complexContent>
102
+ <xsd:restriction base='SOAP-ENC:Array'>
103
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
104
+ </xsd:restriction>
105
+ </xsd:complexContent>
106
+ </xsd:complexType>
107
+ <xsd:complexType name="Common.AutoLasthopSequence">
108
+ <xsd:complexContent>
109
+ <xsd:restriction base='SOAP-ENC:Array'>
110
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.AutoLasthop[]'/>
111
+ </xsd:restriction>
112
+ </xsd:complexContent>
113
+ </xsd:complexType>
114
+ <xsd:complexType name="Networking.Tunnel.TunnelDirectionSequence">
115
+ <xsd:complexContent>
116
+ <xsd:restriction base='SOAP-ENC:Array'>
117
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.Tunnel.TunnelDirection[]'/>
118
+ </xsd:restriction>
119
+ </xsd:complexContent>
120
+ </xsd:complexType>
121
+ <xsd:complexType name="Common.EnabledStateSequence">
122
+ <xsd:complexContent>
123
+ <xsd:restriction base='SOAP-ENC:Array'>
124
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
125
+ </xsd:restriction>
126
+ </xsd:complexContent>
127
+ </xsd:complexType>
128
+ </xsd:schema>
129
+ </types>
130
+
131
+ <!-- message -->
132
+
133
+ <message name="Networking.Tunnel.get_listRequest">
134
+ </message>
135
+ <message name="Networking.Tunnel.get_listResponse">
136
+ <part name="return" type="tns:Common.StringSequence"/>
137
+ </message>
138
+
139
+ <message name="Networking.Tunnel.createRequest">
140
+ <part name="tunnels" type="tns:Common.StringSequence"/>
141
+ <part name="local_addresses" type="tns:Common.IPAddressSequence"/>
142
+ <part name="remote_addresses" type="tns:Common.IPAddressSequence"/>
143
+ <part name="profiles" type="tns:Common.StringSequence"/>
144
+ </message>
145
+ <message name="Networking.Tunnel.createResponse">
146
+ </message>
147
+
148
+ <message name="Networking.Tunnel.delete_tunnelRequest">
149
+ <part name="tunnels" type="tns:Common.StringSequence"/>
150
+ </message>
151
+ <message name="Networking.Tunnel.delete_tunnelResponse">
152
+ </message>
153
+
154
+ <message name="Networking.Tunnel.delete_all_tunnelsRequest">
155
+ </message>
156
+ <message name="Networking.Tunnel.delete_all_tunnelsResponse">
157
+ </message>
158
+
159
+ <message name="Networking.Tunnel.set_local_addressRequest">
160
+ <part name="tunnels" type="tns:Common.StringSequence"/>
161
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
162
+ </message>
163
+ <message name="Networking.Tunnel.set_local_addressResponse">
164
+ </message>
165
+
166
+ <message name="Networking.Tunnel.get_local_addressRequest">
167
+ <part name="tunnels" type="tns:Common.StringSequence"/>
168
+ </message>
169
+ <message name="Networking.Tunnel.get_local_addressResponse">
170
+ <part name="return" type="tns:Common.IPAddressSequence"/>
171
+ </message>
172
+
173
+ <message name="Networking.Tunnel.set_remote_addressRequest">
174
+ <part name="tunnels" type="tns:Common.StringSequence"/>
175
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
176
+ </message>
177
+ <message name="Networking.Tunnel.set_remote_addressResponse">
178
+ </message>
179
+
180
+ <message name="Networking.Tunnel.get_remote_addressRequest">
181
+ <part name="tunnels" type="tns:Common.StringSequence"/>
182
+ </message>
183
+ <message name="Networking.Tunnel.get_remote_addressResponse">
184
+ <part name="return" type="tns:Common.IPAddressSequence"/>
185
+ </message>
186
+
187
+ <message name="Networking.Tunnel.set_directionRequest">
188
+ <part name="tunnels" type="tns:Common.StringSequence"/>
189
+ <part name="directions" type="tns:Networking.Tunnel.TunnelDirectionSequence"/>
190
+ </message>
191
+ <message name="Networking.Tunnel.set_directionResponse">
192
+ </message>
193
+
194
+ <message name="Networking.Tunnel.get_directionRequest">
195
+ <part name="tunnels" type="tns:Common.StringSequence"/>
196
+ </message>
197
+ <message name="Networking.Tunnel.get_directionResponse">
198
+ <part name="return" type="tns:Networking.Tunnel.TunnelDirectionSequence"/>
199
+ </message>
200
+
201
+ <message name="Networking.Tunnel.set_profileRequest">
202
+ <part name="tunnels" type="tns:Common.StringSequence"/>
203
+ <part name="profiles" type="tns:Common.StringSequence"/>
204
+ </message>
205
+ <message name="Networking.Tunnel.set_profileResponse">
206
+ </message>
207
+
208
+ <message name="Networking.Tunnel.get_profileRequest">
209
+ <part name="tunnels" type="tns:Common.StringSequence"/>
210
+ </message>
211
+ <message name="Networking.Tunnel.get_profileResponse">
212
+ <part name="return" type="tns:Common.StringSequence"/>
213
+ </message>
214
+
215
+ <message name="Networking.Tunnel.set_mtuRequest">
216
+ <part name="tunnels" type="tns:Common.StringSequence"/>
217
+ <part name="mtus" type="tns:Common.ULongSequence"/>
218
+ </message>
219
+ <message name="Networking.Tunnel.set_mtuResponse">
220
+ </message>
221
+
222
+ <message name="Networking.Tunnel.get_mtuRequest">
223
+ <part name="tunnels" type="tns:Common.StringSequence"/>
224
+ </message>
225
+ <message name="Networking.Tunnel.get_mtuResponse">
226
+ <part name="return" type="tns:Common.ULongSequence"/>
227
+ </message>
228
+
229
+ <message name="Networking.Tunnel.set_tosRequest">
230
+ <part name="tunnels" type="tns:Common.StringSequence"/>
231
+ <part name="values" type="tns:Common.ULongSequence"/>
232
+ </message>
233
+ <message name="Networking.Tunnel.set_tosResponse">
234
+ </message>
235
+
236
+ <message name="Networking.Tunnel.get_tosRequest">
237
+ <part name="tunnels" type="tns:Common.StringSequence"/>
238
+ </message>
239
+ <message name="Networking.Tunnel.get_tosResponse">
240
+ <part name="return" type="tns:Common.ULongSequence"/>
241
+ </message>
242
+
243
+ <message name="Networking.Tunnel.set_auto_lasthopRequest">
244
+ <part name="tunnels" type="tns:Common.StringSequence"/>
245
+ <part name="values" type="tns:Common.AutoLasthopSequence"/>
246
+ </message>
247
+ <message name="Networking.Tunnel.set_auto_lasthopResponse">
248
+ </message>
249
+
250
+ <message name="Networking.Tunnel.get_auto_lasthopRequest">
251
+ <part name="tunnels" type="tns:Common.StringSequence"/>
252
+ </message>
253
+ <message name="Networking.Tunnel.get_auto_lasthopResponse">
254
+ <part name="return" type="tns:Common.AutoLasthopSequence"/>
255
+ </message>
256
+
257
+ <message name="Networking.Tunnel.set_descriptionRequest">
258
+ <part name="tunnels" type="tns:Common.StringSequence"/>
259
+ <part name="descriptions" type="tns:Common.StringSequence"/>
260
+ </message>
261
+ <message name="Networking.Tunnel.set_descriptionResponse">
262
+ </message>
263
+
264
+ <message name="Networking.Tunnel.get_descriptionRequest">
265
+ <part name="tunnels" type="tns:Common.StringSequence"/>
266
+ </message>
267
+ <message name="Networking.Tunnel.get_descriptionResponse">
268
+ <part name="return" type="tns:Common.StringSequence"/>
269
+ </message>
270
+
271
+ <message name="Networking.Tunnel.set_transparent_stateRequest">
272
+ <part name="tunnels" type="tns:Common.StringSequence"/>
273
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
274
+ </message>
275
+ <message name="Networking.Tunnel.set_transparent_stateResponse">
276
+ </message>
277
+
278
+ <message name="Networking.Tunnel.get_transparent_stateRequest">
279
+ <part name="tunnels" type="tns:Common.StringSequence"/>
280
+ </message>
281
+ <message name="Networking.Tunnel.get_transparent_stateResponse">
282
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
283
+ </message>
284
+
285
+ <message name="Networking.Tunnel.set_idle_timeoutRequest">
286
+ <part name="tunnels" type="tns:Common.StringSequence"/>
287
+ <part name="timeouts" type="tns:Common.ULongSequence"/>
288
+ </message>
289
+ <message name="Networking.Tunnel.set_idle_timeoutResponse">
290
+ </message>
291
+
292
+ <message name="Networking.Tunnel.get_idle_timeoutRequest">
293
+ <part name="tunnels" type="tns:Common.StringSequence"/>
294
+ </message>
295
+ <message name="Networking.Tunnel.get_idle_timeoutResponse">
296
+ <part name="return" type="tns:Common.ULongSequence"/>
297
+ </message>
298
+
299
+ <message name="Networking.Tunnel.create_with_transparent_stateRequest">
300
+ <part name="tunnels" type="tns:Common.StringSequence"/>
301
+ <part name="local_addresses" type="tns:Common.IPAddressSequence"/>
302
+ <part name="remote_addresses" type="tns:Common.IPAddressSequence"/>
303
+ <part name="profiles" type="tns:Common.StringSequence"/>
304
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
305
+ </message>
306
+ <message name="Networking.Tunnel.create_with_transparent_stateResponse">
307
+ </message>
308
+
309
+ <message name="Networking.Tunnel.set_local_address_with_transparent_stateRequest">
310
+ <part name="tunnels" type="tns:Common.StringSequence"/>
311
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
312
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
313
+ </message>
314
+ <message name="Networking.Tunnel.set_local_address_with_transparent_stateResponse">
315
+ </message>
316
+
317
+ <message name="Networking.Tunnel.set_keyRequest">
318
+ <part name="tunnels" type="tns:Common.StringSequence"/>
319
+ <part name="keys" type="tns:Common.ULongSequence"/>
320
+ </message>
321
+ <message name="Networking.Tunnel.set_keyResponse">
322
+ </message>
323
+
324
+ <message name="Networking.Tunnel.get_keyRequest">
325
+ <part name="tunnels" type="tns:Common.StringSequence"/>
326
+ </message>
327
+ <message name="Networking.Tunnel.get_keyResponse">
328
+ <part name="return" type="tns:Common.ULongSequence"/>
329
+ </message>
330
+
331
+ <message name="Networking.Tunnel.get_mac_addressRequest">
332
+ <part name="tunnels" type="tns:Common.StringSequence"/>
333
+ </message>
334
+ <message name="Networking.Tunnel.get_mac_addressResponse">
335
+ <part name="return" type="tns:Common.StringSequence"/>
336
+ </message>
337
+
338
+ <message name="Networking.Tunnel.create_with_keyRequest">
339
+ <part name="tunnels" type="tns:Common.StringSequence"/>
340
+ <part name="local_addresses" type="tns:Common.IPAddressSequence"/>
341
+ <part name="remote_addresses" type="tns:Common.IPAddressSequence"/>
342
+ <part name="profiles" type="tns:Common.StringSequence"/>
343
+ <part name="keys" type="tns:Common.ULongSequence"/>
344
+ </message>
345
+ <message name="Networking.Tunnel.create_with_keyResponse">
346
+ </message>
347
+
348
+ <message name="Networking.Tunnel.get_versionRequest">
349
+ </message>
350
+ <message name="Networking.Tunnel.get_versionResponse">
351
+ <part name="return" type="xsd:string"/>
352
+ </message>
353
+
354
+ <!-- portType -->
355
+
356
+ <portType name="Networking.TunnelPortType">
357
+ <operation name="get_list">
358
+ <documentation>
359
+ Gets the names of all tunnels.
360
+
361
+ </documentation>
362
+ <input message="tns:Networking.Tunnel.get_listRequest"/>
363
+ <output message="tns:Networking.Tunnel.get_listResponse"/>
364
+ </operation>
365
+ <operation name="create">
366
+ <documentation>
367
+ Creates the specified tunnels.
368
+
369
+ </documentation>
370
+ <input message="tns:Networking.Tunnel.createRequest"/>
371
+ <output message="tns:Networking.Tunnel.createResponse"/>
372
+ </operation>
373
+ <operation name="delete_tunnel">
374
+ <documentation>
375
+ Deletes the specified tunnels.
376
+
377
+ </documentation>
378
+ <input message="tns:Networking.Tunnel.delete_tunnelRequest"/>
379
+ <output message="tns:Networking.Tunnel.delete_tunnelResponse"/>
380
+ </operation>
381
+ <operation name="delete_all_tunnels">
382
+ <documentation>
383
+ Deletes all tunnels.
384
+
385
+ </documentation>
386
+ <input message="tns:Networking.Tunnel.delete_all_tunnelsRequest"/>
387
+ <output message="tns:Networking.Tunnel.delete_all_tunnelsResponse"/>
388
+ </operation>
389
+ <operation name="set_local_address">
390
+ <documentation>
391
+ Sets the IP address for the local end of the tunnel for the specified
392
+ tunnels.
393
+
394
+ </documentation>
395
+ <input message="tns:Networking.Tunnel.set_local_addressRequest"/>
396
+ <output message="tns:Networking.Tunnel.set_local_addressResponse"/>
397
+ </operation>
398
+ <operation name="get_local_address">
399
+ <documentation>
400
+ Gets the IP address for the local end for the specified tunnels.
401
+
402
+ </documentation>
403
+ <input message="tns:Networking.Tunnel.get_local_addressRequest"/>
404
+ <output message="tns:Networking.Tunnel.get_local_addressResponse"/>
405
+ </operation>
406
+ <operation name="set_remote_address">
407
+ <documentation>
408
+ Sets the IP address for the remote end for the specified tunnels.
409
+
410
+ </documentation>
411
+ <input message="tns:Networking.Tunnel.set_remote_addressRequest"/>
412
+ <output message="tns:Networking.Tunnel.set_remote_addressResponse"/>
413
+ </operation>
414
+ <operation name="get_remote_address">
415
+ <documentation>
416
+ Gets the IP address for the remote end for the specified tunnels.
417
+
418
+ </documentation>
419
+ <input message="tns:Networking.Tunnel.get_remote_addressRequest"/>
420
+ <output message="tns:Networking.Tunnel.get_remote_addressResponse"/>
421
+ </operation>
422
+ <operation name="set_direction">
423
+ <documentation>
424
+ Sets the direction for traffic flow within the specified tunnels.
425
+
426
+ </documentation>
427
+ <input message="tns:Networking.Tunnel.set_directionRequest"/>
428
+ <output message="tns:Networking.Tunnel.set_directionResponse"/>
429
+ </operation>
430
+ <operation name="get_direction">
431
+ <documentation>
432
+ Gets the direction for traffic flow within the specified tunnels.
433
+
434
+ </documentation>
435
+ <input message="tns:Networking.Tunnel.get_directionRequest"/>
436
+ <output message="tns:Networking.Tunnel.get_directionResponse"/>
437
+ </operation>
438
+ <operation name="set_profile">
439
+ <documentation>
440
+ Sets the profile specifying the tunneling protocol for the specified
441
+ tunnels (e.g. IPIP, GRE, WCCP-GRE tunnel profiles).
442
+
443
+ </documentation>
444
+ <input message="tns:Networking.Tunnel.set_profileRequest"/>
445
+ <output message="tns:Networking.Tunnel.set_profileResponse"/>
446
+ </operation>
447
+ <operation name="get_profile">
448
+ <documentation>
449
+ Gets the profile specifying the tunneling protocol for the specified
450
+ tunnels.
451
+
452
+ </documentation>
453
+ <input message="tns:Networking.Tunnel.get_profileRequest"/>
454
+ <output message="tns:Networking.Tunnel.get_profileResponse"/>
455
+ </operation>
456
+ <operation name="set_mtu">
457
+ <documentation>
458
+ Sets the maximum transmission unit (MTU) for the specified tunnels.
459
+
460
+ If zero, the tunnel's MTU is automatically set to the MTU of the
461
+ tunnel's underlying interface minus the encapsulation overhead
462
+ introduced by the tunneling protocol in use for the tunnel.
463
+
464
+ </documentation>
465
+ <input message="tns:Networking.Tunnel.set_mtuRequest"/>
466
+ <output message="tns:Networking.Tunnel.set_mtuResponse"/>
467
+ </operation>
468
+ <operation name="get_mtu">
469
+ <documentation>
470
+ Gets the maximum transmission unit (MTU) for the specified tunnels.
471
+
472
+ </documentation>
473
+ <input message="tns:Networking.Tunnel.get_mtuRequest"/>
474
+ <output message="tns:Networking.Tunnel.get_mtuResponse"/>
475
+ </operation>
476
+ <operation name="set_tos">
477
+ <documentation>
478
+ Sets the Type of Service (ToS) value for the encapsulating packet's
479
+ IP header. The valid range is zero to 255. The special value
480
+ 65535 specifies that the encapsulating packet's IP header ToS value
481
+ is set to the encapsulated packet's IP header ToS value.
482
+
483
+ </documentation>
484
+ <input message="tns:Networking.Tunnel.set_tosRequest"/>
485
+ <output message="tns:Networking.Tunnel.set_tosResponse"/>
486
+ </operation>
487
+ <operation name="get_tos">
488
+ <documentation>
489
+ Gets the Type of Service (ToS) value for the encapsulating packet's
490
+ IP header.
491
+
492
+ </documentation>
493
+ <input message="tns:Networking.Tunnel.get_tosRequest"/>
494
+ <output message="tns:Networking.Tunnel.get_tosResponse"/>
495
+ </operation>
496
+ <operation name="set_auto_lasthop">
497
+ <documentation>
498
+ Sets the attribute that specifies auto-lasthop behavior,
499
+ for the specified tunnels.
500
+ This controls how the system routes return traffic.
501
+ The default is AUTO_LASTHOP_DEFAULT.
502
+
503
+ </documentation>
504
+ <input message="tns:Networking.Tunnel.set_auto_lasthopRequest"/>
505
+ <output message="tns:Networking.Tunnel.set_auto_lasthopResponse"/>
506
+ </operation>
507
+ <operation name="get_auto_lasthop">
508
+ <documentation>
509
+ Gets the attribute that specifies auto-lasthop behavior,
510
+ for the specified tunnels.
511
+
512
+ </documentation>
513
+ <input message="tns:Networking.Tunnel.get_auto_lasthopRequest"/>
514
+ <output message="tns:Networking.Tunnel.get_auto_lasthopResponse"/>
515
+ </operation>
516
+ <operation name="set_description">
517
+ <documentation>
518
+ Sets the description for the specified tunnels.
519
+
520
+ This is an arbitrary field which can be used for any purpose.
521
+
522
+ </documentation>
523
+ <input message="tns:Networking.Tunnel.set_descriptionRequest"/>
524
+ <output message="tns:Networking.Tunnel.set_descriptionResponse"/>
525
+ </operation>
526
+ <operation name="get_description">
527
+ <documentation>
528
+ Gets the descriptions for the specified tunnels.
529
+
530
+ </documentation>
531
+ <input message="tns:Networking.Tunnel.get_descriptionRequest"/>
532
+ <output message="tns:Networking.Tunnel.get_descriptionResponse"/>
533
+ </operation>
534
+ <operation name="set_transparent_state">
535
+ <documentation>
536
+ Sets the transparent property for the specified tunnels.
537
+
538
+ Enables or disables the tunnel to be transparent. If enabled, the
539
+ user can inspect and/or manipulate the encapsulated traffic flowing
540
+ through the BIG-IP. A transparent tunnel terminates a tunnel while
541
+ presenting the illusion that the tunnel transits the device
542
+ unperturbed i.e. the BIG-IP appears like an intermediate router
543
+ that simply routes IP traffic through the device. The default value
544
+ is disabled.
545
+
546
+ </documentation>
547
+ <input message="tns:Networking.Tunnel.set_transparent_stateRequest"/>
548
+ <output message="tns:Networking.Tunnel.set_transparent_stateResponse"/>
549
+ </operation>
550
+ <operation name="get_transparent_state">
551
+ <documentation>
552
+ Gets the transparent property for the specified tunnels.
553
+
554
+ </documentation>
555
+ <input message="tns:Networking.Tunnel.get_transparent_stateRequest"/>
556
+ <output message="tns:Networking.Tunnel.get_transparent_stateResponse"/>
557
+ </operation>
558
+ <operation name="set_idle_timeout">
559
+ <documentation>
560
+ Sets the idle timeout for the specified tunnels.
561
+
562
+ Specifies an idle timeout for wildcard tunnels (i.e. tunnels with
563
+ remote address 0.0.0.0) in seconds. This setting specifies the
564
+ number of seconds that a wildcard tunnel connection is idle before
565
+ the connection is eligible for deletion. If zero, the tunnel's
566
+ idle timeout is automatically set to the default of 300.
567
+
568
+ </documentation>
569
+ <input message="tns:Networking.Tunnel.set_idle_timeoutRequest"/>
570
+ <output message="tns:Networking.Tunnel.set_idle_timeoutResponse"/>
571
+ </operation>
572
+ <operation name="get_idle_timeout">
573
+ <documentation>
574
+ Gets the idle timeout values for the specified tunnels.
575
+
576
+ </documentation>
577
+ <input message="tns:Networking.Tunnel.get_idle_timeoutRequest"/>
578
+ <output message="tns:Networking.Tunnel.get_idle_timeoutResponse"/>
579
+ </operation>
580
+ <operation name="create_with_transparent_state">
581
+ <documentation>
582
+ Creates the specified tunnels with transparent states.
583
+
584
+ It is for convenience to allow you to avoid using a transaction,
585
+ because you can specify a 0.0.0.0 local address only if
586
+ transparent is enabled. (Either a transaction or this method are
587
+ good ways of satisfying this validation).
588
+
589
+ </documentation>
590
+ <input message="tns:Networking.Tunnel.create_with_transparent_stateRequest"/>
591
+ <output message="tns:Networking.Tunnel.create_with_transparent_stateResponse"/>
592
+ </operation>
593
+ <operation name="set_local_address_with_transparent_state">
594
+ <documentation>
595
+ Sets the IP address for the local end of the tunnel along with the
596
+ transparent state of the tunnel for the specified tunnels.
597
+
598
+ It is for convenience to allow you to avoid using a transaction,
599
+ because you can specify a 0.0.0.0 local address only if
600
+ transparent is enabled. (Either a transaction or this method are
601
+ good ways of satisfying this validation).
602
+
603
+ </documentation>
604
+ <input message="tns:Networking.Tunnel.set_local_address_with_transparent_stateRequest"/>
605
+ <output message="tns:Networking.Tunnel.set_local_address_with_transparent_stateResponse"/>
606
+ </operation>
607
+ <operation name="set_key">
608
+ <documentation>
609
+ Sets the keys for a set of tunnels.
610
+
611
+ A key can be used to signify different values depending
612
+ on the type of tunnel. As an example, it is used as the
613
+ Virtual Network Identifier (VNI) for VXLAN tunnels.
614
+ The default value is 0.
615
+
616
+ </documentation>
617
+ <input message="tns:Networking.Tunnel.set_keyRequest"/>
618
+ <output message="tns:Networking.Tunnel.set_keyResponse"/>
619
+ </operation>
620
+ <operation name="get_key">
621
+ <documentation>
622
+ Gets the keys for a set of tunnels.
623
+
624
+ </documentation>
625
+ <input message="tns:Networking.Tunnel.get_keyRequest"/>
626
+ <output message="tns:Networking.Tunnel.get_keyResponse"/>
627
+ </operation>
628
+ <operation name="get_mac_address">
629
+ <documentation>
630
+ Gets the MAC addresses used by the specified tunnels.
631
+
632
+ The MAC address for tunnels cannot be set by the user.
633
+
634
+ </documentation>
635
+ <input message="tns:Networking.Tunnel.get_mac_addressRequest"/>
636
+ <output message="tns:Networking.Tunnel.get_mac_addressResponse"/>
637
+ </operation>
638
+ <operation name="create_with_key">
639
+ <documentation>
640
+ Creates a set of tunnels with key values specified.
641
+
642
+ It is for convenience to allow you to avoid using a transaction,
643
+ because the existing tunnel create API does not allow key values
644
+ to be specified during tunnel creation. (Either a transaction or
645
+ this method are good ways of satisfying this validation).
646
+
647
+ </documentation>
648
+ <input message="tns:Networking.Tunnel.create_with_keyRequest"/>
649
+ <output message="tns:Networking.Tunnel.create_with_keyResponse"/>
650
+ </operation>
651
+ <operation name="get_version">
652
+ <documentation>
653
+ Gets the version information for this interface.
654
+
655
+ </documentation>
656
+ <input message="tns:Networking.Tunnel.get_versionRequest"/>
657
+ <output message="tns:Networking.Tunnel.get_versionResponse"/>
658
+ </operation>
659
+ </portType>
660
+
661
+ <!-- binding -->
662
+
663
+ <binding name="Networking.TunnelBinding" type="tns:Networking.TunnelPortType">
664
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
665
+ <operation name="get_list">
666
+ <documentation>
667
+ Gets the names of all tunnels.
668
+
669
+ </documentation>
670
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
671
+ <input>
672
+ <soap:body
673
+ use="encoded"
674
+ namespace="urn:iControl:Networking/Tunnel"
675
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
676
+ </input>
677
+ <output>
678
+ <soap:body
679
+ use="encoded"
680
+ namespace="urn:iControl:Networking/Tunnel"
681
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
682
+ </output>
683
+ </operation>
684
+
685
+ <operation name="create">
686
+ <documentation>
687
+ Creates the specified tunnels.
688
+
689
+ </documentation>
690
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
691
+ <input>
692
+ <soap:body
693
+ use="encoded"
694
+ namespace="urn:iControl:Networking/Tunnel"
695
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
696
+ </input>
697
+ <output>
698
+ <soap:body
699
+ use="encoded"
700
+ namespace="urn:iControl:Networking/Tunnel"
701
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
702
+ </output>
703
+ </operation>
704
+
705
+ <operation name="delete_tunnel">
706
+ <documentation>
707
+ Deletes the specified tunnels.
708
+
709
+ </documentation>
710
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
711
+ <input>
712
+ <soap:body
713
+ use="encoded"
714
+ namespace="urn:iControl:Networking/Tunnel"
715
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
716
+ </input>
717
+ <output>
718
+ <soap:body
719
+ use="encoded"
720
+ namespace="urn:iControl:Networking/Tunnel"
721
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
722
+ </output>
723
+ </operation>
724
+
725
+ <operation name="delete_all_tunnels">
726
+ <documentation>
727
+ Deletes all tunnels.
728
+
729
+ </documentation>
730
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
731
+ <input>
732
+ <soap:body
733
+ use="encoded"
734
+ namespace="urn:iControl:Networking/Tunnel"
735
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
736
+ </input>
737
+ <output>
738
+ <soap:body
739
+ use="encoded"
740
+ namespace="urn:iControl:Networking/Tunnel"
741
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
742
+ </output>
743
+ </operation>
744
+
745
+ <operation name="set_local_address">
746
+ <documentation>
747
+ Sets the IP address for the local end of the tunnel for the specified
748
+ tunnels.
749
+
750
+ </documentation>
751
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
752
+ <input>
753
+ <soap:body
754
+ use="encoded"
755
+ namespace="urn:iControl:Networking/Tunnel"
756
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
757
+ </input>
758
+ <output>
759
+ <soap:body
760
+ use="encoded"
761
+ namespace="urn:iControl:Networking/Tunnel"
762
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
763
+ </output>
764
+ </operation>
765
+
766
+ <operation name="get_local_address">
767
+ <documentation>
768
+ Gets the IP address for the local end for the specified tunnels.
769
+
770
+ </documentation>
771
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
772
+ <input>
773
+ <soap:body
774
+ use="encoded"
775
+ namespace="urn:iControl:Networking/Tunnel"
776
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
777
+ </input>
778
+ <output>
779
+ <soap:body
780
+ use="encoded"
781
+ namespace="urn:iControl:Networking/Tunnel"
782
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
783
+ </output>
784
+ </operation>
785
+
786
+ <operation name="set_remote_address">
787
+ <documentation>
788
+ Sets the IP address for the remote end for the specified tunnels.
789
+
790
+ </documentation>
791
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
792
+ <input>
793
+ <soap:body
794
+ use="encoded"
795
+ namespace="urn:iControl:Networking/Tunnel"
796
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
797
+ </input>
798
+ <output>
799
+ <soap:body
800
+ use="encoded"
801
+ namespace="urn:iControl:Networking/Tunnel"
802
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
803
+ </output>
804
+ </operation>
805
+
806
+ <operation name="get_remote_address">
807
+ <documentation>
808
+ Gets the IP address for the remote end for the specified tunnels.
809
+
810
+ </documentation>
811
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
812
+ <input>
813
+ <soap:body
814
+ use="encoded"
815
+ namespace="urn:iControl:Networking/Tunnel"
816
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
817
+ </input>
818
+ <output>
819
+ <soap:body
820
+ use="encoded"
821
+ namespace="urn:iControl:Networking/Tunnel"
822
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
823
+ </output>
824
+ </operation>
825
+
826
+ <operation name="set_direction">
827
+ <documentation>
828
+ Sets the direction for traffic flow within the specified tunnels.
829
+
830
+ </documentation>
831
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
832
+ <input>
833
+ <soap:body
834
+ use="encoded"
835
+ namespace="urn:iControl:Networking/Tunnel"
836
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
837
+ </input>
838
+ <output>
839
+ <soap:body
840
+ use="encoded"
841
+ namespace="urn:iControl:Networking/Tunnel"
842
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
843
+ </output>
844
+ </operation>
845
+
846
+ <operation name="get_direction">
847
+ <documentation>
848
+ Gets the direction for traffic flow within the specified tunnels.
849
+
850
+ </documentation>
851
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
852
+ <input>
853
+ <soap:body
854
+ use="encoded"
855
+ namespace="urn:iControl:Networking/Tunnel"
856
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
857
+ </input>
858
+ <output>
859
+ <soap:body
860
+ use="encoded"
861
+ namespace="urn:iControl:Networking/Tunnel"
862
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
863
+ </output>
864
+ </operation>
865
+
866
+ <operation name="set_profile">
867
+ <documentation>
868
+ Sets the profile specifying the tunneling protocol for the specified
869
+ tunnels (e.g. IPIP, GRE, WCCP-GRE tunnel profiles).
870
+
871
+ </documentation>
872
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
873
+ <input>
874
+ <soap:body
875
+ use="encoded"
876
+ namespace="urn:iControl:Networking/Tunnel"
877
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
878
+ </input>
879
+ <output>
880
+ <soap:body
881
+ use="encoded"
882
+ namespace="urn:iControl:Networking/Tunnel"
883
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
884
+ </output>
885
+ </operation>
886
+
887
+ <operation name="get_profile">
888
+ <documentation>
889
+ Gets the profile specifying the tunneling protocol for the specified
890
+ tunnels.
891
+
892
+ </documentation>
893
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
894
+ <input>
895
+ <soap:body
896
+ use="encoded"
897
+ namespace="urn:iControl:Networking/Tunnel"
898
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
899
+ </input>
900
+ <output>
901
+ <soap:body
902
+ use="encoded"
903
+ namespace="urn:iControl:Networking/Tunnel"
904
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
905
+ </output>
906
+ </operation>
907
+
908
+ <operation name="set_mtu">
909
+ <documentation>
910
+ Sets the maximum transmission unit (MTU) for the specified tunnels.
911
+
912
+ If zero, the tunnel's MTU is automatically set to the MTU of the
913
+ tunnel's underlying interface minus the encapsulation overhead
914
+ introduced by the tunneling protocol in use for the tunnel.
915
+
916
+ </documentation>
917
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
918
+ <input>
919
+ <soap:body
920
+ use="encoded"
921
+ namespace="urn:iControl:Networking/Tunnel"
922
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
923
+ </input>
924
+ <output>
925
+ <soap:body
926
+ use="encoded"
927
+ namespace="urn:iControl:Networking/Tunnel"
928
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
929
+ </output>
930
+ </operation>
931
+
932
+ <operation name="get_mtu">
933
+ <documentation>
934
+ Gets the maximum transmission unit (MTU) for the specified tunnels.
935
+
936
+ </documentation>
937
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
938
+ <input>
939
+ <soap:body
940
+ use="encoded"
941
+ namespace="urn:iControl:Networking/Tunnel"
942
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
943
+ </input>
944
+ <output>
945
+ <soap:body
946
+ use="encoded"
947
+ namespace="urn:iControl:Networking/Tunnel"
948
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
949
+ </output>
950
+ </operation>
951
+
952
+ <operation name="set_tos">
953
+ <documentation>
954
+ Sets the Type of Service (ToS) value for the encapsulating packet's
955
+ IP header. The valid range is zero to 255. The special value
956
+ 65535 specifies that the encapsulating packet's IP header ToS value
957
+ is set to the encapsulated packet's IP header ToS value.
958
+
959
+ </documentation>
960
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
961
+ <input>
962
+ <soap:body
963
+ use="encoded"
964
+ namespace="urn:iControl:Networking/Tunnel"
965
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
966
+ </input>
967
+ <output>
968
+ <soap:body
969
+ use="encoded"
970
+ namespace="urn:iControl:Networking/Tunnel"
971
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
972
+ </output>
973
+ </operation>
974
+
975
+ <operation name="get_tos">
976
+ <documentation>
977
+ Gets the Type of Service (ToS) value for the encapsulating packet's
978
+ IP header.
979
+
980
+ </documentation>
981
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
982
+ <input>
983
+ <soap:body
984
+ use="encoded"
985
+ namespace="urn:iControl:Networking/Tunnel"
986
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
987
+ </input>
988
+ <output>
989
+ <soap:body
990
+ use="encoded"
991
+ namespace="urn:iControl:Networking/Tunnel"
992
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
993
+ </output>
994
+ </operation>
995
+
996
+ <operation name="set_auto_lasthop">
997
+ <documentation>
998
+ Sets the attribute that specifies auto-lasthop behavior,
999
+ for the specified tunnels.
1000
+ This controls how the system routes return traffic.
1001
+ The default is AUTO_LASTHOP_DEFAULT.
1002
+
1003
+ </documentation>
1004
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1005
+ <input>
1006
+ <soap:body
1007
+ use="encoded"
1008
+ namespace="urn:iControl:Networking/Tunnel"
1009
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1010
+ </input>
1011
+ <output>
1012
+ <soap:body
1013
+ use="encoded"
1014
+ namespace="urn:iControl:Networking/Tunnel"
1015
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1016
+ </output>
1017
+ </operation>
1018
+
1019
+ <operation name="get_auto_lasthop">
1020
+ <documentation>
1021
+ Gets the attribute that specifies auto-lasthop behavior,
1022
+ for the specified tunnels.
1023
+
1024
+ </documentation>
1025
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1026
+ <input>
1027
+ <soap:body
1028
+ use="encoded"
1029
+ namespace="urn:iControl:Networking/Tunnel"
1030
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1031
+ </input>
1032
+ <output>
1033
+ <soap:body
1034
+ use="encoded"
1035
+ namespace="urn:iControl:Networking/Tunnel"
1036
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1037
+ </output>
1038
+ </operation>
1039
+
1040
+ <operation name="set_description">
1041
+ <documentation>
1042
+ Sets the description for the specified tunnels.
1043
+
1044
+ This is an arbitrary field which can be used for any purpose.
1045
+
1046
+ </documentation>
1047
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1048
+ <input>
1049
+ <soap:body
1050
+ use="encoded"
1051
+ namespace="urn:iControl:Networking/Tunnel"
1052
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1053
+ </input>
1054
+ <output>
1055
+ <soap:body
1056
+ use="encoded"
1057
+ namespace="urn:iControl:Networking/Tunnel"
1058
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1059
+ </output>
1060
+ </operation>
1061
+
1062
+ <operation name="get_description">
1063
+ <documentation>
1064
+ Gets the descriptions for the specified tunnels.
1065
+
1066
+ </documentation>
1067
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1068
+ <input>
1069
+ <soap:body
1070
+ use="encoded"
1071
+ namespace="urn:iControl:Networking/Tunnel"
1072
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1073
+ </input>
1074
+ <output>
1075
+ <soap:body
1076
+ use="encoded"
1077
+ namespace="urn:iControl:Networking/Tunnel"
1078
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1079
+ </output>
1080
+ </operation>
1081
+
1082
+ <operation name="set_transparent_state">
1083
+ <documentation>
1084
+ Sets the transparent property for the specified tunnels.
1085
+
1086
+ Enables or disables the tunnel to be transparent. If enabled, the
1087
+ user can inspect and/or manipulate the encapsulated traffic flowing
1088
+ through the BIG-IP. A transparent tunnel terminates a tunnel while
1089
+ presenting the illusion that the tunnel transits the device
1090
+ unperturbed i.e. the BIG-IP appears like an intermediate router
1091
+ that simply routes IP traffic through the device. The default value
1092
+ is disabled.
1093
+
1094
+ </documentation>
1095
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1096
+ <input>
1097
+ <soap:body
1098
+ use="encoded"
1099
+ namespace="urn:iControl:Networking/Tunnel"
1100
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1101
+ </input>
1102
+ <output>
1103
+ <soap:body
1104
+ use="encoded"
1105
+ namespace="urn:iControl:Networking/Tunnel"
1106
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1107
+ </output>
1108
+ </operation>
1109
+
1110
+ <operation name="get_transparent_state">
1111
+ <documentation>
1112
+ Gets the transparent property for the specified tunnels.
1113
+
1114
+ </documentation>
1115
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1116
+ <input>
1117
+ <soap:body
1118
+ use="encoded"
1119
+ namespace="urn:iControl:Networking/Tunnel"
1120
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1121
+ </input>
1122
+ <output>
1123
+ <soap:body
1124
+ use="encoded"
1125
+ namespace="urn:iControl:Networking/Tunnel"
1126
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1127
+ </output>
1128
+ </operation>
1129
+
1130
+ <operation name="set_idle_timeout">
1131
+ <documentation>
1132
+ Sets the idle timeout for the specified tunnels.
1133
+
1134
+ Specifies an idle timeout for wildcard tunnels (i.e. tunnels with
1135
+ remote address 0.0.0.0) in seconds. This setting specifies the
1136
+ number of seconds that a wildcard tunnel connection is idle before
1137
+ the connection is eligible for deletion. If zero, the tunnel's
1138
+ idle timeout is automatically set to the default of 300.
1139
+
1140
+ </documentation>
1141
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1142
+ <input>
1143
+ <soap:body
1144
+ use="encoded"
1145
+ namespace="urn:iControl:Networking/Tunnel"
1146
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1147
+ </input>
1148
+ <output>
1149
+ <soap:body
1150
+ use="encoded"
1151
+ namespace="urn:iControl:Networking/Tunnel"
1152
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1153
+ </output>
1154
+ </operation>
1155
+
1156
+ <operation name="get_idle_timeout">
1157
+ <documentation>
1158
+ Gets the idle timeout values for the specified tunnels.
1159
+
1160
+ </documentation>
1161
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1162
+ <input>
1163
+ <soap:body
1164
+ use="encoded"
1165
+ namespace="urn:iControl:Networking/Tunnel"
1166
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1167
+ </input>
1168
+ <output>
1169
+ <soap:body
1170
+ use="encoded"
1171
+ namespace="urn:iControl:Networking/Tunnel"
1172
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1173
+ </output>
1174
+ </operation>
1175
+
1176
+ <operation name="create_with_transparent_state">
1177
+ <documentation>
1178
+ Creates the specified tunnels with transparent states.
1179
+
1180
+ It is for convenience to allow you to avoid using a transaction,
1181
+ because you can specify a 0.0.0.0 local address only if
1182
+ transparent is enabled. (Either a transaction or this method are
1183
+ good ways of satisfying this validation).
1184
+
1185
+ </documentation>
1186
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1187
+ <input>
1188
+ <soap:body
1189
+ use="encoded"
1190
+ namespace="urn:iControl:Networking/Tunnel"
1191
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1192
+ </input>
1193
+ <output>
1194
+ <soap:body
1195
+ use="encoded"
1196
+ namespace="urn:iControl:Networking/Tunnel"
1197
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1198
+ </output>
1199
+ </operation>
1200
+
1201
+ <operation name="set_local_address_with_transparent_state">
1202
+ <documentation>
1203
+ Sets the IP address for the local end of the tunnel along with the
1204
+ transparent state of the tunnel for the specified tunnels.
1205
+
1206
+ It is for convenience to allow you to avoid using a transaction,
1207
+ because you can specify a 0.0.0.0 local address only if
1208
+ transparent is enabled. (Either a transaction or this method are
1209
+ good ways of satisfying this validation).
1210
+
1211
+ </documentation>
1212
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1213
+ <input>
1214
+ <soap:body
1215
+ use="encoded"
1216
+ namespace="urn:iControl:Networking/Tunnel"
1217
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1218
+ </input>
1219
+ <output>
1220
+ <soap:body
1221
+ use="encoded"
1222
+ namespace="urn:iControl:Networking/Tunnel"
1223
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1224
+ </output>
1225
+ </operation>
1226
+
1227
+ <operation name="set_key">
1228
+ <documentation>
1229
+ Sets the keys for a set of tunnels.
1230
+
1231
+ A key can be used to signify different values depending
1232
+ on the type of tunnel. As an example, it is used as the
1233
+ Virtual Network Identifier (VNI) for VXLAN tunnels.
1234
+ The default value is 0.
1235
+
1236
+ </documentation>
1237
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1238
+ <input>
1239
+ <soap:body
1240
+ use="encoded"
1241
+ namespace="urn:iControl:Networking/Tunnel"
1242
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1243
+ </input>
1244
+ <output>
1245
+ <soap:body
1246
+ use="encoded"
1247
+ namespace="urn:iControl:Networking/Tunnel"
1248
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1249
+ </output>
1250
+ </operation>
1251
+
1252
+ <operation name="get_key">
1253
+ <documentation>
1254
+ Gets the keys for a set of tunnels.
1255
+
1256
+ </documentation>
1257
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1258
+ <input>
1259
+ <soap:body
1260
+ use="encoded"
1261
+ namespace="urn:iControl:Networking/Tunnel"
1262
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1263
+ </input>
1264
+ <output>
1265
+ <soap:body
1266
+ use="encoded"
1267
+ namespace="urn:iControl:Networking/Tunnel"
1268
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1269
+ </output>
1270
+ </operation>
1271
+
1272
+ <operation name="get_mac_address">
1273
+ <documentation>
1274
+ Gets the MAC addresses used by the specified tunnels.
1275
+
1276
+ The MAC address for tunnels cannot be set by the user.
1277
+
1278
+ </documentation>
1279
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1280
+ <input>
1281
+ <soap:body
1282
+ use="encoded"
1283
+ namespace="urn:iControl:Networking/Tunnel"
1284
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1285
+ </input>
1286
+ <output>
1287
+ <soap:body
1288
+ use="encoded"
1289
+ namespace="urn:iControl:Networking/Tunnel"
1290
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1291
+ </output>
1292
+ </operation>
1293
+
1294
+ <operation name="create_with_key">
1295
+ <documentation>
1296
+ Creates a set of tunnels with key values specified.
1297
+
1298
+ It is for convenience to allow you to avoid using a transaction,
1299
+ because the existing tunnel create API does not allow key values
1300
+ to be specified during tunnel creation. (Either a transaction or
1301
+ this method are good ways of satisfying this validation).
1302
+
1303
+ </documentation>
1304
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1305
+ <input>
1306
+ <soap:body
1307
+ use="encoded"
1308
+ namespace="urn:iControl:Networking/Tunnel"
1309
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1310
+ </input>
1311
+ <output>
1312
+ <soap:body
1313
+ use="encoded"
1314
+ namespace="urn:iControl:Networking/Tunnel"
1315
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1316
+ </output>
1317
+ </operation>
1318
+
1319
+ <operation name="get_version">
1320
+ <documentation>
1321
+ Gets the version information for this interface.
1322
+
1323
+ </documentation>
1324
+ <soap:operation soapAction="urn:iControl:Networking/Tunnel"/>
1325
+ <input>
1326
+ <soap:body
1327
+ use="encoded"
1328
+ namespace="urn:iControl:Networking/Tunnel"
1329
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1330
+ </input>
1331
+ <output>
1332
+ <soap:body
1333
+ use="encoded"
1334
+ namespace="urn:iControl:Networking/Tunnel"
1335
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1336
+ </output>
1337
+ </operation>
1338
+ </binding>
1339
+
1340
+ <!-- service -->
1341
+
1342
+ <service name="Networking.Tunnel">
1343
+ <documentation>
1344
+ The Tunnel interface manages a virtual network interface that allows a
1345
+ network protocol to carry packets of another protocol between two
1346
+ endpoints. Once created, it can be used just like a VLAN in BIG-IP
1347
+ configurations.
1348
+
1349
+ </documentation>
1350
+ <port name="Networking.TunnelPort" binding="tns:Networking.TunnelBinding">
1351
+ <soap:address location="https://url_to_service"/>
1352
+ </port>
1353
+ </service>
1354
+ </definitions>