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,401 @@
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.iSessionDeduplication"
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.ULong">
39
+ <xsd:restriction base="xsd:long"/>
40
+ </xsd:simpleType>
41
+ </xsd:schema>
42
+ </types>
43
+
44
+ <!-- message -->
45
+
46
+ <message name="Networking.iSessionDeduplication.set_descriptionRequest">
47
+ <part name="description" type="xsd:string"/>
48
+ </message>
49
+ <message name="Networking.iSessionDeduplication.set_descriptionResponse">
50
+ </message>
51
+
52
+ <message name="Networking.iSessionDeduplication.get_descriptionRequest">
53
+ </message>
54
+ <message name="Networking.iSessionDeduplication.get_descriptionResponse">
55
+ <part name="return" type="xsd:string"/>
56
+ </message>
57
+
58
+ <message name="Networking.iSessionDeduplication.get_dictionaryRequest">
59
+ </message>
60
+ <message name="Networking.iSessionDeduplication.get_dictionaryResponse">
61
+ <part name="return" type="xsd:string"/>
62
+ </message>
63
+
64
+ <message name="Networking.iSessionDeduplication.get_dictionary_sizeRequest">
65
+ </message>
66
+ <message name="Networking.iSessionDeduplication.get_dictionary_sizeResponse">
67
+ <part name="return" type="xsd:long"/>
68
+ </message>
69
+
70
+ <message name="Networking.iSessionDeduplication.set_enabled_stateRequest">
71
+ <part name="state" type="tns:Common.EnabledState"/>
72
+ </message>
73
+ <message name="Networking.iSessionDeduplication.set_enabled_stateResponse">
74
+ </message>
75
+
76
+ <message name="Networking.iSessionDeduplication.get_enabled_stateRequest">
77
+ </message>
78
+ <message name="Networking.iSessionDeduplication.get_enabled_stateResponse">
79
+ <part name="return" type="tns:Common.EnabledState"/>
80
+ </message>
81
+
82
+ <message name="Networking.iSessionDeduplication.set_maximum_endpointsRequest">
83
+ <part name="value" type="xsd:long"/>
84
+ </message>
85
+ <message name="Networking.iSessionDeduplication.set_maximum_endpointsResponse">
86
+ </message>
87
+
88
+ <message name="Networking.iSessionDeduplication.get_maximum_endpointsRequest">
89
+ </message>
90
+ <message name="Networking.iSessionDeduplication.get_maximum_endpointsResponse">
91
+ <part name="return" type="xsd:long"/>
92
+ </message>
93
+
94
+ <message name="Networking.iSessionDeduplication.get_versionRequest">
95
+ </message>
96
+ <message name="Networking.iSessionDeduplication.get_versionResponse">
97
+ <part name="return" type="xsd:string"/>
98
+ </message>
99
+
100
+ <!-- portType -->
101
+
102
+ <portType name="Networking.iSessionDeduplicationPortType">
103
+ <operation name="set_description">
104
+ <documentation>
105
+ Sets the description for the symmetric deduplication configuration.
106
+ This is an arbitrary field which can be used for any purpose.
107
+
108
+ </documentation>
109
+ <input message="tns:Networking.iSessionDeduplication.set_descriptionRequest"/>
110
+ <output message="tns:Networking.iSessionDeduplication.set_descriptionResponse"/>
111
+ </operation>
112
+ <operation name="get_description">
113
+ <documentation>
114
+ Gets the description for the symmetric deduplication configuration.
115
+
116
+ </documentation>
117
+ <input message="tns:Networking.iSessionDeduplication.get_descriptionRequest"/>
118
+ <output message="tns:Networking.iSessionDeduplication.get_descriptionResponse"/>
119
+ </operation>
120
+ <operation name="get_dictionary">
121
+ <documentation>
122
+ Gets the name of the dictionary for the symmetric deduplication
123
+ configuration.
124
+
125
+ </documentation>
126
+ <input message="tns:Networking.iSessionDeduplication.get_dictionaryRequest"/>
127
+ <output message="tns:Networking.iSessionDeduplication.get_dictionaryResponse"/>
128
+ </operation>
129
+ <operation name="get_dictionary_size">
130
+ <documentation>
131
+ Gets the dictionary size for the symmetric deduplication
132
+ configuration.
133
+
134
+ </documentation>
135
+ <input message="tns:Networking.iSessionDeduplication.get_dictionary_sizeRequest"/>
136
+ <output message="tns:Networking.iSessionDeduplication.get_dictionary_sizeResponse"/>
137
+ </operation>
138
+ <operation name="set_enabled_state">
139
+ <documentation>
140
+ Sets the state to use symmetric data deduplication to compress
141
+ iSession traffic over the WAN. If set, the traffic is compressed by
142
+ identifying and removing repetitive data patterns on the WAN.
143
+
144
+ </documentation>
145
+ <input message="tns:Networking.iSessionDeduplication.set_enabled_stateRequest"/>
146
+ <output message="tns:Networking.iSessionDeduplication.set_enabled_stateResponse"/>
147
+ </operation>
148
+ <operation name="get_enabled_state">
149
+ <documentation>
150
+ Gets the state to use symmetric data deduplication to compress
151
+ iSession traffic over the WAN.
152
+
153
+ </documentation>
154
+ <input message="tns:Networking.iSessionDeduplication.get_enabled_stateRequest"/>
155
+ <output message="tns:Networking.iSessionDeduplication.get_enabled_stateResponse"/>
156
+ </operation>
157
+ <operation name="set_maximum_endpoints">
158
+ <documentation>
159
+ Sets the maximum number of concurrent remote endpoints for the
160
+ symmetric deduplication configuration. This is the maximum number
161
+ of configured WAN Optimization modules on remote BIG-IP systems
162
+ that can have symmetric data deduplication enabled, and thus share
163
+ the available cache. Any additional remote WAN Optimization Module
164
+ that exceeds this number receives no cache for symmetric data
165
+ deduplication. Valid values range from 1 to 64.
166
+
167
+ </documentation>
168
+ <input message="tns:Networking.iSessionDeduplication.set_maximum_endpointsRequest"/>
169
+ <output message="tns:Networking.iSessionDeduplication.set_maximum_endpointsResponse"/>
170
+ </operation>
171
+ <operation name="get_maximum_endpoints">
172
+ <documentation>
173
+ Gets the maximum number of concurrent remote endpoints for the
174
+ symmetric deduplication configuration.
175
+
176
+ </documentation>
177
+ <input message="tns:Networking.iSessionDeduplication.get_maximum_endpointsRequest"/>
178
+ <output message="tns:Networking.iSessionDeduplication.get_maximum_endpointsResponse"/>
179
+ </operation>
180
+ <operation name="get_version">
181
+ <documentation>
182
+ Gets the version information for this interface.
183
+
184
+ </documentation>
185
+ <input message="tns:Networking.iSessionDeduplication.get_versionRequest"/>
186
+ <output message="tns:Networking.iSessionDeduplication.get_versionResponse"/>
187
+ </operation>
188
+ </portType>
189
+
190
+ <!-- binding -->
191
+
192
+ <binding name="Networking.iSessionDeduplicationBinding" type="tns:Networking.iSessionDeduplicationPortType">
193
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
194
+ <operation name="set_description">
195
+ <documentation>
196
+ Sets the description for the symmetric deduplication configuration.
197
+ This is an arbitrary field which can be used for any purpose.
198
+
199
+ </documentation>
200
+ <soap:operation soapAction="urn:iControl:Networking/iSessionDeduplication"/>
201
+ <input>
202
+ <soap:body
203
+ use="encoded"
204
+ namespace="urn:iControl:Networking/iSessionDeduplication"
205
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
206
+ </input>
207
+ <output>
208
+ <soap:body
209
+ use="encoded"
210
+ namespace="urn:iControl:Networking/iSessionDeduplication"
211
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
212
+ </output>
213
+ </operation>
214
+
215
+ <operation name="get_description">
216
+ <documentation>
217
+ Gets the description for the symmetric deduplication configuration.
218
+
219
+ </documentation>
220
+ <soap:operation soapAction="urn:iControl:Networking/iSessionDeduplication"/>
221
+ <input>
222
+ <soap:body
223
+ use="encoded"
224
+ namespace="urn:iControl:Networking/iSessionDeduplication"
225
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
226
+ </input>
227
+ <output>
228
+ <soap:body
229
+ use="encoded"
230
+ namespace="urn:iControl:Networking/iSessionDeduplication"
231
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
232
+ </output>
233
+ </operation>
234
+
235
+ <operation name="get_dictionary">
236
+ <documentation>
237
+ Gets the name of the dictionary for the symmetric deduplication
238
+ configuration.
239
+
240
+ </documentation>
241
+ <soap:operation soapAction="urn:iControl:Networking/iSessionDeduplication"/>
242
+ <input>
243
+ <soap:body
244
+ use="encoded"
245
+ namespace="urn:iControl:Networking/iSessionDeduplication"
246
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
247
+ </input>
248
+ <output>
249
+ <soap:body
250
+ use="encoded"
251
+ namespace="urn:iControl:Networking/iSessionDeduplication"
252
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
253
+ </output>
254
+ </operation>
255
+
256
+ <operation name="get_dictionary_size">
257
+ <documentation>
258
+ Gets the dictionary size for the symmetric deduplication
259
+ configuration.
260
+
261
+ </documentation>
262
+ <soap:operation soapAction="urn:iControl:Networking/iSessionDeduplication"/>
263
+ <input>
264
+ <soap:body
265
+ use="encoded"
266
+ namespace="urn:iControl:Networking/iSessionDeduplication"
267
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
268
+ </input>
269
+ <output>
270
+ <soap:body
271
+ use="encoded"
272
+ namespace="urn:iControl:Networking/iSessionDeduplication"
273
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
274
+ </output>
275
+ </operation>
276
+
277
+ <operation name="set_enabled_state">
278
+ <documentation>
279
+ Sets the state to use symmetric data deduplication to compress
280
+ iSession traffic over the WAN. If set, the traffic is compressed by
281
+ identifying and removing repetitive data patterns on the WAN.
282
+
283
+ </documentation>
284
+ <soap:operation soapAction="urn:iControl:Networking/iSessionDeduplication"/>
285
+ <input>
286
+ <soap:body
287
+ use="encoded"
288
+ namespace="urn:iControl:Networking/iSessionDeduplication"
289
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
290
+ </input>
291
+ <output>
292
+ <soap:body
293
+ use="encoded"
294
+ namespace="urn:iControl:Networking/iSessionDeduplication"
295
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
296
+ </output>
297
+ </operation>
298
+
299
+ <operation name="get_enabled_state">
300
+ <documentation>
301
+ Gets the state to use symmetric data deduplication to compress
302
+ iSession traffic over the WAN.
303
+
304
+ </documentation>
305
+ <soap:operation soapAction="urn:iControl:Networking/iSessionDeduplication"/>
306
+ <input>
307
+ <soap:body
308
+ use="encoded"
309
+ namespace="urn:iControl:Networking/iSessionDeduplication"
310
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
311
+ </input>
312
+ <output>
313
+ <soap:body
314
+ use="encoded"
315
+ namespace="urn:iControl:Networking/iSessionDeduplication"
316
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
317
+ </output>
318
+ </operation>
319
+
320
+ <operation name="set_maximum_endpoints">
321
+ <documentation>
322
+ Sets the maximum number of concurrent remote endpoints for the
323
+ symmetric deduplication configuration. This is the maximum number
324
+ of configured WAN Optimization modules on remote BIG-IP systems
325
+ that can have symmetric data deduplication enabled, and thus share
326
+ the available cache. Any additional remote WAN Optimization Module
327
+ that exceeds this number receives no cache for symmetric data
328
+ deduplication. Valid values range from 1 to 64.
329
+
330
+ </documentation>
331
+ <soap:operation soapAction="urn:iControl:Networking/iSessionDeduplication"/>
332
+ <input>
333
+ <soap:body
334
+ use="encoded"
335
+ namespace="urn:iControl:Networking/iSessionDeduplication"
336
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
337
+ </input>
338
+ <output>
339
+ <soap:body
340
+ use="encoded"
341
+ namespace="urn:iControl:Networking/iSessionDeduplication"
342
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
343
+ </output>
344
+ </operation>
345
+
346
+ <operation name="get_maximum_endpoints">
347
+ <documentation>
348
+ Gets the maximum number of concurrent remote endpoints for the
349
+ symmetric deduplication configuration.
350
+
351
+ </documentation>
352
+ <soap:operation soapAction="urn:iControl:Networking/iSessionDeduplication"/>
353
+ <input>
354
+ <soap:body
355
+ use="encoded"
356
+ namespace="urn:iControl:Networking/iSessionDeduplication"
357
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
358
+ </input>
359
+ <output>
360
+ <soap:body
361
+ use="encoded"
362
+ namespace="urn:iControl:Networking/iSessionDeduplication"
363
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
364
+ </output>
365
+ </operation>
366
+
367
+ <operation name="get_version">
368
+ <documentation>
369
+ Gets the version information for this interface.
370
+
371
+ </documentation>
372
+ <soap:operation soapAction="urn:iControl:Networking/iSessionDeduplication"/>
373
+ <input>
374
+ <soap:body
375
+ use="encoded"
376
+ namespace="urn:iControl:Networking/iSessionDeduplication"
377
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
378
+ </input>
379
+ <output>
380
+ <soap:body
381
+ use="encoded"
382
+ namespace="urn:iControl:Networking/iSessionDeduplication"
383
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
384
+ </output>
385
+ </operation>
386
+ </binding>
387
+
388
+ <!-- service -->
389
+
390
+ <service name="Networking.iSessionDeduplication">
391
+ <documentation>
392
+ This interface configures symmetric data deduplication, which
393
+ compresses iSession traffic on the WAN by identifying and removing
394
+ repetitive data patterns.
395
+
396
+ </documentation>
397
+ <port name="Networking.iSessionDeduplicationPort" binding="tns:Networking.iSessionDeduplicationBinding">
398
+ <soap:address location="https://url_to_service"/>
399
+ </port>
400
+ </service>
401
+ </definitions>
@@ -0,0 +1,922 @@
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.iSessionLocalInterface"
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.Uuid_128Sequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.Uuid_128[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:complexType name="Common.ULong64">
32
+ <xsd:sequence>
33
+ <xsd:element name="high" type="xsd:long"/>
34
+ <xsd:element name="low" type="xsd:long"/>
35
+ </xsd:sequence>
36
+ </xsd:complexType>
37
+ <xsd:simpleType name="Common.EnabledState">
38
+ <xsd:restriction base="xsd:string">
39
+ <xsd:enumeration value="STATE_DISABLED">
40
+ <xsd:annotation>
41
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
42
+ </xsd:annotation>
43
+ </xsd:enumeration>
44
+ <xsd:enumeration value="STATE_ENABLED">
45
+ <xsd:annotation>
46
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
47
+ </xsd:annotation>
48
+ </xsd:enumeration>
49
+ </xsd:restriction>
50
+ </xsd:simpleType>
51
+ <xsd:complexType name="Common.StringSequence">
52
+ <xsd:complexContent>
53
+ <xsd:restriction base='SOAP-ENC:Array'>
54
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
55
+ </xsd:restriction>
56
+ </xsd:complexContent>
57
+ </xsd:complexType>
58
+ <xsd:complexType name="Common.IPAddressSequenceSequence">
59
+ <xsd:complexContent>
60
+ <xsd:restriction base='SOAP-ENC:Array'>
61
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.IPAddressSequence[]'/>
62
+ </xsd:restriction>
63
+ </xsd:complexContent>
64
+ </xsd:complexType>
65
+ <xsd:complexType name="Common.ULongSequence">
66
+ <xsd:complexContent>
67
+ <xsd:restriction base='SOAP-ENC:Array'>
68
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
69
+ </xsd:restriction>
70
+ </xsd:complexContent>
71
+ </xsd:complexType>
72
+ <xsd:simpleType name="Common.ULong">
73
+ <xsd:restriction base="xsd:long"/>
74
+ </xsd:simpleType>
75
+ <xsd:complexType name="Common.PortSequence">
76
+ <xsd:complexContent>
77
+ <xsd:restriction base='SOAP-ENC:Array'>
78
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
79
+ </xsd:restriction>
80
+ </xsd:complexContent>
81
+ </xsd:complexType>
82
+ <xsd:complexType name="Networking.iSessionLocalInterface.NatSourceAddressSequence">
83
+ <xsd:complexContent>
84
+ <xsd:restriction base='SOAP-ENC:Array'>
85
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.iSessionLocalInterface.NatSourceAddress[]'/>
86
+ </xsd:restriction>
87
+ </xsd:complexContent>
88
+ </xsd:complexType>
89
+ <xsd:complexType name="Common.IPAddressSequence">
90
+ <xsd:complexContent>
91
+ <xsd:restriction base='SOAP-ENC:Array'>
92
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
93
+ </xsd:restriction>
94
+ </xsd:complexContent>
95
+ </xsd:complexType>
96
+ <xsd:complexType name="Networking.Uuid_128">
97
+ <xsd:sequence>
98
+ <xsd:element name="low_part" type="tns:Common.ULong64"/>
99
+ <xsd:element name="high_part" type="tns:Common.ULong64"/>
100
+ </xsd:sequence>
101
+ </xsd:complexType>
102
+ <xsd:simpleType name="Networking.iSessionLocalInterface.NatSourceAddress">
103
+ <xsd:restriction base="xsd:string">
104
+ <xsd:enumeration value="WOC_NAT_SOURCE_ADDRESS_NONE">
105
+ <xsd:annotation>
106
+ <xsd:documentation>WOC_NAT_SOURCE_ADDRESS_NONE</xsd:documentation>
107
+ </xsd:annotation>
108
+ </xsd:enumeration>
109
+ <xsd:enumeration value="WOC_NAT_SOURCE_ADDRESS_CLIENT">
110
+ <xsd:annotation>
111
+ <xsd:documentation>WOC_NAT_SOURCE_ADDRESS_CLIENT</xsd:documentation>
112
+ </xsd:annotation>
113
+ </xsd:enumeration>
114
+ <xsd:enumeration value="WOC_NAT_SOURCE_ADDRESS_WOM">
115
+ <xsd:annotation>
116
+ <xsd:documentation>WOC_NAT_SOURCE_ADDRESS_WOM</xsd:documentation>
117
+ </xsd:annotation>
118
+ </xsd:enumeration>
119
+ <xsd:enumeration value="WOC_NAT_SOURCE_ADDRESS_TUNNEL">
120
+ <xsd:annotation>
121
+ <xsd:documentation>WOC_NAT_SOURCE_ADDRESS_TUNNEL</xsd:documentation>
122
+ </xsd:annotation>
123
+ </xsd:enumeration>
124
+ </xsd:restriction>
125
+ </xsd:simpleType>
126
+ <xsd:complexType name="Common.EnabledStateSequence">
127
+ <xsd:complexContent>
128
+ <xsd:restriction base='SOAP-ENC:Array'>
129
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
130
+ </xsd:restriction>
131
+ </xsd:complexContent>
132
+ </xsd:complexType>
133
+ </xsd:schema>
134
+ </types>
135
+
136
+ <!-- message -->
137
+
138
+ <message name="Networking.iSessionLocalInterface.get_listRequest">
139
+ </message>
140
+ <message name="Networking.iSessionLocalInterface.get_listResponse">
141
+ <part name="return" type="tns:Common.ULongSequence"/>
142
+ </message>
143
+
144
+ <message name="Networking.iSessionLocalInterface.createRequest">
145
+ <part name="woc_instance" type="xsd:long"/>
146
+ <part name="local_ips" type="tns:Common.IPAddressSequence"/>
147
+ <part name="enabled" type="tns:Common.EnabledState"/>
148
+ <part name="serverssl" type="xsd:string"/>
149
+ </message>
150
+ <message name="Networking.iSessionLocalInterface.createResponse">
151
+ </message>
152
+
153
+ <message name="Networking.iSessionLocalInterface.delete_localRequest">
154
+ <part name="wocs" type="tns:Common.ULongSequence"/>
155
+ </message>
156
+ <message name="Networking.iSessionLocalInterface.delete_localResponse">
157
+ </message>
158
+
159
+ <message name="Networking.iSessionLocalInterface.get_ip_listRequest">
160
+ <part name="wocs" type="tns:Common.ULongSequence"/>
161
+ </message>
162
+ <message name="Networking.iSessionLocalInterface.get_ip_listResponse">
163
+ <part name="return" type="tns:Common.IPAddressSequenceSequence"/>
164
+ </message>
165
+
166
+ <message name="Networking.iSessionLocalInterface.set_ip_listRequest">
167
+ <part name="wocs" type="tns:Common.ULongSequence"/>
168
+ <part name="local_ips" type="tns:Common.IPAddressSequenceSequence"/>
169
+ </message>
170
+ <message name="Networking.iSessionLocalInterface.set_ip_listResponse">
171
+ </message>
172
+
173
+ <message name="Networking.iSessionLocalInterface.set_enabled_stateRequest">
174
+ <part name="wocs" type="tns:Common.ULongSequence"/>
175
+ <part name="enabled_states" type="tns:Common.EnabledStateSequence"/>
176
+ </message>
177
+ <message name="Networking.iSessionLocalInterface.set_enabled_stateResponse">
178
+ </message>
179
+
180
+ <message name="Networking.iSessionLocalInterface.get_enabled_stateRequest">
181
+ <part name="wocs" type="tns:Common.ULongSequence"/>
182
+ </message>
183
+ <message name="Networking.iSessionLocalInterface.get_enabled_stateResponse">
184
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
185
+ </message>
186
+
187
+ <message name="Networking.iSessionLocalInterface.set_allow_natRequest">
188
+ <part name="wocs" type="tns:Common.ULongSequence"/>
189
+ <part name="nat_states" type="tns:Common.EnabledStateSequence"/>
190
+ </message>
191
+ <message name="Networking.iSessionLocalInterface.set_allow_natResponse">
192
+ </message>
193
+
194
+ <message name="Networking.iSessionLocalInterface.get_allow_natRequest">
195
+ <part name="wocs" type="tns:Common.ULongSequence"/>
196
+ </message>
197
+ <message name="Networking.iSessionLocalInterface.get_allow_natResponse">
198
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
199
+ </message>
200
+
201
+ <message name="Networking.iSessionLocalInterface.set_nat_source_addressRequest">
202
+ <part name="wocs" type="tns:Common.ULongSequence"/>
203
+ <part name="nat_states" type="tns:Networking.iSessionLocalInterface.NatSourceAddressSequence"/>
204
+ </message>
205
+ <message name="Networking.iSessionLocalInterface.set_nat_source_addressResponse">
206
+ </message>
207
+
208
+ <message name="Networking.iSessionLocalInterface.get_nat_source_addressRequest">
209
+ <part name="wocs" type="tns:Common.ULongSequence"/>
210
+ </message>
211
+ <message name="Networking.iSessionLocalInterface.get_nat_source_addressResponse">
212
+ <part name="return" type="tns:Networking.iSessionLocalInterface.NatSourceAddressSequence"/>
213
+ </message>
214
+
215
+ <message name="Networking.iSessionLocalInterface.set_serversslRequest">
216
+ <part name="wocs" type="tns:Common.ULongSequence"/>
217
+ <part name="serverssls" type="tns:Common.StringSequence"/>
218
+ </message>
219
+ <message name="Networking.iSessionLocalInterface.set_serversslResponse">
220
+ </message>
221
+
222
+ <message name="Networking.iSessionLocalInterface.get_serversslRequest">
223
+ <part name="wocs" type="tns:Common.ULongSequence"/>
224
+ </message>
225
+ <message name="Networking.iSessionLocalInterface.get_serversslResponse">
226
+ <part name="return" type="tns:Common.StringSequence"/>
227
+ </message>
228
+
229
+ <message name="Networking.iSessionLocalInterface.set_tunnel_portRequest">
230
+ <part name="wocs" type="tns:Common.ULongSequence"/>
231
+ <part name="ports" type="tns:Common.PortSequence"/>
232
+ </message>
233
+ <message name="Networking.iSessionLocalInterface.set_tunnel_portResponse">
234
+ </message>
235
+
236
+ <message name="Networking.iSessionLocalInterface.get_tunnel_portRequest">
237
+ <part name="wocs" type="tns:Common.ULongSequence"/>
238
+ </message>
239
+ <message name="Networking.iSessionLocalInterface.get_tunnel_portResponse">
240
+ <part name="return" type="tns:Common.PortSequence"/>
241
+ </message>
242
+
243
+ <message name="Networking.iSessionLocalInterface.set_management_addressRequest">
244
+ <part name="wocs" type="tns:Common.ULongSequence"/>
245
+ <part name="ips" type="tns:Common.IPAddressSequence"/>
246
+ </message>
247
+ <message name="Networking.iSessionLocalInterface.set_management_addressResponse">
248
+ </message>
249
+
250
+ <message name="Networking.iSessionLocalInterface.get_management_addressRequest">
251
+ <part name="wocs" type="tns:Common.ULongSequence"/>
252
+ </message>
253
+ <message name="Networking.iSessionLocalInterface.get_management_addressResponse">
254
+ <part name="return" type="tns:Common.IPAddressSequence"/>
255
+ </message>
256
+
257
+ <message name="Networking.iSessionLocalInterface.get_UUIDRequest">
258
+ <part name="wocs" type="tns:Common.ULongSequence"/>
259
+ </message>
260
+ <message name="Networking.iSessionLocalInterface.get_UUIDResponse">
261
+ <part name="return" type="tns:Networking.Uuid_128Sequence"/>
262
+ </message>
263
+
264
+ <message name="Networking.iSessionLocalInterface.set_descriptionRequest">
265
+ <part name="description" type="xsd:string"/>
266
+ </message>
267
+ <message name="Networking.iSessionLocalInterface.set_descriptionResponse">
268
+ </message>
269
+
270
+ <message name="Networking.iSessionLocalInterface.get_descriptionRequest">
271
+ </message>
272
+ <message name="Networking.iSessionLocalInterface.get_descriptionResponse">
273
+ <part name="return" type="xsd:string"/>
274
+ </message>
275
+
276
+ <message name="Networking.iSessionLocalInterface.get_versionRequest">
277
+ </message>
278
+ <message name="Networking.iSessionLocalInterface.get_versionResponse">
279
+ <part name="return" type="xsd:string"/>
280
+ </message>
281
+
282
+ <!-- portType -->
283
+
284
+ <portType name="Networking.iSessionLocalInterfacePortType">
285
+ <operation name="get_list">
286
+ <documentation>
287
+ Gets a list of the local endpoints.
288
+
289
+ </documentation>
290
+ <input message="tns:Networking.iSessionLocalInterface.get_listRequest"/>
291
+ <output message="tns:Networking.iSessionLocalInterface.get_listResponse"/>
292
+ </operation>
293
+ <operation name="create">
294
+ <documentation>
295
+ Creates a local endpoint.
296
+
297
+ Note that only one local endpoint can exist at any time, and thus
298
+ only one value should be set in the given arrays.
299
+
300
+ </documentation>
301
+ <input message="tns:Networking.iSessionLocalInterface.createRequest"/>
302
+ <output message="tns:Networking.iSessionLocalInterface.createResponse"/>
303
+ </operation>
304
+ <operation name="delete_local">
305
+ <documentation>
306
+ Deletes the local endpoint.
307
+
308
+ </documentation>
309
+ <input message="tns:Networking.iSessionLocalInterface.delete_localRequest"/>
310
+ <output message="tns:Networking.iSessionLocalInterface.delete_localResponse"/>
311
+ </operation>
312
+ <operation name="get_ip_list">
313
+ <documentation>
314
+ Gets the local IP addresses assigned to the local endpoint.
315
+
316
+ </documentation>
317
+ <input message="tns:Networking.iSessionLocalInterface.get_ip_listRequest"/>
318
+ <output message="tns:Networking.iSessionLocalInterface.get_ip_listResponse"/>
319
+ </operation>
320
+ <operation name="set_ip_list">
321
+ <documentation>
322
+ Sets the local IP addresses in the local endpoint.
323
+
324
+ Note that currently only one local IP address is allowed.
325
+
326
+ </documentation>
327
+ <input message="tns:Networking.iSessionLocalInterface.set_ip_listRequest"/>
328
+ <output message="tns:Networking.iSessionLocalInterface.set_ip_listResponse"/>
329
+ </operation>
330
+ <operation name="set_enabled_state">
331
+ <documentation>
332
+ Sets the enabled state for the local endpoint.
333
+
334
+ </documentation>
335
+ <input message="tns:Networking.iSessionLocalInterface.set_enabled_stateRequest"/>
336
+ <output message="tns:Networking.iSessionLocalInterface.set_enabled_stateResponse"/>
337
+ </operation>
338
+ <operation name="get_enabled_state">
339
+ <documentation>
340
+ Gets the enabled state of the local endpoint.
341
+
342
+ </documentation>
343
+ <input message="tns:Networking.iSessionLocalInterface.get_enabled_stateRequest"/>
344
+ <output message="tns:Networking.iSessionLocalInterface.get_enabled_stateResponse"/>
345
+ </operation>
346
+ <operation name="set_allow_nat">
347
+ <documentation>
348
+ Sets the allow NAT state for the local endpoint.
349
+
350
+ </documentation>
351
+ <input message="tns:Networking.iSessionLocalInterface.set_allow_natRequest"/>
352
+ <output message="tns:Networking.iSessionLocalInterface.set_allow_natResponse"/>
353
+ </operation>
354
+ <operation name="get_allow_nat">
355
+ <documentation>
356
+ Gets the allow NAT state of the local endpoint.
357
+
358
+ </documentation>
359
+ <input message="tns:Networking.iSessionLocalInterface.get_allow_natRequest"/>
360
+ <output message="tns:Networking.iSessionLocalInterface.get_allow_natResponse"/>
361
+ </operation>
362
+ <operation name="set_nat_source_address">
363
+ <documentation>
364
+ Sets the NAT source address type for the local endpoint.
365
+
366
+ </documentation>
367
+ <input message="tns:Networking.iSessionLocalInterface.set_nat_source_addressRequest"/>
368
+ <output message="tns:Networking.iSessionLocalInterface.set_nat_source_addressResponse"/>
369
+ </operation>
370
+ <operation name="get_nat_source_address">
371
+ <documentation>
372
+ Gets the NAT source address type of the local endpoint.
373
+
374
+ </documentation>
375
+ <input message="tns:Networking.iSessionLocalInterface.get_nat_source_addressRequest"/>
376
+ <output message="tns:Networking.iSessionLocalInterface.get_nat_source_addressResponse"/>
377
+ </operation>
378
+ <operation name="set_serverssl">
379
+ <documentation>
380
+ Sets the server SSL profile used for encrypting traffic for the
381
+ local endpoint.
382
+
383
+ </documentation>
384
+ <input message="tns:Networking.iSessionLocalInterface.set_serversslRequest"/>
385
+ <output message="tns:Networking.iSessionLocalInterface.set_serversslResponse"/>
386
+ </operation>
387
+ <operation name="get_serverssl">
388
+ <documentation>
389
+ Gets the server SSL profile used for encrypting traffic by the
390
+ local endpoint.
391
+
392
+ </documentation>
393
+ <input message="tns:Networking.iSessionLocalInterface.get_serversslRequest"/>
394
+ <output message="tns:Networking.iSessionLocalInterface.get_serversslResponse"/>
395
+ </operation>
396
+ <operation name="set_tunnel_port">
397
+ <documentation>
398
+ Sets the local service number in the local endpoint.
399
+
400
+ </documentation>
401
+ <input message="tns:Networking.iSessionLocalInterface.set_tunnel_portRequest"/>
402
+ <output message="tns:Networking.iSessionLocalInterface.set_tunnel_portResponse"/>
403
+ </operation>
404
+ <operation name="get_tunnel_port">
405
+ <documentation>
406
+ Gets the local service number in the local endpoint.
407
+
408
+ </documentation>
409
+ <input message="tns:Networking.iSessionLocalInterface.get_tunnel_portRequest"/>
410
+ <output message="tns:Networking.iSessionLocalInterface.get_tunnel_portResponse"/>
411
+ </operation>
412
+ <operation name="set_management_address">
413
+ <documentation>
414
+ Sets the management address for the local endpoint.
415
+
416
+ Note that this method does nothing, as the management address is
417
+ automatically assigned and cannot be changed.
418
+
419
+ </documentation>
420
+ <input message="tns:Networking.iSessionLocalInterface.set_management_addressRequest"/>
421
+ <output message="tns:Networking.iSessionLocalInterface.set_management_addressResponse"/>
422
+ </operation>
423
+ <operation name="get_management_address">
424
+ <documentation>
425
+ Gets the management address for the local endpoint.
426
+
427
+ </documentation>
428
+ <input message="tns:Networking.iSessionLocalInterface.get_management_addressRequest"/>
429
+ <output message="tns:Networking.iSessionLocalInterface.get_management_addressResponse"/>
430
+ </operation>
431
+ <operation name="get_UUID">
432
+ <documentation>
433
+ Gets the UUID for the local endpoint.
434
+
435
+ </documentation>
436
+ <input message="tns:Networking.iSessionLocalInterface.get_UUIDRequest"/>
437
+ <output message="tns:Networking.iSessionLocalInterface.get_UUIDResponse"/>
438
+ </operation>
439
+ <operation name="set_description">
440
+ <documentation>
441
+ Sets the description for the local endpoint.
442
+
443
+ This is an arbitrary field which can be used for any purpose.
444
+
445
+ </documentation>
446
+ <input message="tns:Networking.iSessionLocalInterface.set_descriptionRequest"/>
447
+ <output message="tns:Networking.iSessionLocalInterface.set_descriptionResponse"/>
448
+ </operation>
449
+ <operation name="get_description">
450
+ <documentation>
451
+ Gets the descriptions for the local endpoint.
452
+
453
+ </documentation>
454
+ <input message="tns:Networking.iSessionLocalInterface.get_descriptionRequest"/>
455
+ <output message="tns:Networking.iSessionLocalInterface.get_descriptionResponse"/>
456
+ </operation>
457
+ <operation name="get_version">
458
+ <documentation>
459
+ Gets the version information for this interface.
460
+
461
+ </documentation>
462
+ <input message="tns:Networking.iSessionLocalInterface.get_versionRequest"/>
463
+ <output message="tns:Networking.iSessionLocalInterface.get_versionResponse"/>
464
+ </operation>
465
+ </portType>
466
+
467
+ <!-- binding -->
468
+
469
+ <binding name="Networking.iSessionLocalInterfaceBinding" type="tns:Networking.iSessionLocalInterfacePortType">
470
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
471
+ <operation name="get_list">
472
+ <documentation>
473
+ Gets a list of the local endpoints.
474
+
475
+ </documentation>
476
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
477
+ <input>
478
+ <soap:body
479
+ use="encoded"
480
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
481
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
482
+ </input>
483
+ <output>
484
+ <soap:body
485
+ use="encoded"
486
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
487
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
488
+ </output>
489
+ </operation>
490
+
491
+ <operation name="create">
492
+ <documentation>
493
+ Creates a local endpoint.
494
+
495
+ Note that only one local endpoint can exist at any time, and thus
496
+ only one value should be set in the given arrays.
497
+
498
+ </documentation>
499
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
500
+ <input>
501
+ <soap:body
502
+ use="encoded"
503
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
504
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
505
+ </input>
506
+ <output>
507
+ <soap:body
508
+ use="encoded"
509
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
510
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
511
+ </output>
512
+ </operation>
513
+
514
+ <operation name="delete_local">
515
+ <documentation>
516
+ Deletes the local endpoint.
517
+
518
+ </documentation>
519
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
520
+ <input>
521
+ <soap:body
522
+ use="encoded"
523
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
524
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
525
+ </input>
526
+ <output>
527
+ <soap:body
528
+ use="encoded"
529
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
530
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
531
+ </output>
532
+ </operation>
533
+
534
+ <operation name="get_ip_list">
535
+ <documentation>
536
+ Gets the local IP addresses assigned to the local endpoint.
537
+
538
+ </documentation>
539
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
540
+ <input>
541
+ <soap:body
542
+ use="encoded"
543
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
544
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
545
+ </input>
546
+ <output>
547
+ <soap:body
548
+ use="encoded"
549
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
550
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
551
+ </output>
552
+ </operation>
553
+
554
+ <operation name="set_ip_list">
555
+ <documentation>
556
+ Sets the local IP addresses in the local endpoint.
557
+
558
+ Note that currently only one local IP address is allowed.
559
+
560
+ </documentation>
561
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
562
+ <input>
563
+ <soap:body
564
+ use="encoded"
565
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
566
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
567
+ </input>
568
+ <output>
569
+ <soap:body
570
+ use="encoded"
571
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
572
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
573
+ </output>
574
+ </operation>
575
+
576
+ <operation name="set_enabled_state">
577
+ <documentation>
578
+ Sets the enabled state for the local endpoint.
579
+
580
+ </documentation>
581
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
582
+ <input>
583
+ <soap:body
584
+ use="encoded"
585
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
586
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
587
+ </input>
588
+ <output>
589
+ <soap:body
590
+ use="encoded"
591
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
592
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
593
+ </output>
594
+ </operation>
595
+
596
+ <operation name="get_enabled_state">
597
+ <documentation>
598
+ Gets the enabled state of the local endpoint.
599
+
600
+ </documentation>
601
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
602
+ <input>
603
+ <soap:body
604
+ use="encoded"
605
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
606
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
607
+ </input>
608
+ <output>
609
+ <soap:body
610
+ use="encoded"
611
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
612
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
613
+ </output>
614
+ </operation>
615
+
616
+ <operation name="set_allow_nat">
617
+ <documentation>
618
+ Sets the allow NAT state for the local endpoint.
619
+
620
+ </documentation>
621
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
622
+ <input>
623
+ <soap:body
624
+ use="encoded"
625
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
626
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
627
+ </input>
628
+ <output>
629
+ <soap:body
630
+ use="encoded"
631
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
632
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
633
+ </output>
634
+ </operation>
635
+
636
+ <operation name="get_allow_nat">
637
+ <documentation>
638
+ Gets the allow NAT state of the local endpoint.
639
+
640
+ </documentation>
641
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
642
+ <input>
643
+ <soap:body
644
+ use="encoded"
645
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
646
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
647
+ </input>
648
+ <output>
649
+ <soap:body
650
+ use="encoded"
651
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
652
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
653
+ </output>
654
+ </operation>
655
+
656
+ <operation name="set_nat_source_address">
657
+ <documentation>
658
+ Sets the NAT source address type for the local endpoint.
659
+
660
+ </documentation>
661
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
662
+ <input>
663
+ <soap:body
664
+ use="encoded"
665
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
666
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
667
+ </input>
668
+ <output>
669
+ <soap:body
670
+ use="encoded"
671
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
672
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
673
+ </output>
674
+ </operation>
675
+
676
+ <operation name="get_nat_source_address">
677
+ <documentation>
678
+ Gets the NAT source address type of the local endpoint.
679
+
680
+ </documentation>
681
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
682
+ <input>
683
+ <soap:body
684
+ use="encoded"
685
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
686
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
687
+ </input>
688
+ <output>
689
+ <soap:body
690
+ use="encoded"
691
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
692
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
693
+ </output>
694
+ </operation>
695
+
696
+ <operation name="set_serverssl">
697
+ <documentation>
698
+ Sets the server SSL profile used for encrypting traffic for the
699
+ local endpoint.
700
+
701
+ </documentation>
702
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
703
+ <input>
704
+ <soap:body
705
+ use="encoded"
706
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
707
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
708
+ </input>
709
+ <output>
710
+ <soap:body
711
+ use="encoded"
712
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
713
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
714
+ </output>
715
+ </operation>
716
+
717
+ <operation name="get_serverssl">
718
+ <documentation>
719
+ Gets the server SSL profile used for encrypting traffic by the
720
+ local endpoint.
721
+
722
+ </documentation>
723
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
724
+ <input>
725
+ <soap:body
726
+ use="encoded"
727
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
728
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
729
+ </input>
730
+ <output>
731
+ <soap:body
732
+ use="encoded"
733
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
734
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
735
+ </output>
736
+ </operation>
737
+
738
+ <operation name="set_tunnel_port">
739
+ <documentation>
740
+ Sets the local service number in the local endpoint.
741
+
742
+ </documentation>
743
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
744
+ <input>
745
+ <soap:body
746
+ use="encoded"
747
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
748
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
749
+ </input>
750
+ <output>
751
+ <soap:body
752
+ use="encoded"
753
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
754
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
755
+ </output>
756
+ </operation>
757
+
758
+ <operation name="get_tunnel_port">
759
+ <documentation>
760
+ Gets the local service number in the local endpoint.
761
+
762
+ </documentation>
763
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
764
+ <input>
765
+ <soap:body
766
+ use="encoded"
767
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
768
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
769
+ </input>
770
+ <output>
771
+ <soap:body
772
+ use="encoded"
773
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
774
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
775
+ </output>
776
+ </operation>
777
+
778
+ <operation name="set_management_address">
779
+ <documentation>
780
+ Sets the management address for the local endpoint.
781
+
782
+ Note that this method does nothing, as the management address is
783
+ automatically assigned and cannot be changed.
784
+
785
+ </documentation>
786
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
787
+ <input>
788
+ <soap:body
789
+ use="encoded"
790
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
791
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
792
+ </input>
793
+ <output>
794
+ <soap:body
795
+ use="encoded"
796
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
797
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
798
+ </output>
799
+ </operation>
800
+
801
+ <operation name="get_management_address">
802
+ <documentation>
803
+ Gets the management address for the local endpoint.
804
+
805
+ </documentation>
806
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
807
+ <input>
808
+ <soap:body
809
+ use="encoded"
810
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
811
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
812
+ </input>
813
+ <output>
814
+ <soap:body
815
+ use="encoded"
816
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
817
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
818
+ </output>
819
+ </operation>
820
+
821
+ <operation name="get_UUID">
822
+ <documentation>
823
+ Gets the UUID for the local endpoint.
824
+
825
+ </documentation>
826
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
827
+ <input>
828
+ <soap:body
829
+ use="encoded"
830
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
831
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
832
+ </input>
833
+ <output>
834
+ <soap:body
835
+ use="encoded"
836
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
837
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
838
+ </output>
839
+ </operation>
840
+
841
+ <operation name="set_description">
842
+ <documentation>
843
+ Sets the description for the local endpoint.
844
+
845
+ This is an arbitrary field which can be used for any purpose.
846
+
847
+ </documentation>
848
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
849
+ <input>
850
+ <soap:body
851
+ use="encoded"
852
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
853
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
854
+ </input>
855
+ <output>
856
+ <soap:body
857
+ use="encoded"
858
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
859
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
860
+ </output>
861
+ </operation>
862
+
863
+ <operation name="get_description">
864
+ <documentation>
865
+ Gets the descriptions for the local endpoint.
866
+
867
+ </documentation>
868
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
869
+ <input>
870
+ <soap:body
871
+ use="encoded"
872
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
873
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
874
+ </input>
875
+ <output>
876
+ <soap:body
877
+ use="encoded"
878
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
879
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
880
+ </output>
881
+ </operation>
882
+
883
+ <operation name="get_version">
884
+ <documentation>
885
+ Gets the version information for this interface.
886
+
887
+ </documentation>
888
+ <soap:operation soapAction="urn:iControl:Networking/iSessionLocalInterface"/>
889
+ <input>
890
+ <soap:body
891
+ use="encoded"
892
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
893
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
894
+ </input>
895
+ <output>
896
+ <soap:body
897
+ use="encoded"
898
+ namespace="urn:iControl:Networking/iSessionLocalInterface"
899
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
900
+ </output>
901
+ </operation>
902
+ </binding>
903
+
904
+ <!-- service -->
905
+
906
+ <service name="Networking.iSessionLocalInterface">
907
+ <documentation>
908
+ The iSession Local interface enables you to work with the definitions
909
+ and attributes contained in a device's WAN Optimization Module local
910
+ endpoint object.
911
+
912
+ This interface includes an object key which is a Common::ULong value.
913
+ This value is meaningless in itself, and since only one local endpoint
914
+ can exist, it is of no real use. Its value is ignored in all methods
915
+ in this interface.
916
+
917
+ </documentation>
918
+ <port name="Networking.iSessionLocalInterfacePort" binding="tns:Networking.iSessionLocalInterfaceBinding">
919
+ <soap:address location="https://url_to_service"/>
920
+ </port>
921
+ </service>
922
+ </definitions>