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,849 @@
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="PEM.ForwardingEndpoint"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:complexType name="Common.SourcePortBehaviorSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.SourcePortBehavior[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:simpleType name="Common.EnabledState">
32
+ <xsd:restriction base="xsd:string">
33
+ <xsd:enumeration value="STATE_DISABLED">
34
+ <xsd:annotation>
35
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
36
+ </xsd:annotation>
37
+ </xsd:enumeration>
38
+ <xsd:enumeration value="STATE_ENABLED">
39
+ <xsd:annotation>
40
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
41
+ </xsd:annotation>
42
+ </xsd:enumeration>
43
+ </xsd:restriction>
44
+ </xsd:simpleType>
45
+ <xsd:complexType name="Common.StringSequence">
46
+ <xsd:complexContent>
47
+ <xsd:restriction base='SOAP-ENC:Array'>
48
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
49
+ </xsd:restriction>
50
+ </xsd:complexContent>
51
+ </xsd:complexType>
52
+ <xsd:complexType name="PEM.PersistenceTypeSequence">
53
+ <xsd:complexContent>
54
+ <xsd:restriction base='SOAP-ENC:Array'>
55
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:PEM.PersistenceType[]'/>
56
+ </xsd:restriction>
57
+ </xsd:complexContent>
58
+ </xsd:complexType>
59
+ <xsd:simpleType name="Common.SourcePortBehavior">
60
+ <xsd:restriction base="xsd:string">
61
+ <xsd:enumeration value="SOURCE_PORT_PRESERVE">
62
+ <xsd:annotation>
63
+ <xsd:documentation>SOURCE_PORT_PRESERVE</xsd:documentation>
64
+ </xsd:annotation>
65
+ </xsd:enumeration>
66
+ <xsd:enumeration value="SOURCE_PORT_PRESERVE_STRICT">
67
+ <xsd:annotation>
68
+ <xsd:documentation>SOURCE_PORT_PRESERVE_STRICT</xsd:documentation>
69
+ </xsd:annotation>
70
+ </xsd:enumeration>
71
+ <xsd:enumeration value="SOURCE_PORT_CHANGE">
72
+ <xsd:annotation>
73
+ <xsd:documentation>SOURCE_PORT_CHANGE</xsd:documentation>
74
+ </xsd:annotation>
75
+ </xsd:enumeration>
76
+ <xsd:enumeration value="SOURCE_PORT_UNKNOWN">
77
+ <xsd:annotation>
78
+ <xsd:documentation>SOURCE_PORT_UNKNOWN</xsd:documentation>
79
+ </xsd:annotation>
80
+ </xsd:enumeration>
81
+ </xsd:restriction>
82
+ </xsd:simpleType>
83
+ <xsd:simpleType name="PEM.PersistenceType">
84
+ <xsd:restriction base="xsd:string">
85
+ <xsd:enumeration value="PERSISTENCE_TYPE_UNKNOWN">
86
+ <xsd:annotation>
87
+ <xsd:documentation>PERSISTENCE_TYPE_UNKNOWN</xsd:documentation>
88
+ </xsd:annotation>
89
+ </xsd:enumeration>
90
+ <xsd:enumeration value="PERSISTENCE_TYPE_DISABLED">
91
+ <xsd:annotation>
92
+ <xsd:documentation>PERSISTENCE_TYPE_DISABLED</xsd:documentation>
93
+ </xsd:annotation>
94
+ </xsd:enumeration>
95
+ <xsd:enumeration value="PERSISTENCE_TYPE_SOURCE_IP">
96
+ <xsd:annotation>
97
+ <xsd:documentation>PERSISTENCE_TYPE_SOURCE_IP</xsd:documentation>
98
+ </xsd:annotation>
99
+ </xsd:enumeration>
100
+ <xsd:enumeration value="PERSISTENCE_TYPE_DESTINATION_IP">
101
+ <xsd:annotation>
102
+ <xsd:documentation>PERSISTENCE_TYPE_DESTINATION_IP</xsd:documentation>
103
+ </xsd:annotation>
104
+ </xsd:enumeration>
105
+ </xsd:restriction>
106
+ </xsd:simpleType>
107
+ <xsd:complexType name="Common.EnabledStateSequence">
108
+ <xsd:complexContent>
109
+ <xsd:restriction base='SOAP-ENC:Array'>
110
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
111
+ </xsd:restriction>
112
+ </xsd:complexContent>
113
+ </xsd:complexType>
114
+ </xsd:schema>
115
+ </types>
116
+
117
+ <!-- message -->
118
+
119
+ <message name="PEM.ForwardingEndpoint.get_listRequest">
120
+ </message>
121
+ <message name="PEM.ForwardingEndpoint.get_listResponse">
122
+ <part name="return" type="tns:Common.StringSequence"/>
123
+ </message>
124
+
125
+ <message name="PEM.ForwardingEndpoint.createRequest">
126
+ <part name="endpoints" type="tns:Common.StringSequence"/>
127
+ <part name="pools" type="tns:Common.StringSequence"/>
128
+ </message>
129
+ <message name="PEM.ForwardingEndpoint.createResponse">
130
+ </message>
131
+
132
+ <message name="PEM.ForwardingEndpoint.delete_forwarding_endpointRequest">
133
+ <part name="endpoints" type="tns:Common.StringSequence"/>
134
+ </message>
135
+ <message name="PEM.ForwardingEndpoint.delete_forwarding_endpointResponse">
136
+ </message>
137
+
138
+ <message name="PEM.ForwardingEndpoint.delete_all_forwarding_endpointsRequest">
139
+ </message>
140
+ <message name="PEM.ForwardingEndpoint.delete_all_forwarding_endpointsResponse">
141
+ </message>
142
+
143
+ <message name="PEM.ForwardingEndpoint.set_poolRequest">
144
+ <part name="endpoints" type="tns:Common.StringSequence"/>
145
+ <part name="pools" type="tns:Common.StringSequence"/>
146
+ </message>
147
+ <message name="PEM.ForwardingEndpoint.set_poolResponse">
148
+ </message>
149
+
150
+ <message name="PEM.ForwardingEndpoint.get_poolRequest">
151
+ <part name="endpoints" type="tns:Common.StringSequence"/>
152
+ </message>
153
+ <message name="PEM.ForwardingEndpoint.get_poolResponse">
154
+ <part name="return" type="tns:Common.StringSequence"/>
155
+ </message>
156
+
157
+ <message name="PEM.ForwardingEndpoint.set_persistence_typeRequest">
158
+ <part name="endpoints" type="tns:Common.StringSequence"/>
159
+ <part name="types" type="tns:PEM.PersistenceTypeSequence"/>
160
+ </message>
161
+ <message name="PEM.ForwardingEndpoint.set_persistence_typeResponse">
162
+ </message>
163
+
164
+ <message name="PEM.ForwardingEndpoint.get_persistence_typeRequest">
165
+ <part name="endpoints" type="tns:Common.StringSequence"/>
166
+ </message>
167
+ <message name="PEM.ForwardingEndpoint.get_persistence_typeResponse">
168
+ <part name="return" type="tns:PEM.PersistenceTypeSequence"/>
169
+ </message>
170
+
171
+ <message name="PEM.ForwardingEndpoint.set_lsn_poolRequest">
172
+ <part name="endpoints" type="tns:Common.StringSequence"/>
173
+ <part name="pools" type="tns:Common.StringSequence"/>
174
+ </message>
175
+ <message name="PEM.ForwardingEndpoint.set_lsn_poolResponse">
176
+ </message>
177
+
178
+ <message name="PEM.ForwardingEndpoint.get_lsn_poolRequest">
179
+ <part name="endpoints" type="tns:Common.StringSequence"/>
180
+ </message>
181
+ <message name="PEM.ForwardingEndpoint.get_lsn_poolResponse">
182
+ <part name="return" type="tns:Common.StringSequence"/>
183
+ </message>
184
+
185
+ <message name="PEM.ForwardingEndpoint.set_snat_poolRequest">
186
+ <part name="endpoints" type="tns:Common.StringSequence"/>
187
+ <part name="pools" type="tns:Common.StringSequence"/>
188
+ </message>
189
+ <message name="PEM.ForwardingEndpoint.set_snat_poolResponse">
190
+ </message>
191
+
192
+ <message name="PEM.ForwardingEndpoint.get_snat_poolRequest">
193
+ <part name="endpoints" type="tns:Common.StringSequence"/>
194
+ </message>
195
+ <message name="PEM.ForwardingEndpoint.get_snat_poolResponse">
196
+ <part name="return" type="tns:Common.StringSequence"/>
197
+ </message>
198
+
199
+ <message name="PEM.ForwardingEndpoint.set_source_port_behaviorRequest">
200
+ <part name="endpoints" type="tns:Common.StringSequence"/>
201
+ <part name="behaviors" type="tns:Common.SourcePortBehaviorSequence"/>
202
+ </message>
203
+ <message name="PEM.ForwardingEndpoint.set_source_port_behaviorResponse">
204
+ </message>
205
+
206
+ <message name="PEM.ForwardingEndpoint.get_source_port_behaviorRequest">
207
+ <part name="endpoints" type="tns:Common.StringSequence"/>
208
+ </message>
209
+ <message name="PEM.ForwardingEndpoint.get_source_port_behaviorResponse">
210
+ <part name="return" type="tns:Common.SourcePortBehaviorSequence"/>
211
+ </message>
212
+
213
+ <message name="PEM.ForwardingEndpoint.set_translate_address_stateRequest">
214
+ <part name="endpoints" type="tns:Common.StringSequence"/>
215
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
216
+ </message>
217
+ <message name="PEM.ForwardingEndpoint.set_translate_address_stateResponse">
218
+ </message>
219
+
220
+ <message name="PEM.ForwardingEndpoint.get_translate_address_stateRequest">
221
+ <part name="endpoints" type="tns:Common.StringSequence"/>
222
+ </message>
223
+ <message name="PEM.ForwardingEndpoint.get_translate_address_stateResponse">
224
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
225
+ </message>
226
+
227
+ <message name="PEM.ForwardingEndpoint.set_translate_service_stateRequest">
228
+ <part name="endpoints" type="tns:Common.StringSequence"/>
229
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
230
+ </message>
231
+ <message name="PEM.ForwardingEndpoint.set_translate_service_stateResponse">
232
+ </message>
233
+
234
+ <message name="PEM.ForwardingEndpoint.get_translate_service_stateRequest">
235
+ <part name="endpoints" type="tns:Common.StringSequence"/>
236
+ </message>
237
+ <message name="PEM.ForwardingEndpoint.get_translate_service_stateResponse">
238
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
239
+ </message>
240
+
241
+ <message name="PEM.ForwardingEndpoint.get_versionRequest">
242
+ </message>
243
+ <message name="PEM.ForwardingEndpoint.get_versionResponse">
244
+ <part name="return" type="xsd:string"/>
245
+ </message>
246
+
247
+ <!-- portType -->
248
+
249
+ <portType name="PEM.ForwardingEndpointPortType">
250
+ <operation name="get_list">
251
+ <documentation>
252
+ Gets a list of all forwarding endpoints.
253
+
254
+ </documentation>
255
+ <input message="tns:PEM.ForwardingEndpoint.get_listRequest"/>
256
+ <output message="tns:PEM.ForwardingEndpoint.get_listResponse"/>
257
+ </operation>
258
+ <operation name="create">
259
+ <documentation>
260
+ Creates a set of PEM forwarding endpoints.
261
+
262
+ </documentation>
263
+ <input message="tns:PEM.ForwardingEndpoint.createRequest"/>
264
+ <output message="tns:PEM.ForwardingEndpoint.createResponse"/>
265
+ </operation>
266
+ <operation name="delete_forwarding_endpoint">
267
+ <documentation>
268
+ Deletes the specified forwarding endpoints.
269
+
270
+ </documentation>
271
+ <input message="tns:PEM.ForwardingEndpoint.delete_forwarding_endpointRequest"/>
272
+ <output message="tns:PEM.ForwardingEndpoint.delete_forwarding_endpointResponse"/>
273
+ </operation>
274
+ <operation name="delete_all_forwarding_endpoints">
275
+ <documentation>
276
+ Deletes all user defined forwarding endpoints.
277
+
278
+ </documentation>
279
+ <input message="tns:PEM.ForwardingEndpoint.delete_all_forwarding_endpointsRequest"/>
280
+ <output message="tns:PEM.ForwardingEndpoint.delete_all_forwarding_endpointsResponse"/>
281
+ </operation>
282
+ <operation name="set_pool">
283
+ <documentation>
284
+ Sets the pools for the specified forwarding endpoints.
285
+ The forwarding endpoint will always point to a single pool.
286
+
287
+ </documentation>
288
+ <input message="tns:PEM.ForwardingEndpoint.set_poolRequest"/>
289
+ <output message="tns:PEM.ForwardingEndpoint.set_poolResponse"/>
290
+ </operation>
291
+ <operation name="get_pool">
292
+ <documentation>
293
+ Gets the pools for the specified forwarding endpoints.
294
+
295
+ </documentation>
296
+ <input message="tns:PEM.ForwardingEndpoint.get_poolRequest"/>
297
+ <output message="tns:PEM.ForwardingEndpoint.get_poolResponse"/>
298
+ </operation>
299
+ <operation name="set_persistence_type">
300
+ <documentation>
301
+ Sets the persistence types of the specified forwarding endpoints
302
+ which specifies whether traffic persists with pool members.
303
+ If you want specific traffic to go to the same pool member,
304
+ set the persistence type to source or destination IP address.
305
+
306
+ </documentation>
307
+ <input message="tns:PEM.ForwardingEndpoint.set_persistence_typeRequest"/>
308
+ <output message="tns:PEM.ForwardingEndpoint.set_persistence_typeResponse"/>
309
+ </operation>
310
+ <operation name="get_persistence_type">
311
+ <documentation>
312
+ Gets the persistence types of the specified forwarding endpoints.
313
+
314
+ </documentation>
315
+ <input message="tns:PEM.ForwardingEndpoint.get_persistence_typeRequest"/>
316
+ <output message="tns:PEM.ForwardingEndpoint.get_persistence_typeResponse"/>
317
+ </operation>
318
+ <operation name="set_lsn_pool">
319
+ <documentation>
320
+ Sets the LSN pools for the specified forwarding endpoints.
321
+ An LSN pool specifies the name of an existing LSN pool to which
322
+ the forwarding endpoint will automatically forward traffic.
323
+ The default value is empty string (no pool).
324
+
325
+ </documentation>
326
+ <input message="tns:PEM.ForwardingEndpoint.set_lsn_poolRequest"/>
327
+ <output message="tns:PEM.ForwardingEndpoint.set_lsn_poolResponse"/>
328
+ </operation>
329
+ <operation name="get_lsn_pool">
330
+ <documentation>
331
+ Gets the LSN pools for the specified forwarding endpoints.
332
+
333
+ </documentation>
334
+ <input message="tns:PEM.ForwardingEndpoint.get_lsn_poolRequest"/>
335
+ <output message="tns:PEM.ForwardingEndpoint.get_lsn_poolResponse"/>
336
+ </operation>
337
+ <operation name="set_snat_pool">
338
+ <documentation>
339
+ Sets the SNAT pools for the specified forwarding endpoints.
340
+ A SNAT pool specifies the name of an existing SNAT pool used for
341
+ translating the client ip address to the self-ip address of the
342
+ BIG-IP system. The default value is empty string (no pool).
343
+
344
+ </documentation>
345
+ <input message="tns:PEM.ForwardingEndpoint.set_snat_poolRequest"/>
346
+ <output message="tns:PEM.ForwardingEndpoint.set_snat_poolResponse"/>
347
+ </operation>
348
+ <operation name="get_snat_pool">
349
+ <documentation>
350
+ Gets the SNAT pools for the specified forwarding endpoints.
351
+
352
+ </documentation>
353
+ <input message="tns:PEM.ForwardingEndpoint.get_snat_poolRequest"/>
354
+ <output message="tns:PEM.ForwardingEndpoint.get_snat_poolResponse"/>
355
+ </operation>
356
+ <operation name="set_source_port_behavior">
357
+ <documentation>
358
+ Sets the source port behaviors of the specified forwarding
359
+ endpoints.
360
+
361
+ </documentation>
362
+ <input message="tns:PEM.ForwardingEndpoint.set_source_port_behaviorRequest"/>
363
+ <output message="tns:PEM.ForwardingEndpoint.set_source_port_behaviorResponse"/>
364
+ </operation>
365
+ <operation name="get_source_port_behavior">
366
+ <documentation>
367
+ Gets the source port behaviors of the specified forwarding endpoints.
368
+
369
+ </documentation>
370
+ <input message="tns:PEM.ForwardingEndpoint.get_source_port_behaviorRequest"/>
371
+ <output message="tns:PEM.ForwardingEndpoint.get_source_port_behaviorResponse"/>
372
+ </operation>
373
+ <operation name="set_translate_address_state">
374
+ <documentation>
375
+ Sets the translate address states of the specified
376
+ forwarding endpoints. A translate address specifies,
377
+ when enabled, that the system translates the original
378
+ destination address of the virtual server.
379
+ The default value is disabled.
380
+
381
+ </documentation>
382
+ <input message="tns:PEM.ForwardingEndpoint.set_translate_address_stateRequest"/>
383
+ <output message="tns:PEM.ForwardingEndpoint.set_translate_address_stateResponse"/>
384
+ </operation>
385
+ <operation name="get_translate_address_state">
386
+ <documentation>
387
+ Gets the translate address states of the specified
388
+ forwarding endpoints.
389
+
390
+ </documentation>
391
+ <input message="tns:PEM.ForwardingEndpoint.get_translate_address_stateRequest"/>
392
+ <output message="tns:PEM.ForwardingEndpoint.get_translate_address_stateResponse"/>
393
+ </operation>
394
+ <operation name="set_translate_service_state">
395
+ <documentation>
396
+ Sets the translate service states of the specified
397
+ forwarding endpoints. A translate service specifies,
398
+ when enabled, that the system translates the original
399
+ destination port. The default value is disabled.
400
+
401
+ </documentation>
402
+ <input message="tns:PEM.ForwardingEndpoint.set_translate_service_stateRequest"/>
403
+ <output message="tns:PEM.ForwardingEndpoint.set_translate_service_stateResponse"/>
404
+ </operation>
405
+ <operation name="get_translate_service_state">
406
+ <documentation>
407
+ Gets the translate service states of the specified
408
+ forwarding endpoints.
409
+
410
+ </documentation>
411
+ <input message="tns:PEM.ForwardingEndpoint.get_translate_service_stateRequest"/>
412
+ <output message="tns:PEM.ForwardingEndpoint.get_translate_service_stateResponse"/>
413
+ </operation>
414
+ <operation name="get_version">
415
+ <documentation>
416
+ Gets the version information for this interface.
417
+
418
+ </documentation>
419
+ <input message="tns:PEM.ForwardingEndpoint.get_versionRequest"/>
420
+ <output message="tns:PEM.ForwardingEndpoint.get_versionResponse"/>
421
+ </operation>
422
+ </portType>
423
+
424
+ <!-- binding -->
425
+
426
+ <binding name="PEM.ForwardingEndpointBinding" type="tns:PEM.ForwardingEndpointPortType">
427
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
428
+ <operation name="get_list">
429
+ <documentation>
430
+ Gets a list of all forwarding endpoints.
431
+
432
+ </documentation>
433
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
434
+ <input>
435
+ <soap:body
436
+ use="encoded"
437
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
438
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
439
+ </input>
440
+ <output>
441
+ <soap:body
442
+ use="encoded"
443
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
444
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
445
+ </output>
446
+ </operation>
447
+
448
+ <operation name="create">
449
+ <documentation>
450
+ Creates a set of PEM forwarding endpoints.
451
+
452
+ </documentation>
453
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
454
+ <input>
455
+ <soap:body
456
+ use="encoded"
457
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
458
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
459
+ </input>
460
+ <output>
461
+ <soap:body
462
+ use="encoded"
463
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
464
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
465
+ </output>
466
+ </operation>
467
+
468
+ <operation name="delete_forwarding_endpoint">
469
+ <documentation>
470
+ Deletes the specified forwarding endpoints.
471
+
472
+ </documentation>
473
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
474
+ <input>
475
+ <soap:body
476
+ use="encoded"
477
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
478
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
479
+ </input>
480
+ <output>
481
+ <soap:body
482
+ use="encoded"
483
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
484
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
485
+ </output>
486
+ </operation>
487
+
488
+ <operation name="delete_all_forwarding_endpoints">
489
+ <documentation>
490
+ Deletes all user defined forwarding endpoints.
491
+
492
+ </documentation>
493
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
494
+ <input>
495
+ <soap:body
496
+ use="encoded"
497
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
498
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
499
+ </input>
500
+ <output>
501
+ <soap:body
502
+ use="encoded"
503
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
504
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
505
+ </output>
506
+ </operation>
507
+
508
+ <operation name="set_pool">
509
+ <documentation>
510
+ Sets the pools for the specified forwarding endpoints.
511
+ The forwarding endpoint will always point to a single pool.
512
+
513
+ </documentation>
514
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
515
+ <input>
516
+ <soap:body
517
+ use="encoded"
518
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
519
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
520
+ </input>
521
+ <output>
522
+ <soap:body
523
+ use="encoded"
524
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
525
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
526
+ </output>
527
+ </operation>
528
+
529
+ <operation name="get_pool">
530
+ <documentation>
531
+ Gets the pools for the specified forwarding endpoints.
532
+
533
+ </documentation>
534
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
535
+ <input>
536
+ <soap:body
537
+ use="encoded"
538
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
539
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
540
+ </input>
541
+ <output>
542
+ <soap:body
543
+ use="encoded"
544
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
545
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
546
+ </output>
547
+ </operation>
548
+
549
+ <operation name="set_persistence_type">
550
+ <documentation>
551
+ Sets the persistence types of the specified forwarding endpoints
552
+ which specifies whether traffic persists with pool members.
553
+ If you want specific traffic to go to the same pool member,
554
+ set the persistence type to source or destination IP address.
555
+
556
+ </documentation>
557
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
558
+ <input>
559
+ <soap:body
560
+ use="encoded"
561
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
562
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
563
+ </input>
564
+ <output>
565
+ <soap:body
566
+ use="encoded"
567
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
568
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
569
+ </output>
570
+ </operation>
571
+
572
+ <operation name="get_persistence_type">
573
+ <documentation>
574
+ Gets the persistence types of the specified forwarding endpoints.
575
+
576
+ </documentation>
577
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
578
+ <input>
579
+ <soap:body
580
+ use="encoded"
581
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
582
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
583
+ </input>
584
+ <output>
585
+ <soap:body
586
+ use="encoded"
587
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
588
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
589
+ </output>
590
+ </operation>
591
+
592
+ <operation name="set_lsn_pool">
593
+ <documentation>
594
+ Sets the LSN pools for the specified forwarding endpoints.
595
+ An LSN pool specifies the name of an existing LSN pool to which
596
+ the forwarding endpoint will automatically forward traffic.
597
+ The default value is empty string (no pool).
598
+
599
+ </documentation>
600
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
601
+ <input>
602
+ <soap:body
603
+ use="encoded"
604
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
605
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
606
+ </input>
607
+ <output>
608
+ <soap:body
609
+ use="encoded"
610
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
611
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
612
+ </output>
613
+ </operation>
614
+
615
+ <operation name="get_lsn_pool">
616
+ <documentation>
617
+ Gets the LSN pools for the specified forwarding endpoints.
618
+
619
+ </documentation>
620
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
621
+ <input>
622
+ <soap:body
623
+ use="encoded"
624
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
625
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
626
+ </input>
627
+ <output>
628
+ <soap:body
629
+ use="encoded"
630
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
631
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
632
+ </output>
633
+ </operation>
634
+
635
+ <operation name="set_snat_pool">
636
+ <documentation>
637
+ Sets the SNAT pools for the specified forwarding endpoints.
638
+ A SNAT pool specifies the name of an existing SNAT pool used for
639
+ translating the client ip address to the self-ip address of the
640
+ BIG-IP system. The default value is empty string (no pool).
641
+
642
+ </documentation>
643
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
644
+ <input>
645
+ <soap:body
646
+ use="encoded"
647
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
648
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
649
+ </input>
650
+ <output>
651
+ <soap:body
652
+ use="encoded"
653
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
654
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
655
+ </output>
656
+ </operation>
657
+
658
+ <operation name="get_snat_pool">
659
+ <documentation>
660
+ Gets the SNAT pools for the specified forwarding endpoints.
661
+
662
+ </documentation>
663
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
664
+ <input>
665
+ <soap:body
666
+ use="encoded"
667
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
668
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
669
+ </input>
670
+ <output>
671
+ <soap:body
672
+ use="encoded"
673
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
674
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
675
+ </output>
676
+ </operation>
677
+
678
+ <operation name="set_source_port_behavior">
679
+ <documentation>
680
+ Sets the source port behaviors of the specified forwarding
681
+ endpoints.
682
+
683
+ </documentation>
684
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
685
+ <input>
686
+ <soap:body
687
+ use="encoded"
688
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
689
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
690
+ </input>
691
+ <output>
692
+ <soap:body
693
+ use="encoded"
694
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
695
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
696
+ </output>
697
+ </operation>
698
+
699
+ <operation name="get_source_port_behavior">
700
+ <documentation>
701
+ Gets the source port behaviors of the specified forwarding endpoints.
702
+
703
+ </documentation>
704
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
705
+ <input>
706
+ <soap:body
707
+ use="encoded"
708
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
709
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
710
+ </input>
711
+ <output>
712
+ <soap:body
713
+ use="encoded"
714
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
715
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
716
+ </output>
717
+ </operation>
718
+
719
+ <operation name="set_translate_address_state">
720
+ <documentation>
721
+ Sets the translate address states of the specified
722
+ forwarding endpoints. A translate address specifies,
723
+ when enabled, that the system translates the original
724
+ destination address of the virtual server.
725
+ The default value is disabled.
726
+
727
+ </documentation>
728
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
729
+ <input>
730
+ <soap:body
731
+ use="encoded"
732
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
733
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
734
+ </input>
735
+ <output>
736
+ <soap:body
737
+ use="encoded"
738
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
739
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
740
+ </output>
741
+ </operation>
742
+
743
+ <operation name="get_translate_address_state">
744
+ <documentation>
745
+ Gets the translate address states of the specified
746
+ forwarding endpoints.
747
+
748
+ </documentation>
749
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
750
+ <input>
751
+ <soap:body
752
+ use="encoded"
753
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
754
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
755
+ </input>
756
+ <output>
757
+ <soap:body
758
+ use="encoded"
759
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
760
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
761
+ </output>
762
+ </operation>
763
+
764
+ <operation name="set_translate_service_state">
765
+ <documentation>
766
+ Sets the translate service states of the specified
767
+ forwarding endpoints. A translate service specifies,
768
+ when enabled, that the system translates the original
769
+ destination port. The default value is disabled.
770
+
771
+ </documentation>
772
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
773
+ <input>
774
+ <soap:body
775
+ use="encoded"
776
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
777
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
778
+ </input>
779
+ <output>
780
+ <soap:body
781
+ use="encoded"
782
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
783
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
784
+ </output>
785
+ </operation>
786
+
787
+ <operation name="get_translate_service_state">
788
+ <documentation>
789
+ Gets the translate service states of the specified
790
+ forwarding endpoints.
791
+
792
+ </documentation>
793
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
794
+ <input>
795
+ <soap:body
796
+ use="encoded"
797
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
798
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
799
+ </input>
800
+ <output>
801
+ <soap:body
802
+ use="encoded"
803
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
804
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
805
+ </output>
806
+ </operation>
807
+
808
+ <operation name="get_version">
809
+ <documentation>
810
+ Gets the version information for this interface.
811
+
812
+ </documentation>
813
+ <soap:operation soapAction="urn:iControl:PEM/ForwardingEndpoint"/>
814
+ <input>
815
+ <soap:body
816
+ use="encoded"
817
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
818
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
819
+ </input>
820
+ <output>
821
+ <soap:body
822
+ use="encoded"
823
+ namespace="urn:iControl:PEM/ForwardingEndpoint"
824
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
825
+ </output>
826
+ </operation>
827
+ </binding>
828
+
829
+ <!-- service -->
830
+
831
+ <service name="PEM.ForwardingEndpoint">
832
+ <documentation>
833
+ You can use the forwarding endpoint interface to configure
834
+ forwarding endpoint definitions for the Policy Enforcement
835
+ Manager. A forwarding endpoint represents the final destination of
836
+ the traffic flow. The endpoint will always point to a single pool;
837
+ it optionally points to a single SNAT pool and/or a single LSN pool.
838
+ According to source-ip or destination-ip, the subsequent traffic
839
+ can be directed to the same pool member, which is called persistence.
840
+ The persistence feature can be disabled.
841
+ Note: Before you can create a forwarding endpoint you must create a
842
+ valid pool with at least one member.
843
+
844
+ </documentation>
845
+ <port name="PEM.ForwardingEndpointPort" binding="tns:PEM.ForwardingEndpointBinding">
846
+ <soap:address location="https://url_to_service"/>
847
+ </port>
848
+ </service>
849
+ </definitions>