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,1104 @@
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.IPsecTrafficSelector"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:complexType name="Common.StringSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:complexType name="Common.ULongSequence">
32
+ <xsd:complexContent>
33
+ <xsd:restriction base='SOAP-ENC:Array'>
34
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
35
+ </xsd:restriction>
36
+ </xsd:complexContent>
37
+ </xsd:complexType>
38
+ <xsd:simpleType name="Networking.IPsecTrafficSelectorAction">
39
+ <xsd:restriction base="xsd:string">
40
+ <xsd:enumeration value="IPSEC_TRAFFIC_SELECTOR_ACTION_UNKNOWN">
41
+ <xsd:annotation>
42
+ <xsd:documentation>IPSEC_TRAFFIC_SELECTOR_ACTION_UNKNOWN</xsd:documentation>
43
+ </xsd:annotation>
44
+ </xsd:enumeration>
45
+ <xsd:enumeration value="IPSEC_TRAFFIC_SELECTOR_ACTION_DISCARD">
46
+ <xsd:annotation>
47
+ <xsd:documentation>IPSEC_TRAFFIC_SELECTOR_ACTION_DISCARD</xsd:documentation>
48
+ </xsd:annotation>
49
+ </xsd:enumeration>
50
+ <xsd:enumeration value="IPSEC_TRAFFIC_SELECTOR_ACTION_PROTECT">
51
+ <xsd:annotation>
52
+ <xsd:documentation>IPSEC_TRAFFIC_SELECTOR_ACTION_PROTECT</xsd:documentation>
53
+ </xsd:annotation>
54
+ </xsd:enumeration>
55
+ </xsd:restriction>
56
+ </xsd:simpleType>
57
+ <xsd:complexType name="Networking.IPsecTrafficSelectorActionSequence">
58
+ <xsd:complexContent>
59
+ <xsd:restriction base='SOAP-ENC:Array'>
60
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecTrafficSelectorAction[]'/>
61
+ </xsd:restriction>
62
+ </xsd:complexContent>
63
+ </xsd:complexType>
64
+ <xsd:simpleType name="Networking.IPsecDirection">
65
+ <xsd:restriction base="xsd:string">
66
+ <xsd:enumeration value="IPSEC_DIR_UNKNOWN">
67
+ <xsd:annotation>
68
+ <xsd:documentation>IPSEC_DIR_UNKNOWN</xsd:documentation>
69
+ </xsd:annotation>
70
+ </xsd:enumeration>
71
+ <xsd:enumeration value="IPSEC_DIR_IN">
72
+ <xsd:annotation>
73
+ <xsd:documentation>IPSEC_DIR_IN</xsd:documentation>
74
+ </xsd:annotation>
75
+ </xsd:enumeration>
76
+ <xsd:enumeration value="IPSEC_DIR_OUT">
77
+ <xsd:annotation>
78
+ <xsd:documentation>IPSEC_DIR_OUT</xsd:documentation>
79
+ </xsd:annotation>
80
+ </xsd:enumeration>
81
+ <xsd:enumeration value="IPSEC_DIR_BOTH">
82
+ <xsd:annotation>
83
+ <xsd:documentation>IPSEC_DIR_BOTH</xsd:documentation>
84
+ </xsd:annotation>
85
+ </xsd:enumeration>
86
+ </xsd:restriction>
87
+ </xsd:simpleType>
88
+ <xsd:complexType name="Common.PortSequence">
89
+ <xsd:complexContent>
90
+ <xsd:restriction base='SOAP-ENC:Array'>
91
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
92
+ </xsd:restriction>
93
+ </xsd:complexContent>
94
+ </xsd:complexType>
95
+ <xsd:complexType name="Common.IPAddressSequence">
96
+ <xsd:complexContent>
97
+ <xsd:restriction base='SOAP-ENC:Array'>
98
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
99
+ </xsd:restriction>
100
+ </xsd:complexContent>
101
+ </xsd:complexType>
102
+ <xsd:complexType name="Networking.IPsecDirectionSequence">
103
+ <xsd:complexContent>
104
+ <xsd:restriction base='SOAP-ENC:Array'>
105
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecDirection[]'/>
106
+ </xsd:restriction>
107
+ </xsd:complexContent>
108
+ </xsd:complexType>
109
+ </xsd:schema>
110
+ </types>
111
+
112
+ <!-- message -->
113
+
114
+ <message name="Networking.IPsecTrafficSelector.get_listRequest">
115
+ </message>
116
+ <message name="Networking.IPsecTrafficSelector.get_listResponse">
117
+ <part name="return" type="tns:Common.StringSequence"/>
118
+ </message>
119
+
120
+ <message name="Networking.IPsecTrafficSelector.createRequest">
121
+ <part name="selectors" type="tns:Common.StringSequence"/>
122
+ <part name="src_addresses" type="tns:Common.IPAddressSequence"/>
123
+ <part name="src_netmasks" type="tns:Common.IPAddressSequence"/>
124
+ <part name="dst_addresses" type="tns:Common.IPAddressSequence"/>
125
+ <part name="dst_netmasks" type="tns:Common.IPAddressSequence"/>
126
+ </message>
127
+ <message name="Networking.IPsecTrafficSelector.createResponse">
128
+ </message>
129
+
130
+ <message name="Networking.IPsecTrafficSelector.delete_traffic_selectorRequest">
131
+ <part name="selectors" type="tns:Common.StringSequence"/>
132
+ </message>
133
+ <message name="Networking.IPsecTrafficSelector.delete_traffic_selectorResponse">
134
+ </message>
135
+
136
+ <message name="Networking.IPsecTrafficSelector.delete_all_traffic_selectorsRequest">
137
+ </message>
138
+ <message name="Networking.IPsecTrafficSelector.delete_all_traffic_selectorsResponse">
139
+ </message>
140
+
141
+ <message name="Networking.IPsecTrafficSelector.set_descriptionRequest">
142
+ <part name="selectors" type="tns:Common.StringSequence"/>
143
+ <part name="descriptions" type="tns:Common.StringSequence"/>
144
+ </message>
145
+ <message name="Networking.IPsecTrafficSelector.set_descriptionResponse">
146
+ </message>
147
+
148
+ <message name="Networking.IPsecTrafficSelector.get_descriptionRequest">
149
+ <part name="selectors" type="tns:Common.StringSequence"/>
150
+ </message>
151
+ <message name="Networking.IPsecTrafficSelector.get_descriptionResponse">
152
+ <part name="return" type="tns:Common.StringSequence"/>
153
+ </message>
154
+
155
+ <message name="Networking.IPsecTrafficSelector.set_actionRequest">
156
+ <part name="selectors" type="tns:Common.StringSequence"/>
157
+ <part name="actions" type="tns:Networking.IPsecTrafficSelectorActionSequence"/>
158
+ </message>
159
+ <message name="Networking.IPsecTrafficSelector.set_actionResponse">
160
+ </message>
161
+
162
+ <message name="Networking.IPsecTrafficSelector.get_actionRequest">
163
+ <part name="selectors" type="tns:Common.StringSequence"/>
164
+ </message>
165
+ <message name="Networking.IPsecTrafficSelector.get_actionResponse">
166
+ <part name="return" type="tns:Networking.IPsecTrafficSelectorActionSequence"/>
167
+ </message>
168
+
169
+ <message name="Networking.IPsecTrafficSelector.set_destination_addressRequest">
170
+ <part name="selectors" type="tns:Common.StringSequence"/>
171
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
172
+ <part name="netmasks" type="tns:Common.IPAddressSequence"/>
173
+ </message>
174
+ <message name="Networking.IPsecTrafficSelector.set_destination_addressResponse">
175
+ </message>
176
+
177
+ <message name="Networking.IPsecTrafficSelector.get_destination_addressRequest">
178
+ <part name="selectors" type="tns:Common.StringSequence"/>
179
+ </message>
180
+ <message name="Networking.IPsecTrafficSelector.get_destination_addressResponse">
181
+ <part name="return" type="tns:Common.IPAddressSequence"/>
182
+ </message>
183
+
184
+ <message name="Networking.IPsecTrafficSelector.get_destination_netmaskRequest">
185
+ <part name="selectors" type="tns:Common.StringSequence"/>
186
+ </message>
187
+ <message name="Networking.IPsecTrafficSelector.get_destination_netmaskResponse">
188
+ <part name="return" type="tns:Common.IPAddressSequence"/>
189
+ </message>
190
+
191
+ <message name="Networking.IPsecTrafficSelector.set_destination_portRequest">
192
+ <part name="selectors" type="tns:Common.StringSequence"/>
193
+ <part name="ports" type="tns:Common.PortSequence"/>
194
+ </message>
195
+ <message name="Networking.IPsecTrafficSelector.set_destination_portResponse">
196
+ </message>
197
+
198
+ <message name="Networking.IPsecTrafficSelector.get_destination_portRequest">
199
+ <part name="selectors" type="tns:Common.StringSequence"/>
200
+ </message>
201
+ <message name="Networking.IPsecTrafficSelector.get_destination_portResponse">
202
+ <part name="return" type="tns:Common.PortSequence"/>
203
+ </message>
204
+
205
+ <message name="Networking.IPsecTrafficSelector.set_directionRequest">
206
+ <part name="selectors" type="tns:Common.StringSequence"/>
207
+ <part name="directions" type="tns:Networking.IPsecDirectionSequence"/>
208
+ </message>
209
+ <message name="Networking.IPsecTrafficSelector.set_directionResponse">
210
+ </message>
211
+
212
+ <message name="Networking.IPsecTrafficSelector.get_directionRequest">
213
+ <part name="selectors" type="tns:Common.StringSequence"/>
214
+ </message>
215
+ <message name="Networking.IPsecTrafficSelector.get_directionResponse">
216
+ <part name="return" type="tns:Networking.IPsecDirectionSequence"/>
217
+ </message>
218
+
219
+ <message name="Networking.IPsecTrafficSelector.set_ip_protocolRequest">
220
+ <part name="selectors" type="tns:Common.StringSequence"/>
221
+ <part name="ip_protocols" type="tns:Common.ULongSequence"/>
222
+ </message>
223
+ <message name="Networking.IPsecTrafficSelector.set_ip_protocolResponse">
224
+ </message>
225
+
226
+ <message name="Networking.IPsecTrafficSelector.get_ip_protocolRequest">
227
+ <part name="selectors" type="tns:Common.StringSequence"/>
228
+ </message>
229
+ <message name="Networking.IPsecTrafficSelector.get_ip_protocolResponse">
230
+ <part name="return" type="tns:Common.ULongSequence"/>
231
+ </message>
232
+
233
+ <message name="Networking.IPsecTrafficSelector.set_orderRequest">
234
+ <part name="selectors" type="tns:Common.StringSequence"/>
235
+ <part name="orders" type="tns:Common.ULongSequence"/>
236
+ </message>
237
+ <message name="Networking.IPsecTrafficSelector.set_orderResponse">
238
+ </message>
239
+
240
+ <message name="Networking.IPsecTrafficSelector.get_orderRequest">
241
+ <part name="selectors" type="tns:Common.StringSequence"/>
242
+ </message>
243
+ <message name="Networking.IPsecTrafficSelector.get_orderResponse">
244
+ <part name="return" type="tns:Common.ULongSequence"/>
245
+ </message>
246
+
247
+ <message name="Networking.IPsecTrafficSelector.set_policyRequest">
248
+ <part name="selectors" type="tns:Common.StringSequence"/>
249
+ <part name="policies" type="tns:Common.StringSequence"/>
250
+ </message>
251
+ <message name="Networking.IPsecTrafficSelector.set_policyResponse">
252
+ </message>
253
+
254
+ <message name="Networking.IPsecTrafficSelector.get_policyRequest">
255
+ <part name="selectors" type="tns:Common.StringSequence"/>
256
+ </message>
257
+ <message name="Networking.IPsecTrafficSelector.get_policyResponse">
258
+ <part name="return" type="tns:Common.StringSequence"/>
259
+ </message>
260
+
261
+ <message name="Networking.IPsecTrafficSelector.set_source_addressRequest">
262
+ <part name="selectors" type="tns:Common.StringSequence"/>
263
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
264
+ <part name="netmasks" type="tns:Common.IPAddressSequence"/>
265
+ </message>
266
+ <message name="Networking.IPsecTrafficSelector.set_source_addressResponse">
267
+ </message>
268
+
269
+ <message name="Networking.IPsecTrafficSelector.get_source_addressRequest">
270
+ <part name="selectors" type="tns:Common.StringSequence"/>
271
+ </message>
272
+ <message name="Networking.IPsecTrafficSelector.get_source_addressResponse">
273
+ <part name="return" type="tns:Common.IPAddressSequence"/>
274
+ </message>
275
+
276
+ <message name="Networking.IPsecTrafficSelector.get_source_netmaskRequest">
277
+ <part name="selectors" type="tns:Common.StringSequence"/>
278
+ </message>
279
+ <message name="Networking.IPsecTrafficSelector.get_source_netmaskResponse">
280
+ <part name="return" type="tns:Common.IPAddressSequence"/>
281
+ </message>
282
+
283
+ <message name="Networking.IPsecTrafficSelector.set_source_portRequest">
284
+ <part name="selectors" type="tns:Common.StringSequence"/>
285
+ <part name="ports" type="tns:Common.PortSequence"/>
286
+ </message>
287
+ <message name="Networking.IPsecTrafficSelector.set_source_portResponse">
288
+ </message>
289
+
290
+ <message name="Networking.IPsecTrafficSelector.get_source_portRequest">
291
+ <part name="selectors" type="tns:Common.StringSequence"/>
292
+ </message>
293
+ <message name="Networking.IPsecTrafficSelector.get_source_portResponse">
294
+ <part name="return" type="tns:Common.PortSequence"/>
295
+ </message>
296
+
297
+ <message name="Networking.IPsecTrafficSelector.get_versionRequest">
298
+ </message>
299
+ <message name="Networking.IPsecTrafficSelector.get_versionResponse">
300
+ <part name="return" type="xsd:string"/>
301
+ </message>
302
+
303
+ <!-- portType -->
304
+
305
+ <portType name="Networking.IPsecTrafficSelectorPortType">
306
+ <operation name="get_list">
307
+ <documentation>
308
+ Gets the names for all IPsec traffic selectors.
309
+
310
+ </documentation>
311
+ <input message="tns:Networking.IPsecTrafficSelector.get_listRequest"/>
312
+ <output message="tns:Networking.IPsecTrafficSelector.get_listResponse"/>
313
+ </operation>
314
+ <operation name="create">
315
+ <documentation>
316
+ Creates a set of IPsec traffic selectors.
317
+
318
+ </documentation>
319
+ <input message="tns:Networking.IPsecTrafficSelector.createRequest"/>
320
+ <output message="tns:Networking.IPsecTrafficSelector.createResponse"/>
321
+ </operation>
322
+ <operation name="delete_traffic_selector">
323
+ <documentation>
324
+ Deletes a set of IPsec traffic selectors.
325
+
326
+ </documentation>
327
+ <input message="tns:Networking.IPsecTrafficSelector.delete_traffic_selectorRequest"/>
328
+ <output message="tns:Networking.IPsecTrafficSelector.delete_traffic_selectorResponse"/>
329
+ </operation>
330
+ <operation name="delete_all_traffic_selectors">
331
+ <documentation>
332
+ Deletes all IPsec traffic selectors.
333
+
334
+ </documentation>
335
+ <input message="tns:Networking.IPsecTrafficSelector.delete_all_traffic_selectorsRequest"/>
336
+ <output message="tns:Networking.IPsecTrafficSelector.delete_all_traffic_selectorsResponse"/>
337
+ </operation>
338
+ <operation name="set_description">
339
+ <documentation>
340
+ Sets the description for each specified IPsec traffic selector.
341
+ This is an arbitrary field which can be used for any purpose.
342
+
343
+ </documentation>
344
+ <input message="tns:Networking.IPsecTrafficSelector.set_descriptionRequest"/>
345
+ <output message="tns:Networking.IPsecTrafficSelector.set_descriptionResponse"/>
346
+ </operation>
347
+ <operation name="get_description">
348
+ <documentation>
349
+ Gets the description for each specified IPsec traffic selector.
350
+
351
+ </documentation>
352
+ <input message="tns:Networking.IPsecTrafficSelector.get_descriptionRequest"/>
353
+ <output message="tns:Networking.IPsecTrafficSelector.get_descriptionResponse"/>
354
+ </operation>
355
+ <operation name="set_action">
356
+ <documentation>
357
+ Sets the IPsec traffic selector actions for a list of traffic selectors.
358
+ Specifies how the system handles traffic that matches the criteria
359
+ in the traffic selector.
360
+
361
+ </documentation>
362
+ <input message="tns:Networking.IPsecTrafficSelector.set_actionRequest"/>
363
+ <output message="tns:Networking.IPsecTrafficSelector.set_actionResponse"/>
364
+ </operation>
365
+ <operation name="get_action">
366
+ <documentation>
367
+ Gets the IPsec traffic selector actions for the specified IPsec traffic selectors.
368
+
369
+ </documentation>
370
+ <input message="tns:Networking.IPsecTrafficSelector.get_actionRequest"/>
371
+ <output message="tns:Networking.IPsecTrafficSelector.get_actionResponse"/>
372
+ </operation>
373
+ <operation name="set_destination_address">
374
+ <documentation>
375
+ Sets the IPsec destination addresses for a set of traffic selectors.
376
+
377
+ </documentation>
378
+ <input message="tns:Networking.IPsecTrafficSelector.set_destination_addressRequest"/>
379
+ <output message="tns:Networking.IPsecTrafficSelector.set_destination_addressResponse"/>
380
+ </operation>
381
+ <operation name="get_destination_address">
382
+ <documentation>
383
+ Gets the IPsec destination addresses for a set of traffic selectors.
384
+
385
+ </documentation>
386
+ <input message="tns:Networking.IPsecTrafficSelector.get_destination_addressRequest"/>
387
+ <output message="tns:Networking.IPsecTrafficSelector.get_destination_addressResponse"/>
388
+ </operation>
389
+ <operation name="get_destination_netmask">
390
+ <documentation>
391
+ Gets the IPsec destination netmasks for a set of traffic selectors.
392
+
393
+ </documentation>
394
+ <input message="tns:Networking.IPsecTrafficSelector.get_destination_netmaskRequest"/>
395
+ <output message="tns:Networking.IPsecTrafficSelector.get_destination_netmaskResponse"/>
396
+ </operation>
397
+ <operation name="set_destination_port">
398
+ <documentation>
399
+ Sets the IPsec destination ports for a set of traffic selectors.
400
+ Match on the specified Layer 4 destination port; 0 matches all port numbers.
401
+
402
+ </documentation>
403
+ <input message="tns:Networking.IPsecTrafficSelector.set_destination_portRequest"/>
404
+ <output message="tns:Networking.IPsecTrafficSelector.set_destination_portResponse"/>
405
+ </operation>
406
+ <operation name="get_destination_port">
407
+ <documentation>
408
+ Gets the IPsec destination ports for a set of traffic selectors.
409
+
410
+ </documentation>
411
+ <input message="tns:Networking.IPsecTrafficSelector.get_destination_portRequest"/>
412
+ <output message="tns:Networking.IPsecTrafficSelector.get_destination_portResponse"/>
413
+ </operation>
414
+ <operation name="set_direction">
415
+ <documentation>
416
+ Sets the IPsec traffic selector direction for a set of traffic selectors.
417
+
418
+ </documentation>
419
+ <input message="tns:Networking.IPsecTrafficSelector.set_directionRequest"/>
420
+ <output message="tns:Networking.IPsecTrafficSelector.set_directionResponse"/>
421
+ </operation>
422
+ <operation name="get_direction">
423
+ <documentation>
424
+ Gets the IPsec traffic selector direction for a set of traffic selectors.
425
+
426
+ </documentation>
427
+ <input message="tns:Networking.IPsecTrafficSelector.get_directionRequest"/>
428
+ <output message="tns:Networking.IPsecTrafficSelector.get_directionResponse"/>
429
+ </operation>
430
+ <operation name="set_ip_protocol">
431
+ <documentation>
432
+ Sets the IPsec traffic selector IP protocols for a set of traffic selectors.
433
+
434
+ </documentation>
435
+ <input message="tns:Networking.IPsecTrafficSelector.set_ip_protocolRequest"/>
436
+ <output message="tns:Networking.IPsecTrafficSelector.set_ip_protocolResponse"/>
437
+ </operation>
438
+ <operation name="get_ip_protocol">
439
+ <documentation>
440
+ Gets the IPsec traffic selector IP protocols for a set of traffic selectors.
441
+
442
+ </documentation>
443
+ <input message="tns:Networking.IPsecTrafficSelector.get_ip_protocolRequest"/>
444
+ <output message="tns:Networking.IPsecTrafficSelector.get_ip_protocolResponse"/>
445
+ </operation>
446
+ <operation name="set_order">
447
+ <documentation>
448
+ Sets the IPsec traffic selector orders for a set of traffic selectors.
449
+ Traffic selectors are sorted by their orders. The traffic selector
450
+ with the smaller order will be used first.
451
+
452
+ </documentation>
453
+ <input message="tns:Networking.IPsecTrafficSelector.set_orderRequest"/>
454
+ <output message="tns:Networking.IPsecTrafficSelector.set_orderResponse"/>
455
+ </operation>
456
+ <operation name="get_order">
457
+ <documentation>
458
+ Gets the IPsec traffic selector orders for a set of traffic selectors.
459
+
460
+ </documentation>
461
+ <input message="tns:Networking.IPsecTrafficSelector.get_orderRequest"/>
462
+ <output message="tns:Networking.IPsecTrafficSelector.get_orderResponse"/>
463
+ </operation>
464
+ <operation name="set_policy">
465
+ <documentation>
466
+ Sets the IPsec policies for the set of IPsec traffic selectors.
467
+ Specifies the name of the IPsec policy to be enforced
468
+ on the matched traffic.
469
+
470
+ </documentation>
471
+ <input message="tns:Networking.IPsecTrafficSelector.set_policyRequest"/>
472
+ <output message="tns:Networking.IPsecTrafficSelector.set_policyResponse"/>
473
+ </operation>
474
+ <operation name="get_policy">
475
+ <documentation>
476
+ Gets the IPsec policies for the set of IPsec traffic selectors.
477
+
478
+ </documentation>
479
+ <input message="tns:Networking.IPsecTrafficSelector.get_policyRequest"/>
480
+ <output message="tns:Networking.IPsecTrafficSelector.get_policyResponse"/>
481
+ </operation>
482
+ <operation name="set_source_address">
483
+ <documentation>
484
+ Sets the IPsec traffic selector source addresses for a set of traffic selectors.
485
+ Specifies the source IP address of the traffic to be matched.
486
+
487
+ </documentation>
488
+ <input message="tns:Networking.IPsecTrafficSelector.set_source_addressRequest"/>
489
+ <output message="tns:Networking.IPsecTrafficSelector.set_source_addressResponse"/>
490
+ </operation>
491
+ <operation name="get_source_address">
492
+ <documentation>
493
+ Gets the IPsec traffic selector source addresses for a set of traffic selectors.
494
+
495
+ </documentation>
496
+ <input message="tns:Networking.IPsecTrafficSelector.get_source_addressRequest"/>
497
+ <output message="tns:Networking.IPsecTrafficSelector.get_source_addressResponse"/>
498
+ </operation>
499
+ <operation name="get_source_netmask">
500
+ <documentation>
501
+ Gets the IPsec source netmasks for a set of traffic selectors.
502
+
503
+ </documentation>
504
+ <input message="tns:Networking.IPsecTrafficSelector.get_source_netmaskRequest"/>
505
+ <output message="tns:Networking.IPsecTrafficSelector.get_source_netmaskResponse"/>
506
+ </operation>
507
+ <operation name="set_source_port">
508
+ <documentation>
509
+ Sets the IPsec traffic selector source ports for a set of traffic selectors.
510
+ Match on the specified Layer 4 source port; 0 matches all port numbers.
511
+
512
+ </documentation>
513
+ <input message="tns:Networking.IPsecTrafficSelector.set_source_portRequest"/>
514
+ <output message="tns:Networking.IPsecTrafficSelector.set_source_portResponse"/>
515
+ </operation>
516
+ <operation name="get_source_port">
517
+ <documentation>
518
+ Gets the IPsec traffic selector source ports for a set of traffic selectors.
519
+
520
+ </documentation>
521
+ <input message="tns:Networking.IPsecTrafficSelector.get_source_portRequest"/>
522
+ <output message="tns:Networking.IPsecTrafficSelector.get_source_portResponse"/>
523
+ </operation>
524
+ <operation name="get_version">
525
+ <documentation>
526
+ Gets the version information for this interface.
527
+
528
+ </documentation>
529
+ <input message="tns:Networking.IPsecTrafficSelector.get_versionRequest"/>
530
+ <output message="tns:Networking.IPsecTrafficSelector.get_versionResponse"/>
531
+ </operation>
532
+ </portType>
533
+
534
+ <!-- binding -->
535
+
536
+ <binding name="Networking.IPsecTrafficSelectorBinding" type="tns:Networking.IPsecTrafficSelectorPortType">
537
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
538
+ <operation name="get_list">
539
+ <documentation>
540
+ Gets the names for all IPsec traffic selectors.
541
+
542
+ </documentation>
543
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
544
+ <input>
545
+ <soap:body
546
+ use="encoded"
547
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
548
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
549
+ </input>
550
+ <output>
551
+ <soap:body
552
+ use="encoded"
553
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
554
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
555
+ </output>
556
+ </operation>
557
+
558
+ <operation name="create">
559
+ <documentation>
560
+ Creates a set of IPsec traffic selectors.
561
+
562
+ </documentation>
563
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
564
+ <input>
565
+ <soap:body
566
+ use="encoded"
567
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
568
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
569
+ </input>
570
+ <output>
571
+ <soap:body
572
+ use="encoded"
573
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
574
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
575
+ </output>
576
+ </operation>
577
+
578
+ <operation name="delete_traffic_selector">
579
+ <documentation>
580
+ Deletes a set of IPsec traffic selectors.
581
+
582
+ </documentation>
583
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
584
+ <input>
585
+ <soap:body
586
+ use="encoded"
587
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
588
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
589
+ </input>
590
+ <output>
591
+ <soap:body
592
+ use="encoded"
593
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
594
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
595
+ </output>
596
+ </operation>
597
+
598
+ <operation name="delete_all_traffic_selectors">
599
+ <documentation>
600
+ Deletes all IPsec traffic selectors.
601
+
602
+ </documentation>
603
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
604
+ <input>
605
+ <soap:body
606
+ use="encoded"
607
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
608
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
609
+ </input>
610
+ <output>
611
+ <soap:body
612
+ use="encoded"
613
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
614
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
615
+ </output>
616
+ </operation>
617
+
618
+ <operation name="set_description">
619
+ <documentation>
620
+ Sets the description for each specified IPsec traffic selector.
621
+ This is an arbitrary field which can be used for any purpose.
622
+
623
+ </documentation>
624
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
625
+ <input>
626
+ <soap:body
627
+ use="encoded"
628
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
629
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
630
+ </input>
631
+ <output>
632
+ <soap:body
633
+ use="encoded"
634
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
635
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
636
+ </output>
637
+ </operation>
638
+
639
+ <operation name="get_description">
640
+ <documentation>
641
+ Gets the description for each specified IPsec traffic selector.
642
+
643
+ </documentation>
644
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
645
+ <input>
646
+ <soap:body
647
+ use="encoded"
648
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
649
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
650
+ </input>
651
+ <output>
652
+ <soap:body
653
+ use="encoded"
654
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
655
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
656
+ </output>
657
+ </operation>
658
+
659
+ <operation name="set_action">
660
+ <documentation>
661
+ Sets the IPsec traffic selector actions for a list of traffic selectors.
662
+ Specifies how the system handles traffic that matches the criteria
663
+ in the traffic selector.
664
+
665
+ </documentation>
666
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
667
+ <input>
668
+ <soap:body
669
+ use="encoded"
670
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
671
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
672
+ </input>
673
+ <output>
674
+ <soap:body
675
+ use="encoded"
676
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
677
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
678
+ </output>
679
+ </operation>
680
+
681
+ <operation name="get_action">
682
+ <documentation>
683
+ Gets the IPsec traffic selector actions for the specified IPsec traffic selectors.
684
+
685
+ </documentation>
686
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
687
+ <input>
688
+ <soap:body
689
+ use="encoded"
690
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
691
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
692
+ </input>
693
+ <output>
694
+ <soap:body
695
+ use="encoded"
696
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
697
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
698
+ </output>
699
+ </operation>
700
+
701
+ <operation name="set_destination_address">
702
+ <documentation>
703
+ Sets the IPsec destination addresses for a set of traffic selectors.
704
+
705
+ </documentation>
706
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
707
+ <input>
708
+ <soap:body
709
+ use="encoded"
710
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
711
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
712
+ </input>
713
+ <output>
714
+ <soap:body
715
+ use="encoded"
716
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
717
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
718
+ </output>
719
+ </operation>
720
+
721
+ <operation name="get_destination_address">
722
+ <documentation>
723
+ Gets the IPsec destination addresses for a set of traffic selectors.
724
+
725
+ </documentation>
726
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
727
+ <input>
728
+ <soap:body
729
+ use="encoded"
730
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
731
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
732
+ </input>
733
+ <output>
734
+ <soap:body
735
+ use="encoded"
736
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
737
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
738
+ </output>
739
+ </operation>
740
+
741
+ <operation name="get_destination_netmask">
742
+ <documentation>
743
+ Gets the IPsec destination netmasks for a set of traffic selectors.
744
+
745
+ </documentation>
746
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
747
+ <input>
748
+ <soap:body
749
+ use="encoded"
750
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
751
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
752
+ </input>
753
+ <output>
754
+ <soap:body
755
+ use="encoded"
756
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
757
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
758
+ </output>
759
+ </operation>
760
+
761
+ <operation name="set_destination_port">
762
+ <documentation>
763
+ Sets the IPsec destination ports for a set of traffic selectors.
764
+ Match on the specified Layer 4 destination port; 0 matches all port numbers.
765
+
766
+ </documentation>
767
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
768
+ <input>
769
+ <soap:body
770
+ use="encoded"
771
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
772
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
773
+ </input>
774
+ <output>
775
+ <soap:body
776
+ use="encoded"
777
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
778
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
779
+ </output>
780
+ </operation>
781
+
782
+ <operation name="get_destination_port">
783
+ <documentation>
784
+ Gets the IPsec destination ports for a set of traffic selectors.
785
+
786
+ </documentation>
787
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
788
+ <input>
789
+ <soap:body
790
+ use="encoded"
791
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
792
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
793
+ </input>
794
+ <output>
795
+ <soap:body
796
+ use="encoded"
797
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
798
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
799
+ </output>
800
+ </operation>
801
+
802
+ <operation name="set_direction">
803
+ <documentation>
804
+ Sets the IPsec traffic selector direction for a set of traffic selectors.
805
+
806
+ </documentation>
807
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
808
+ <input>
809
+ <soap:body
810
+ use="encoded"
811
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
812
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
813
+ </input>
814
+ <output>
815
+ <soap:body
816
+ use="encoded"
817
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
818
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
819
+ </output>
820
+ </operation>
821
+
822
+ <operation name="get_direction">
823
+ <documentation>
824
+ Gets the IPsec traffic selector direction for a set of traffic selectors.
825
+
826
+ </documentation>
827
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
828
+ <input>
829
+ <soap:body
830
+ use="encoded"
831
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
832
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
833
+ </input>
834
+ <output>
835
+ <soap:body
836
+ use="encoded"
837
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
838
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
839
+ </output>
840
+ </operation>
841
+
842
+ <operation name="set_ip_protocol">
843
+ <documentation>
844
+ Sets the IPsec traffic selector IP protocols for a set of traffic selectors.
845
+
846
+ </documentation>
847
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
848
+ <input>
849
+ <soap:body
850
+ use="encoded"
851
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
852
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
853
+ </input>
854
+ <output>
855
+ <soap:body
856
+ use="encoded"
857
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
858
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
859
+ </output>
860
+ </operation>
861
+
862
+ <operation name="get_ip_protocol">
863
+ <documentation>
864
+ Gets the IPsec traffic selector IP protocols for a set of traffic selectors.
865
+
866
+ </documentation>
867
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
868
+ <input>
869
+ <soap:body
870
+ use="encoded"
871
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
872
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
873
+ </input>
874
+ <output>
875
+ <soap:body
876
+ use="encoded"
877
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
878
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
879
+ </output>
880
+ </operation>
881
+
882
+ <operation name="set_order">
883
+ <documentation>
884
+ Sets the IPsec traffic selector orders for a set of traffic selectors.
885
+ Traffic selectors are sorted by their orders. The traffic selector
886
+ with the smaller order will be used first.
887
+
888
+ </documentation>
889
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
890
+ <input>
891
+ <soap:body
892
+ use="encoded"
893
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
894
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
895
+ </input>
896
+ <output>
897
+ <soap:body
898
+ use="encoded"
899
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
900
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
901
+ </output>
902
+ </operation>
903
+
904
+ <operation name="get_order">
905
+ <documentation>
906
+ Gets the IPsec traffic selector orders for a set of traffic selectors.
907
+
908
+ </documentation>
909
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
910
+ <input>
911
+ <soap:body
912
+ use="encoded"
913
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
914
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
915
+ </input>
916
+ <output>
917
+ <soap:body
918
+ use="encoded"
919
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
920
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
921
+ </output>
922
+ </operation>
923
+
924
+ <operation name="set_policy">
925
+ <documentation>
926
+ Sets the IPsec policies for the set of IPsec traffic selectors.
927
+ Specifies the name of the IPsec policy to be enforced
928
+ on the matched traffic.
929
+
930
+ </documentation>
931
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
932
+ <input>
933
+ <soap:body
934
+ use="encoded"
935
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
936
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
937
+ </input>
938
+ <output>
939
+ <soap:body
940
+ use="encoded"
941
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
942
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
943
+ </output>
944
+ </operation>
945
+
946
+ <operation name="get_policy">
947
+ <documentation>
948
+ Gets the IPsec policies for the set of IPsec traffic selectors.
949
+
950
+ </documentation>
951
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
952
+ <input>
953
+ <soap:body
954
+ use="encoded"
955
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
956
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
957
+ </input>
958
+ <output>
959
+ <soap:body
960
+ use="encoded"
961
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
962
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
963
+ </output>
964
+ </operation>
965
+
966
+ <operation name="set_source_address">
967
+ <documentation>
968
+ Sets the IPsec traffic selector source addresses for a set of traffic selectors.
969
+ Specifies the source IP address of the traffic to be matched.
970
+
971
+ </documentation>
972
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
973
+ <input>
974
+ <soap:body
975
+ use="encoded"
976
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
977
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
978
+ </input>
979
+ <output>
980
+ <soap:body
981
+ use="encoded"
982
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
983
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
984
+ </output>
985
+ </operation>
986
+
987
+ <operation name="get_source_address">
988
+ <documentation>
989
+ Gets the IPsec traffic selector source addresses for a set of traffic selectors.
990
+
991
+ </documentation>
992
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
993
+ <input>
994
+ <soap:body
995
+ use="encoded"
996
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
997
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
998
+ </input>
999
+ <output>
1000
+ <soap:body
1001
+ use="encoded"
1002
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
1003
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1004
+ </output>
1005
+ </operation>
1006
+
1007
+ <operation name="get_source_netmask">
1008
+ <documentation>
1009
+ Gets the IPsec source netmasks for a set of traffic selectors.
1010
+
1011
+ </documentation>
1012
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
1013
+ <input>
1014
+ <soap:body
1015
+ use="encoded"
1016
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
1017
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1018
+ </input>
1019
+ <output>
1020
+ <soap:body
1021
+ use="encoded"
1022
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
1023
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1024
+ </output>
1025
+ </operation>
1026
+
1027
+ <operation name="set_source_port">
1028
+ <documentation>
1029
+ Sets the IPsec traffic selector source ports for a set of traffic selectors.
1030
+ Match on the specified Layer 4 source port; 0 matches all port numbers.
1031
+
1032
+ </documentation>
1033
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
1034
+ <input>
1035
+ <soap:body
1036
+ use="encoded"
1037
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
1038
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1039
+ </input>
1040
+ <output>
1041
+ <soap:body
1042
+ use="encoded"
1043
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
1044
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1045
+ </output>
1046
+ </operation>
1047
+
1048
+ <operation name="get_source_port">
1049
+ <documentation>
1050
+ Gets the IPsec traffic selector source ports for a set of traffic selectors.
1051
+
1052
+ </documentation>
1053
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
1054
+ <input>
1055
+ <soap:body
1056
+ use="encoded"
1057
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
1058
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1059
+ </input>
1060
+ <output>
1061
+ <soap:body
1062
+ use="encoded"
1063
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
1064
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1065
+ </output>
1066
+ </operation>
1067
+
1068
+ <operation name="get_version">
1069
+ <documentation>
1070
+ Gets the version information for this interface.
1071
+
1072
+ </documentation>
1073
+ <soap:operation soapAction="urn:iControl:Networking/IPsecTrafficSelector"/>
1074
+ <input>
1075
+ <soap:body
1076
+ use="encoded"
1077
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
1078
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1079
+ </input>
1080
+ <output>
1081
+ <soap:body
1082
+ use="encoded"
1083
+ namespace="urn:iControl:Networking/IPsecTrafficSelector"
1084
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1085
+ </output>
1086
+ </operation>
1087
+ </binding>
1088
+
1089
+ <!-- service -->
1090
+
1091
+ <service name="Networking.IPsecTrafficSelector">
1092
+ <documentation>
1093
+ This interface configures the IPsec Protocol suite for securing
1094
+ Internet Protocol (IP) communications by authenticating and
1095
+ encrypting each IP packet of a communication session.
1096
+ The Traffic Selector component specifies what traffic you want
1097
+ the system to protect with IPsec.
1098
+
1099
+ </documentation>
1100
+ <port name="Networking.IPsecTrafficSelectorPort" binding="tns:Networking.IPsecTrafficSelectorBinding">
1101
+ <soap:address location="https://url_to_service"/>
1102
+ </port>
1103
+ </service>
1104
+ </definitions>