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