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,1380 @@
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.IPsecPolicy"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:complexType name="Networking.IPsecDynSaEncryptAlgorithmSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecDynSaEncryptAlgorithm[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:complexType name="Common.StringSequence">
32
+ <xsd:complexContent>
33
+ <xsd:restriction base='SOAP-ENC:Array'>
34
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
35
+ </xsd:restriction>
36
+ </xsd:complexContent>
37
+ </xsd:complexType>
38
+ <xsd:simpleType name="Networking.IPsecSaAuthAlgorithm">
39
+ <xsd:restriction base="xsd:string">
40
+ <xsd:enumeration value="IPSEC_DYNAMIC_SA_AUTH_UNKNOWN">
41
+ <xsd:annotation>
42
+ <xsd:documentation>IPSEC_DYNAMIC_SA_AUTH_UNKNOWN</xsd:documentation>
43
+ </xsd:annotation>
44
+ </xsd:enumeration>
45
+ <xsd:enumeration value="IPSEC_DYNAMIC_SA_AUTH_SHA1">
46
+ <xsd:annotation>
47
+ <xsd:documentation>IPSEC_DYNAMIC_SA_AUTH_SHA1</xsd:documentation>
48
+ </xsd:annotation>
49
+ </xsd:enumeration>
50
+ <xsd:enumeration value="IPSEC_DYNAMIC_SA_AUTH_AES_GCM128">
51
+ <xsd:annotation>
52
+ <xsd:documentation>IPSEC_DYNAMIC_SA_AUTH_AES_GCM128</xsd:documentation>
53
+ </xsd:annotation>
54
+ </xsd:enumeration>
55
+ <xsd:enumeration value="IPSEC_DYNAMIC_SA_AUTH_AES_GCM192">
56
+ <xsd:annotation>
57
+ <xsd:documentation>IPSEC_DYNAMIC_SA_AUTH_AES_GCM192</xsd:documentation>
58
+ </xsd:annotation>
59
+ </xsd:enumeration>
60
+ <xsd:enumeration value="IPSEC_DYNAMIC_SA_AUTH_AES_GCM256">
61
+ <xsd:annotation>
62
+ <xsd:documentation>IPSEC_DYNAMIC_SA_AUTH_AES_GCM256</xsd:documentation>
63
+ </xsd:annotation>
64
+ </xsd:enumeration>
65
+ <xsd:enumeration value="IPSEC_DYNAMIC_SA_AUTH_AES_GMAC128">
66
+ <xsd:annotation>
67
+ <xsd:documentation>IPSEC_DYNAMIC_SA_AUTH_AES_GMAC128</xsd:documentation>
68
+ </xsd:annotation>
69
+ </xsd:enumeration>
70
+ <xsd:enumeration value="IPSEC_DYNAMIC_SA_AUTH_AES_GMAC192">
71
+ <xsd:annotation>
72
+ <xsd:documentation>IPSEC_DYNAMIC_SA_AUTH_AES_GMAC192</xsd:documentation>
73
+ </xsd:annotation>
74
+ </xsd:enumeration>
75
+ <xsd:enumeration value="IPSEC_DYNAMIC_SA_AUTH_AES_GMAC256">
76
+ <xsd:annotation>
77
+ <xsd:documentation>IPSEC_DYNAMIC_SA_AUTH_AES_GMAC256</xsd:documentation>
78
+ </xsd:annotation>
79
+ </xsd:enumeration>
80
+ </xsd:restriction>
81
+ </xsd:simpleType>
82
+ <xsd:complexType name="Networking.IPsecDiffieHellmanGroupSequence">
83
+ <xsd:complexContent>
84
+ <xsd:restriction base='SOAP-ENC:Array'>
85
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecDiffieHellmanGroup[]'/>
86
+ </xsd:restriction>
87
+ </xsd:complexContent>
88
+ </xsd:complexType>
89
+ <xsd:complexType name="Common.ULongSequence">
90
+ <xsd:complexContent>
91
+ <xsd:restriction base='SOAP-ENC:Array'>
92
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
93
+ </xsd:restriction>
94
+ </xsd:complexContent>
95
+ </xsd:complexType>
96
+ <xsd:simpleType name="Networking.IPsecProtocol">
97
+ <xsd:restriction base="xsd:string">
98
+ <xsd:enumeration value="IPSEC_PROTOCOL_UNKNOWN">
99
+ <xsd:annotation>
100
+ <xsd:documentation>IPSEC_PROTOCOL_UNKNOWN</xsd:documentation>
101
+ </xsd:annotation>
102
+ </xsd:enumeration>
103
+ <xsd:enumeration value="IPSEC_PROTOCOL_ESP">
104
+ <xsd:annotation>
105
+ <xsd:documentation>IPSEC_PROTOCOL_ESP</xsd:documentation>
106
+ </xsd:annotation>
107
+ </xsd:enumeration>
108
+ <xsd:enumeration value="IPSEC_PROTOCOL_AH">
109
+ <xsd:annotation>
110
+ <xsd:documentation>IPSEC_PROTOCOL_AH</xsd:documentation>
111
+ </xsd:annotation>
112
+ </xsd:enumeration>
113
+ </xsd:restriction>
114
+ </xsd:simpleType>
115
+ <xsd:simpleType name="Networking.IPsecDynSaEncryptAlgorithm">
116
+ <xsd:restriction base="xsd:string">
117
+ <xsd:enumeration value="IPSEC_DYNAMIC_ENCR_UNKNOWN">
118
+ <xsd:annotation>
119
+ <xsd:documentation>IPSEC_DYNAMIC_ENCR_UNKNOWN</xsd:documentation>
120
+ </xsd:annotation>
121
+ </xsd:enumeration>
122
+ <xsd:enumeration value="IPSEC_DYNAMIC_ENCR_NULL">
123
+ <xsd:annotation>
124
+ <xsd:documentation>IPSEC_DYNAMIC_ENCR_NULL</xsd:documentation>
125
+ </xsd:annotation>
126
+ </xsd:enumeration>
127
+ <xsd:enumeration value="IPSEC_DYNAMIC_ENCR_3DES">
128
+ <xsd:annotation>
129
+ <xsd:documentation>IPSEC_DYNAMIC_ENCR_3DES</xsd:documentation>
130
+ </xsd:annotation>
131
+ </xsd:enumeration>
132
+ <xsd:enumeration value="IPSEC_DYNAMIC_ENCR_AES128">
133
+ <xsd:annotation>
134
+ <xsd:documentation>IPSEC_DYNAMIC_ENCR_AES128</xsd:documentation>
135
+ </xsd:annotation>
136
+ </xsd:enumeration>
137
+ <xsd:enumeration value="IPSEC_DYNAMIC_ENCR_AES192">
138
+ <xsd:annotation>
139
+ <xsd:documentation>IPSEC_DYNAMIC_ENCR_AES192</xsd:documentation>
140
+ </xsd:annotation>
141
+ </xsd:enumeration>
142
+ <xsd:enumeration value="IPSEC_DYNAMIC_ENCR_AES256">
143
+ <xsd:annotation>
144
+ <xsd:documentation>IPSEC_DYNAMIC_ENCR_AES256</xsd:documentation>
145
+ </xsd:annotation>
146
+ </xsd:enumeration>
147
+ <xsd:enumeration value="IPSEC_DYNAMIC_ENCR_AES_GCM128">
148
+ <xsd:annotation>
149
+ <xsd:documentation>IPSEC_DYNAMIC_ENCR_AES_GCM128</xsd:documentation>
150
+ </xsd:annotation>
151
+ </xsd:enumeration>
152
+ <xsd:enumeration value="IPSEC_DYNAMIC_ENCR_AES_GCM192">
153
+ <xsd:annotation>
154
+ <xsd:documentation>IPSEC_DYNAMIC_ENCR_AES_GCM192</xsd:documentation>
155
+ </xsd:annotation>
156
+ </xsd:enumeration>
157
+ <xsd:enumeration value="IPSEC_DYNAMIC_ENCR_AES_GCM256">
158
+ <xsd:annotation>
159
+ <xsd:documentation>IPSEC_DYNAMIC_ENCR_AES_GCM256</xsd:documentation>
160
+ </xsd:annotation>
161
+ </xsd:enumeration>
162
+ <xsd:enumeration value="IPSEC_DYNAMIC_ENCR_AES_GMAC128">
163
+ <xsd:annotation>
164
+ <xsd:documentation>IPSEC_DYNAMIC_ENCR_AES_GMAC128</xsd:documentation>
165
+ </xsd:annotation>
166
+ </xsd:enumeration>
167
+ <xsd:enumeration value="IPSEC_DYNAMIC_ENCR_AES_GMAC192">
168
+ <xsd:annotation>
169
+ <xsd:documentation>IPSEC_DYNAMIC_ENCR_AES_GMAC192</xsd:documentation>
170
+ </xsd:annotation>
171
+ </xsd:enumeration>
172
+ <xsd:enumeration value="IPSEC_DYNAMIC_ENCR_AES_GMAC256">
173
+ <xsd:annotation>
174
+ <xsd:documentation>IPSEC_DYNAMIC_ENCR_AES_GMAC256</xsd:documentation>
175
+ </xsd:annotation>
176
+ </xsd:enumeration>
177
+ </xsd:restriction>
178
+ </xsd:simpleType>
179
+ <xsd:simpleType name="Networking.IPsecMode">
180
+ <xsd:restriction base="xsd:string">
181
+ <xsd:enumeration value="IPSEC_MODE_UNKNOWN">
182
+ <xsd:annotation>
183
+ <xsd:documentation>IPSEC_MODE_UNKNOWN</xsd:documentation>
184
+ </xsd:annotation>
185
+ </xsd:enumeration>
186
+ <xsd:enumeration value="IPSEC_MODE_TRANSPORT">
187
+ <xsd:annotation>
188
+ <xsd:documentation>IPSEC_MODE_TRANSPORT</xsd:documentation>
189
+ </xsd:annotation>
190
+ </xsd:enumeration>
191
+ <xsd:enumeration value="IPSEC_MODE_TUNNEL">
192
+ <xsd:annotation>
193
+ <xsd:documentation>IPSEC_MODE_TUNNEL</xsd:documentation>
194
+ </xsd:annotation>
195
+ </xsd:enumeration>
196
+ <xsd:enumeration value="IPSEC_MODE_ISESSION">
197
+ <xsd:annotation>
198
+ <xsd:documentation>IPSEC_MODE_ISESSION</xsd:documentation>
199
+ </xsd:annotation>
200
+ </xsd:enumeration>
201
+ </xsd:restriction>
202
+ </xsd:simpleType>
203
+ <xsd:complexType name="Common.UShortSequence">
204
+ <xsd:complexContent>
205
+ <xsd:restriction base='SOAP-ENC:Array'>
206
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:int[]'/>
207
+ </xsd:restriction>
208
+ </xsd:complexContent>
209
+ </xsd:complexType>
210
+ <xsd:complexType name="Networking.IPCompAlgorithmSequence">
211
+ <xsd:complexContent>
212
+ <xsd:restriction base='SOAP-ENC:Array'>
213
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPCompAlgorithm[]'/>
214
+ </xsd:restriction>
215
+ </xsd:complexContent>
216
+ </xsd:complexType>
217
+ <xsd:simpleType name="Networking.IPsecDiffieHellmanGroup">
218
+ <xsd:restriction base="xsd:string">
219
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_UNKNOWN">
220
+ <xsd:annotation>
221
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_UNKNOWN</xsd:documentation>
222
+ </xsd:annotation>
223
+ </xsd:enumeration>
224
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP768">
225
+ <xsd:annotation>
226
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP768</xsd:documentation>
227
+ </xsd:annotation>
228
+ </xsd:enumeration>
229
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP1024">
230
+ <xsd:annotation>
231
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP1024</xsd:documentation>
232
+ </xsd:annotation>
233
+ </xsd:enumeration>
234
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP1536">
235
+ <xsd:annotation>
236
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP1536</xsd:documentation>
237
+ </xsd:annotation>
238
+ </xsd:enumeration>
239
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP2048">
240
+ <xsd:annotation>
241
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP2048</xsd:documentation>
242
+ </xsd:annotation>
243
+ </xsd:enumeration>
244
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP3072">
245
+ <xsd:annotation>
246
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP3072</xsd:documentation>
247
+ </xsd:annotation>
248
+ </xsd:enumeration>
249
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP4096">
250
+ <xsd:annotation>
251
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP4096</xsd:documentation>
252
+ </xsd:annotation>
253
+ </xsd:enumeration>
254
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP6144">
255
+ <xsd:annotation>
256
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP6144</xsd:documentation>
257
+ </xsd:annotation>
258
+ </xsd:enumeration>
259
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP8192">
260
+ <xsd:annotation>
261
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP8192</xsd:documentation>
262
+ </xsd:annotation>
263
+ </xsd:enumeration>
264
+ </xsd:restriction>
265
+ </xsd:simpleType>
266
+ <xsd:complexType name="Networking.IPsecSaAuthAlgorithmSequence">
267
+ <xsd:complexContent>
268
+ <xsd:restriction base='SOAP-ENC:Array'>
269
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecSaAuthAlgorithm[]'/>
270
+ </xsd:restriction>
271
+ </xsd:complexContent>
272
+ </xsd:complexType>
273
+ <xsd:complexType name="Common.IPAddressSequence">
274
+ <xsd:complexContent>
275
+ <xsd:restriction base='SOAP-ENC:Array'>
276
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
277
+ </xsd:restriction>
278
+ </xsd:complexContent>
279
+ </xsd:complexType>
280
+ <xsd:simpleType name="Networking.IPCompAlgorithm">
281
+ <xsd:restriction base="xsd:string">
282
+ <xsd:enumeration value="IPCOMP_ALGORITHM_UNKNOWN">
283
+ <xsd:annotation>
284
+ <xsd:documentation>IPCOMP_ALGORITHM_UNKNOWN</xsd:documentation>
285
+ </xsd:annotation>
286
+ </xsd:enumeration>
287
+ <xsd:enumeration value="IPCOMP_ALGORITHM_NONE">
288
+ <xsd:annotation>
289
+ <xsd:documentation>IPCOMP_ALGORITHM_NONE</xsd:documentation>
290
+ </xsd:annotation>
291
+ </xsd:enumeration>
292
+ <xsd:enumeration value="IPCOMP_ALGORITHM_DEFLATE">
293
+ <xsd:annotation>
294
+ <xsd:documentation>IPCOMP_ALGORITHM_DEFLATE</xsd:documentation>
295
+ </xsd:annotation>
296
+ </xsd:enumeration>
297
+ </xsd:restriction>
298
+ </xsd:simpleType>
299
+ <xsd:complexType name="Networking.IPsecProtocolSequence">
300
+ <xsd:complexContent>
301
+ <xsd:restriction base='SOAP-ENC:Array'>
302
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecProtocol[]'/>
303
+ </xsd:restriction>
304
+ </xsd:complexContent>
305
+ </xsd:complexType>
306
+ <xsd:complexType name="Networking.IPsecModeSequence">
307
+ <xsd:complexContent>
308
+ <xsd:restriction base='SOAP-ENC:Array'>
309
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecMode[]'/>
310
+ </xsd:restriction>
311
+ </xsd:complexContent>
312
+ </xsd:complexType>
313
+ </xsd:schema>
314
+ </types>
315
+
316
+ <!-- message -->
317
+
318
+ <message name="Networking.IPsecPolicy.get_listRequest">
319
+ </message>
320
+ <message name="Networking.IPsecPolicy.get_listResponse">
321
+ <part name="return" type="tns:Common.StringSequence"/>
322
+ </message>
323
+
324
+ <message name="Networking.IPsecPolicy.createRequest">
325
+ <part name="policies" type="tns:Common.StringSequence"/>
326
+ </message>
327
+ <message name="Networking.IPsecPolicy.createResponse">
328
+ </message>
329
+
330
+ <message name="Networking.IPsecPolicy.delete_policyRequest">
331
+ <part name="policies" type="tns:Common.StringSequence"/>
332
+ </message>
333
+ <message name="Networking.IPsecPolicy.delete_policyResponse">
334
+ </message>
335
+
336
+ <message name="Networking.IPsecPolicy.delete_all_policiesRequest">
337
+ </message>
338
+ <message name="Networking.IPsecPolicy.delete_all_policiesResponse">
339
+ </message>
340
+
341
+ <message name="Networking.IPsecPolicy.set_descriptionRequest">
342
+ <part name="policies" type="tns:Common.StringSequence"/>
343
+ <part name="descriptions" type="tns:Common.StringSequence"/>
344
+ </message>
345
+ <message name="Networking.IPsecPolicy.set_descriptionResponse">
346
+ </message>
347
+
348
+ <message name="Networking.IPsecPolicy.get_descriptionRequest">
349
+ <part name="policies" type="tns:Common.StringSequence"/>
350
+ </message>
351
+ <message name="Networking.IPsecPolicy.get_descriptionResponse">
352
+ <part name="return" type="tns:Common.StringSequence"/>
353
+ </message>
354
+
355
+ <message name="Networking.IPsecPolicy.set_modeRequest">
356
+ <part name="policies" type="tns:Common.StringSequence"/>
357
+ <part name="modes" type="tns:Networking.IPsecModeSequence"/>
358
+ </message>
359
+ <message name="Networking.IPsecPolicy.set_modeResponse">
360
+ </message>
361
+
362
+ <message name="Networking.IPsecPolicy.get_modeRequest">
363
+ <part name="policies" type="tns:Common.StringSequence"/>
364
+ </message>
365
+ <message name="Networking.IPsecPolicy.get_modeResponse">
366
+ <part name="return" type="tns:Networking.IPsecModeSequence"/>
367
+ </message>
368
+
369
+ <message name="Networking.IPsecPolicy.set_protocolRequest">
370
+ <part name="policies" type="tns:Common.StringSequence"/>
371
+ <part name="protocols" type="tns:Networking.IPsecProtocolSequence"/>
372
+ </message>
373
+ <message name="Networking.IPsecPolicy.set_protocolResponse">
374
+ </message>
375
+
376
+ <message name="Networking.IPsecPolicy.get_protocolRequest">
377
+ <part name="policies" type="tns:Common.StringSequence"/>
378
+ </message>
379
+ <message name="Networking.IPsecPolicy.get_protocolResponse">
380
+ <part name="return" type="tns:Networking.IPsecProtocolSequence"/>
381
+ </message>
382
+
383
+ <message name="Networking.IPsecPolicy.set_ipcomp_algorithmRequest">
384
+ <part name="policies" type="tns:Common.StringSequence"/>
385
+ <part name="algorithms" type="tns:Networking.IPCompAlgorithmSequence"/>
386
+ </message>
387
+ <message name="Networking.IPsecPolicy.set_ipcomp_algorithmResponse">
388
+ </message>
389
+
390
+ <message name="Networking.IPsecPolicy.get_ipcomp_algorithmRequest">
391
+ <part name="policies" type="tns:Common.StringSequence"/>
392
+ </message>
393
+ <message name="Networking.IPsecPolicy.get_ipcomp_algorithmResponse">
394
+ <part name="return" type="tns:Networking.IPCompAlgorithmSequence"/>
395
+ </message>
396
+
397
+ <message name="Networking.IPsecPolicy.set_ipcomp_deflate_levelRequest">
398
+ <part name="policies" type="tns:Common.StringSequence"/>
399
+ <part name="levels" type="tns:Common.UShortSequence"/>
400
+ </message>
401
+ <message name="Networking.IPsecPolicy.set_ipcomp_deflate_levelResponse">
402
+ </message>
403
+
404
+ <message name="Networking.IPsecPolicy.get_ipcomp_deflate_levelRequest">
405
+ <part name="policies" type="tns:Common.StringSequence"/>
406
+ </message>
407
+ <message name="Networking.IPsecPolicy.get_ipcomp_deflate_levelResponse">
408
+ <part name="return" type="tns:Common.UShortSequence"/>
409
+ </message>
410
+
411
+ <message name="Networking.IPsecPolicy.set_local_addressRequest">
412
+ <part name="policies" type="tns:Common.StringSequence"/>
413
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
414
+ </message>
415
+ <message name="Networking.IPsecPolicy.set_local_addressResponse">
416
+ </message>
417
+
418
+ <message name="Networking.IPsecPolicy.get_local_addressRequest">
419
+ <part name="policies" type="tns:Common.StringSequence"/>
420
+ </message>
421
+ <message name="Networking.IPsecPolicy.get_local_addressResponse">
422
+ <part name="return" type="tns:Common.IPAddressSequence"/>
423
+ </message>
424
+
425
+ <message name="Networking.IPsecPolicy.set_remote_addressRequest">
426
+ <part name="policies" type="tns:Common.StringSequence"/>
427
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
428
+ </message>
429
+ <message name="Networking.IPsecPolicy.set_remote_addressResponse">
430
+ </message>
431
+
432
+ <message name="Networking.IPsecPolicy.get_remote_addressRequest">
433
+ <part name="policies" type="tns:Common.StringSequence"/>
434
+ </message>
435
+ <message name="Networking.IPsecPolicy.get_remote_addressResponse">
436
+ <part name="return" type="tns:Common.IPAddressSequence"/>
437
+ </message>
438
+
439
+ <message name="Networking.IPsecPolicy.set_auth_algorithmRequest">
440
+ <part name="policies" type="tns:Common.StringSequence"/>
441
+ <part name="algorithms" type="tns:Networking.IPsecSaAuthAlgorithmSequence"/>
442
+ </message>
443
+ <message name="Networking.IPsecPolicy.set_auth_algorithmResponse">
444
+ </message>
445
+
446
+ <message name="Networking.IPsecPolicy.get_auth_algorithmRequest">
447
+ <part name="policies" type="tns:Common.StringSequence"/>
448
+ </message>
449
+ <message name="Networking.IPsecPolicy.get_auth_algorithmResponse">
450
+ <part name="return" type="tns:Networking.IPsecSaAuthAlgorithmSequence"/>
451
+ </message>
452
+
453
+ <message name="Networking.IPsecPolicy.set_encrypt_algorithmRequest">
454
+ <part name="policies" type="tns:Common.StringSequence"/>
455
+ <part name="algorithms" type="tns:Networking.IPsecDynSaEncryptAlgorithmSequence"/>
456
+ </message>
457
+ <message name="Networking.IPsecPolicy.set_encrypt_algorithmResponse">
458
+ </message>
459
+
460
+ <message name="Networking.IPsecPolicy.get_encrypt_algorithmRequest">
461
+ <part name="policies" type="tns:Common.StringSequence"/>
462
+ </message>
463
+ <message name="Networking.IPsecPolicy.get_encrypt_algorithmResponse">
464
+ <part name="return" type="tns:Networking.IPsecDynSaEncryptAlgorithmSequence"/>
465
+ </message>
466
+
467
+ <message name="Networking.IPsecPolicy.set_forward_secrecyRequest">
468
+ <part name="policies" type="tns:Common.StringSequence"/>
469
+ <part name="secrecies" type="tns:Networking.IPsecDiffieHellmanGroupSequence"/>
470
+ </message>
471
+ <message name="Networking.IPsecPolicy.set_forward_secrecyResponse">
472
+ </message>
473
+
474
+ <message name="Networking.IPsecPolicy.get_forward_secrecyRequest">
475
+ <part name="policies" type="tns:Common.StringSequence"/>
476
+ </message>
477
+ <message name="Networking.IPsecPolicy.get_forward_secrecyResponse">
478
+ <part name="return" type="tns:Networking.IPsecDiffieHellmanGroupSequence"/>
479
+ </message>
480
+
481
+ <message name="Networking.IPsecPolicy.set_lifetimeRequest">
482
+ <part name="policies" type="tns:Common.StringSequence"/>
483
+ <part name="lifetimes" type="tns:Common.ULongSequence"/>
484
+ </message>
485
+ <message name="Networking.IPsecPolicy.set_lifetimeResponse">
486
+ </message>
487
+
488
+ <message name="Networking.IPsecPolicy.get_lifetimeRequest">
489
+ <part name="policies" type="tns:Common.StringSequence"/>
490
+ </message>
491
+ <message name="Networking.IPsecPolicy.get_lifetimeResponse">
492
+ <part name="return" type="tns:Common.ULongSequence"/>
493
+ </message>
494
+
495
+ <message name="Networking.IPsecPolicy.set_lifetime_kilobytesRequest">
496
+ <part name="policies" type="tns:Common.StringSequence"/>
497
+ <part name="lifetimes" type="tns:Common.ULongSequence"/>
498
+ </message>
499
+ <message name="Networking.IPsecPolicy.set_lifetime_kilobytesResponse">
500
+ </message>
501
+
502
+ <message name="Networking.IPsecPolicy.get_lifetime_kilobytesRequest">
503
+ <part name="policies" type="tns:Common.StringSequence"/>
504
+ </message>
505
+ <message name="Networking.IPsecPolicy.get_lifetime_kilobytesResponse">
506
+ <part name="return" type="tns:Common.ULongSequence"/>
507
+ </message>
508
+
509
+ <message name="Networking.IPsecPolicy.get_versionRequest">
510
+ </message>
511
+ <message name="Networking.IPsecPolicy.get_versionResponse">
512
+ <part name="return" type="xsd:string"/>
513
+ </message>
514
+
515
+ <!-- portType -->
516
+
517
+ <portType name="Networking.IPsecPolicyPortType">
518
+ <operation name="get_list">
519
+ <documentation>
520
+ Gets the names for all IPsec policies.
521
+
522
+ </documentation>
523
+ <input message="tns:Networking.IPsecPolicy.get_listRequest"/>
524
+ <output message="tns:Networking.IPsecPolicy.get_listResponse"/>
525
+ </operation>
526
+ <operation name="create">
527
+ <documentation>
528
+ Creates a set of IPsec policies.
529
+
530
+ </documentation>
531
+ <input message="tns:Networking.IPsecPolicy.createRequest"/>
532
+ <output message="tns:Networking.IPsecPolicy.createResponse"/>
533
+ </operation>
534
+ <operation name="delete_policy">
535
+ <documentation>
536
+ Deletes a set of IPsec policies.
537
+
538
+ </documentation>
539
+ <input message="tns:Networking.IPsecPolicy.delete_policyRequest"/>
540
+ <output message="tns:Networking.IPsecPolicy.delete_policyResponse"/>
541
+ </operation>
542
+ <operation name="delete_all_policies">
543
+ <documentation>
544
+ Deletes all IPsec policies.
545
+
546
+ </documentation>
547
+ <input message="tns:Networking.IPsecPolicy.delete_all_policiesRequest"/>
548
+ <output message="tns:Networking.IPsecPolicy.delete_all_policiesResponse"/>
549
+ </operation>
550
+ <operation name="set_description">
551
+ <documentation>
552
+ Sets the descriptions for the specified IPsec policies.
553
+ This is an arbitrary field which can be used for any purpose.
554
+
555
+ </documentation>
556
+ <input message="tns:Networking.IPsecPolicy.set_descriptionRequest"/>
557
+ <output message="tns:Networking.IPsecPolicy.set_descriptionResponse"/>
558
+ </operation>
559
+ <operation name="get_description">
560
+ <documentation>
561
+ Gets the descriptions for the specified IPsec policies.
562
+
563
+ </documentation>
564
+ <input message="tns:Networking.IPsecPolicy.get_descriptionRequest"/>
565
+ <output message="tns:Networking.IPsecPolicy.get_descriptionResponse"/>
566
+ </operation>
567
+ <operation name="set_mode">
568
+ <documentation>
569
+ Sets IPsec modes for the specified IPsec policies.
570
+
571
+ </documentation>
572
+ <input message="tns:Networking.IPsecPolicy.set_modeRequest"/>
573
+ <output message="tns:Networking.IPsecPolicy.set_modeResponse"/>
574
+ </operation>
575
+ <operation name="get_mode">
576
+ <documentation>
577
+ Gets IPsec modes for the specified IPsec policies.
578
+
579
+ </documentation>
580
+ <input message="tns:Networking.IPsecPolicy.get_modeRequest"/>
581
+ <output message="tns:Networking.IPsecPolicy.get_modeResponse"/>
582
+ </operation>
583
+ <operation name="set_protocol">
584
+ <documentation>
585
+ Sets IPsec protocols for the specified IPsec policies.
586
+
587
+ </documentation>
588
+ <input message="tns:Networking.IPsecPolicy.set_protocolRequest"/>
589
+ <output message="tns:Networking.IPsecPolicy.set_protocolResponse"/>
590
+ </operation>
591
+ <operation name="get_protocol">
592
+ <documentation>
593
+ Gets IPsec protocols for the specified IPsec policies.
594
+
595
+ </documentation>
596
+ <input message="tns:Networking.IPsecPolicy.get_protocolRequest"/>
597
+ <output message="tns:Networking.IPsecPolicy.get_protocolResponse"/>
598
+ </operation>
599
+ <operation name="set_ipcomp_algorithm">
600
+ <documentation>
601
+ Sets IPComp compression algorithms for the specified IPsec policies.
602
+
603
+ </documentation>
604
+ <input message="tns:Networking.IPsecPolicy.set_ipcomp_algorithmRequest"/>
605
+ <output message="tns:Networking.IPsecPolicy.set_ipcomp_algorithmResponse"/>
606
+ </operation>
607
+ <operation name="get_ipcomp_algorithm">
608
+ <documentation>
609
+ Gets IPComp compression algorithm for the specified IPsec policies.
610
+
611
+ </documentation>
612
+ <input message="tns:Networking.IPsecPolicy.get_ipcomp_algorithmRequest"/>
613
+ <output message="tns:Networking.IPsecPolicy.get_ipcomp_algorithmResponse"/>
614
+ </operation>
615
+ <operation name="set_ipcomp_deflate_level">
616
+ <documentation>
617
+ Sets the compression level used by the specified IPsec policies.
618
+ This option is only valid when the IPComp compression algorithm
619
+ is DEFLATE. The range is 1 to 9. A higher value causes the CPU
620
+ to spend more time looking for matches, which may result in better
621
+ compression. The default value is 1.
622
+
623
+ </documentation>
624
+ <input message="tns:Networking.IPsecPolicy.set_ipcomp_deflate_levelRequest"/>
625
+ <output message="tns:Networking.IPsecPolicy.set_ipcomp_deflate_levelResponse"/>
626
+ </operation>
627
+ <operation name="get_ipcomp_deflate_level">
628
+ <documentation>
629
+ Gets the compression level used by the specified IPsec policies.
630
+
631
+ </documentation>
632
+ <input message="tns:Networking.IPsecPolicy.get_ipcomp_deflate_levelRequest"/>
633
+ <output message="tns:Networking.IPsecPolicy.get_ipcomp_deflate_levelResponse"/>
634
+ </operation>
635
+ <operation name="set_local_address">
636
+ <documentation>
637
+ Sets IPsec local addresses for the specified IPsec policies.
638
+ For a policy that uses Tunnel mode, sets the
639
+ local endpoint IP address of the IPsec tunnel.
640
+
641
+ </documentation>
642
+ <input message="tns:Networking.IPsecPolicy.set_local_addressRequest"/>
643
+ <output message="tns:Networking.IPsecPolicy.set_local_addressResponse"/>
644
+ </operation>
645
+ <operation name="get_local_address">
646
+ <documentation>
647
+ Gets IPsec local addresses for the specified IPsec policies.
648
+
649
+ </documentation>
650
+ <input message="tns:Networking.IPsecPolicy.get_local_addressRequest"/>
651
+ <output message="tns:Networking.IPsecPolicy.get_local_addressResponse"/>
652
+ </operation>
653
+ <operation name="set_remote_address">
654
+ <documentation>
655
+ Sets IPsec remote addresses for the specified IPsec policies.
656
+ For a policy that uses Tunnel mode, sets the
657
+ remote endpoint IP address of the IPsec tunnel.
658
+
659
+ </documentation>
660
+ <input message="tns:Networking.IPsecPolicy.set_remote_addressRequest"/>
661
+ <output message="tns:Networking.IPsecPolicy.set_remote_addressResponse"/>
662
+ </operation>
663
+ <operation name="get_remote_address">
664
+ <documentation>
665
+ Gets IPsec remote addresses for the specified IPsec policies.
666
+
667
+ </documentation>
668
+ <input message="tns:Networking.IPsecPolicy.get_remote_addressRequest"/>
669
+ <output message="tns:Networking.IPsecPolicy.get_remote_addressResponse"/>
670
+ </operation>
671
+ <operation name="set_auth_algorithm">
672
+ <documentation>
673
+ Sets IPsec auth algorithms for the specified IPsec policies.
674
+
675
+ </documentation>
676
+ <input message="tns:Networking.IPsecPolicy.set_auth_algorithmRequest"/>
677
+ <output message="tns:Networking.IPsecPolicy.set_auth_algorithmResponse"/>
678
+ </operation>
679
+ <operation name="get_auth_algorithm">
680
+ <documentation>
681
+ Gets IPsec auth algorithms for the specified IPsec policies.
682
+
683
+ </documentation>
684
+ <input message="tns:Networking.IPsecPolicy.get_auth_algorithmRequest"/>
685
+ <output message="tns:Networking.IPsecPolicy.get_auth_algorithmResponse"/>
686
+ </operation>
687
+ <operation name="set_encrypt_algorithm">
688
+ <documentation>
689
+ Sets IPsec encrypt algorithms for the specified IPsec policies.
690
+
691
+ </documentation>
692
+ <input message="tns:Networking.IPsecPolicy.set_encrypt_algorithmRequest"/>
693
+ <output message="tns:Networking.IPsecPolicy.set_encrypt_algorithmResponse"/>
694
+ </operation>
695
+ <operation name="get_encrypt_algorithm">
696
+ <documentation>
697
+ Gets IPsec encrypt algorithms for the specified IPsec policies.
698
+
699
+ </documentation>
700
+ <input message="tns:Networking.IPsecPolicy.get_encrypt_algorithmRequest"/>
701
+ <output message="tns:Networking.IPsecPolicy.get_encrypt_algorithmResponse"/>
702
+ </operation>
703
+ <operation name="set_forward_secrecy">
704
+ <documentation>
705
+ Sets IPsec forward secrecies for the specified IPsec policies.
706
+
707
+ </documentation>
708
+ <input message="tns:Networking.IPsecPolicy.set_forward_secrecyRequest"/>
709
+ <output message="tns:Networking.IPsecPolicy.set_forward_secrecyResponse"/>
710
+ </operation>
711
+ <operation name="get_forward_secrecy">
712
+ <documentation>
713
+ Gets IPsec forward secrecies for the specified IPsec policies.
714
+
715
+ </documentation>
716
+ <input message="tns:Networking.IPsecPolicy.get_forward_secrecyRequest"/>
717
+ <output message="tns:Networking.IPsecPolicy.get_forward_secrecyResponse"/>
718
+ </operation>
719
+ <operation name="set_lifetime">
720
+ <documentation>
721
+ Sets IPsec lifetimes for the specified IPsec policies.
722
+ Specifies the lifetime duration for the dynamically
723
+ negotiated SAs. This attribute is valid only when
724
+ IKE is used to negotiate Security Associations.
725
+
726
+ </documentation>
727
+ <input message="tns:Networking.IPsecPolicy.set_lifetimeRequest"/>
728
+ <output message="tns:Networking.IPsecPolicy.set_lifetimeResponse"/>
729
+ </operation>
730
+ <operation name="get_lifetime">
731
+ <documentation>
732
+ Gets IPsec lifetimes for the specified IPsec policies.
733
+
734
+ </documentation>
735
+ <input message="tns:Networking.IPsecPolicy.get_lifetimeRequest"/>
736
+ <output message="tns:Networking.IPsecPolicy.get_lifetimeResponse"/>
737
+ </operation>
738
+ <operation name="set_lifetime_kilobytes">
739
+ <documentation>
740
+ Sets IPsec lifetimes for the specified IPsec policies.
741
+ Specifies the lifetime duration for the dynamically
742
+ negotiated SAs. This attribute is valid only when
743
+ IKE is used to negotiate Security Associations.
744
+
745
+ </documentation>
746
+ <input message="tns:Networking.IPsecPolicy.set_lifetime_kilobytesRequest"/>
747
+ <output message="tns:Networking.IPsecPolicy.set_lifetime_kilobytesResponse"/>
748
+ </operation>
749
+ <operation name="get_lifetime_kilobytes">
750
+ <documentation>
751
+ Gets IPsec lifetimes for the specified IPsec policies.
752
+
753
+ </documentation>
754
+ <input message="tns:Networking.IPsecPolicy.get_lifetime_kilobytesRequest"/>
755
+ <output message="tns:Networking.IPsecPolicy.get_lifetime_kilobytesResponse"/>
756
+ </operation>
757
+ <operation name="get_version">
758
+ <documentation>
759
+ Gets the version information for this interface.
760
+
761
+ </documentation>
762
+ <input message="tns:Networking.IPsecPolicy.get_versionRequest"/>
763
+ <output message="tns:Networking.IPsecPolicy.get_versionResponse"/>
764
+ </operation>
765
+ </portType>
766
+
767
+ <!-- binding -->
768
+
769
+ <binding name="Networking.IPsecPolicyBinding" type="tns:Networking.IPsecPolicyPortType">
770
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
771
+ <operation name="get_list">
772
+ <documentation>
773
+ Gets the names for all IPsec policies.
774
+
775
+ </documentation>
776
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
777
+ <input>
778
+ <soap:body
779
+ use="encoded"
780
+ namespace="urn:iControl:Networking/IPsecPolicy"
781
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
782
+ </input>
783
+ <output>
784
+ <soap:body
785
+ use="encoded"
786
+ namespace="urn:iControl:Networking/IPsecPolicy"
787
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
788
+ </output>
789
+ </operation>
790
+
791
+ <operation name="create">
792
+ <documentation>
793
+ Creates a set of IPsec policies.
794
+
795
+ </documentation>
796
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
797
+ <input>
798
+ <soap:body
799
+ use="encoded"
800
+ namespace="urn:iControl:Networking/IPsecPolicy"
801
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
802
+ </input>
803
+ <output>
804
+ <soap:body
805
+ use="encoded"
806
+ namespace="urn:iControl:Networking/IPsecPolicy"
807
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
808
+ </output>
809
+ </operation>
810
+
811
+ <operation name="delete_policy">
812
+ <documentation>
813
+ Deletes a set of IPsec policies.
814
+
815
+ </documentation>
816
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
817
+ <input>
818
+ <soap:body
819
+ use="encoded"
820
+ namespace="urn:iControl:Networking/IPsecPolicy"
821
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
822
+ </input>
823
+ <output>
824
+ <soap:body
825
+ use="encoded"
826
+ namespace="urn:iControl:Networking/IPsecPolicy"
827
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
828
+ </output>
829
+ </operation>
830
+
831
+ <operation name="delete_all_policies">
832
+ <documentation>
833
+ Deletes all IPsec policies.
834
+
835
+ </documentation>
836
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
837
+ <input>
838
+ <soap:body
839
+ use="encoded"
840
+ namespace="urn:iControl:Networking/IPsecPolicy"
841
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
842
+ </input>
843
+ <output>
844
+ <soap:body
845
+ use="encoded"
846
+ namespace="urn:iControl:Networking/IPsecPolicy"
847
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
848
+ </output>
849
+ </operation>
850
+
851
+ <operation name="set_description">
852
+ <documentation>
853
+ Sets the descriptions for the specified IPsec policies.
854
+ This is an arbitrary field which can be used for any purpose.
855
+
856
+ </documentation>
857
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
858
+ <input>
859
+ <soap:body
860
+ use="encoded"
861
+ namespace="urn:iControl:Networking/IPsecPolicy"
862
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
863
+ </input>
864
+ <output>
865
+ <soap:body
866
+ use="encoded"
867
+ namespace="urn:iControl:Networking/IPsecPolicy"
868
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
869
+ </output>
870
+ </operation>
871
+
872
+ <operation name="get_description">
873
+ <documentation>
874
+ Gets the descriptions for the specified IPsec policies.
875
+
876
+ </documentation>
877
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
878
+ <input>
879
+ <soap:body
880
+ use="encoded"
881
+ namespace="urn:iControl:Networking/IPsecPolicy"
882
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
883
+ </input>
884
+ <output>
885
+ <soap:body
886
+ use="encoded"
887
+ namespace="urn:iControl:Networking/IPsecPolicy"
888
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
889
+ </output>
890
+ </operation>
891
+
892
+ <operation name="set_mode">
893
+ <documentation>
894
+ Sets IPsec modes for the specified IPsec policies.
895
+
896
+ </documentation>
897
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
898
+ <input>
899
+ <soap:body
900
+ use="encoded"
901
+ namespace="urn:iControl:Networking/IPsecPolicy"
902
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
903
+ </input>
904
+ <output>
905
+ <soap:body
906
+ use="encoded"
907
+ namespace="urn:iControl:Networking/IPsecPolicy"
908
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
909
+ </output>
910
+ </operation>
911
+
912
+ <operation name="get_mode">
913
+ <documentation>
914
+ Gets IPsec modes for the specified IPsec policies.
915
+
916
+ </documentation>
917
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
918
+ <input>
919
+ <soap:body
920
+ use="encoded"
921
+ namespace="urn:iControl:Networking/IPsecPolicy"
922
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
923
+ </input>
924
+ <output>
925
+ <soap:body
926
+ use="encoded"
927
+ namespace="urn:iControl:Networking/IPsecPolicy"
928
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
929
+ </output>
930
+ </operation>
931
+
932
+ <operation name="set_protocol">
933
+ <documentation>
934
+ Sets IPsec protocols for the specified IPsec policies.
935
+
936
+ </documentation>
937
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
938
+ <input>
939
+ <soap:body
940
+ use="encoded"
941
+ namespace="urn:iControl:Networking/IPsecPolicy"
942
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
943
+ </input>
944
+ <output>
945
+ <soap:body
946
+ use="encoded"
947
+ namespace="urn:iControl:Networking/IPsecPolicy"
948
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
949
+ </output>
950
+ </operation>
951
+
952
+ <operation name="get_protocol">
953
+ <documentation>
954
+ Gets IPsec protocols for the specified IPsec policies.
955
+
956
+ </documentation>
957
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
958
+ <input>
959
+ <soap:body
960
+ use="encoded"
961
+ namespace="urn:iControl:Networking/IPsecPolicy"
962
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
963
+ </input>
964
+ <output>
965
+ <soap:body
966
+ use="encoded"
967
+ namespace="urn:iControl:Networking/IPsecPolicy"
968
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
969
+ </output>
970
+ </operation>
971
+
972
+ <operation name="set_ipcomp_algorithm">
973
+ <documentation>
974
+ Sets IPComp compression algorithms for the specified IPsec policies.
975
+
976
+ </documentation>
977
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
978
+ <input>
979
+ <soap:body
980
+ use="encoded"
981
+ namespace="urn:iControl:Networking/IPsecPolicy"
982
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
983
+ </input>
984
+ <output>
985
+ <soap:body
986
+ use="encoded"
987
+ namespace="urn:iControl:Networking/IPsecPolicy"
988
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
989
+ </output>
990
+ </operation>
991
+
992
+ <operation name="get_ipcomp_algorithm">
993
+ <documentation>
994
+ Gets IPComp compression algorithm for the specified IPsec policies.
995
+
996
+ </documentation>
997
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
998
+ <input>
999
+ <soap:body
1000
+ use="encoded"
1001
+ namespace="urn:iControl:Networking/IPsecPolicy"
1002
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1003
+ </input>
1004
+ <output>
1005
+ <soap:body
1006
+ use="encoded"
1007
+ namespace="urn:iControl:Networking/IPsecPolicy"
1008
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1009
+ </output>
1010
+ </operation>
1011
+
1012
+ <operation name="set_ipcomp_deflate_level">
1013
+ <documentation>
1014
+ Sets the compression level used by the specified IPsec policies.
1015
+ This option is only valid when the IPComp compression algorithm
1016
+ is DEFLATE. The range is 1 to 9. A higher value causes the CPU
1017
+ to spend more time looking for matches, which may result in better
1018
+ compression. The default value is 1.
1019
+
1020
+ </documentation>
1021
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1022
+ <input>
1023
+ <soap:body
1024
+ use="encoded"
1025
+ namespace="urn:iControl:Networking/IPsecPolicy"
1026
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1027
+ </input>
1028
+ <output>
1029
+ <soap:body
1030
+ use="encoded"
1031
+ namespace="urn:iControl:Networking/IPsecPolicy"
1032
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1033
+ </output>
1034
+ </operation>
1035
+
1036
+ <operation name="get_ipcomp_deflate_level">
1037
+ <documentation>
1038
+ Gets the compression level used by the specified IPsec policies.
1039
+
1040
+ </documentation>
1041
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1042
+ <input>
1043
+ <soap:body
1044
+ use="encoded"
1045
+ namespace="urn:iControl:Networking/IPsecPolicy"
1046
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1047
+ </input>
1048
+ <output>
1049
+ <soap:body
1050
+ use="encoded"
1051
+ namespace="urn:iControl:Networking/IPsecPolicy"
1052
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1053
+ </output>
1054
+ </operation>
1055
+
1056
+ <operation name="set_local_address">
1057
+ <documentation>
1058
+ Sets IPsec local addresses for the specified IPsec policies.
1059
+ For a policy that uses Tunnel mode, sets the
1060
+ local endpoint IP address of the IPsec tunnel.
1061
+
1062
+ </documentation>
1063
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1064
+ <input>
1065
+ <soap:body
1066
+ use="encoded"
1067
+ namespace="urn:iControl:Networking/IPsecPolicy"
1068
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1069
+ </input>
1070
+ <output>
1071
+ <soap:body
1072
+ use="encoded"
1073
+ namespace="urn:iControl:Networking/IPsecPolicy"
1074
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1075
+ </output>
1076
+ </operation>
1077
+
1078
+ <operation name="get_local_address">
1079
+ <documentation>
1080
+ Gets IPsec local addresses for the specified IPsec policies.
1081
+
1082
+ </documentation>
1083
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1084
+ <input>
1085
+ <soap:body
1086
+ use="encoded"
1087
+ namespace="urn:iControl:Networking/IPsecPolicy"
1088
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1089
+ </input>
1090
+ <output>
1091
+ <soap:body
1092
+ use="encoded"
1093
+ namespace="urn:iControl:Networking/IPsecPolicy"
1094
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1095
+ </output>
1096
+ </operation>
1097
+
1098
+ <operation name="set_remote_address">
1099
+ <documentation>
1100
+ Sets IPsec remote addresses for the specified IPsec policies.
1101
+ For a policy that uses Tunnel mode, sets the
1102
+ remote endpoint IP address of the IPsec tunnel.
1103
+
1104
+ </documentation>
1105
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1106
+ <input>
1107
+ <soap:body
1108
+ use="encoded"
1109
+ namespace="urn:iControl:Networking/IPsecPolicy"
1110
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1111
+ </input>
1112
+ <output>
1113
+ <soap:body
1114
+ use="encoded"
1115
+ namespace="urn:iControl:Networking/IPsecPolicy"
1116
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1117
+ </output>
1118
+ </operation>
1119
+
1120
+ <operation name="get_remote_address">
1121
+ <documentation>
1122
+ Gets IPsec remote addresses for the specified IPsec policies.
1123
+
1124
+ </documentation>
1125
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1126
+ <input>
1127
+ <soap:body
1128
+ use="encoded"
1129
+ namespace="urn:iControl:Networking/IPsecPolicy"
1130
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1131
+ </input>
1132
+ <output>
1133
+ <soap:body
1134
+ use="encoded"
1135
+ namespace="urn:iControl:Networking/IPsecPolicy"
1136
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1137
+ </output>
1138
+ </operation>
1139
+
1140
+ <operation name="set_auth_algorithm">
1141
+ <documentation>
1142
+ Sets IPsec auth algorithms for the specified IPsec policies.
1143
+
1144
+ </documentation>
1145
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1146
+ <input>
1147
+ <soap:body
1148
+ use="encoded"
1149
+ namespace="urn:iControl:Networking/IPsecPolicy"
1150
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1151
+ </input>
1152
+ <output>
1153
+ <soap:body
1154
+ use="encoded"
1155
+ namespace="urn:iControl:Networking/IPsecPolicy"
1156
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1157
+ </output>
1158
+ </operation>
1159
+
1160
+ <operation name="get_auth_algorithm">
1161
+ <documentation>
1162
+ Gets IPsec auth algorithms for the specified IPsec policies.
1163
+
1164
+ </documentation>
1165
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1166
+ <input>
1167
+ <soap:body
1168
+ use="encoded"
1169
+ namespace="urn:iControl:Networking/IPsecPolicy"
1170
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1171
+ </input>
1172
+ <output>
1173
+ <soap:body
1174
+ use="encoded"
1175
+ namespace="urn:iControl:Networking/IPsecPolicy"
1176
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1177
+ </output>
1178
+ </operation>
1179
+
1180
+ <operation name="set_encrypt_algorithm">
1181
+ <documentation>
1182
+ Sets IPsec encrypt algorithms for the specified IPsec policies.
1183
+
1184
+ </documentation>
1185
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1186
+ <input>
1187
+ <soap:body
1188
+ use="encoded"
1189
+ namespace="urn:iControl:Networking/IPsecPolicy"
1190
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1191
+ </input>
1192
+ <output>
1193
+ <soap:body
1194
+ use="encoded"
1195
+ namespace="urn:iControl:Networking/IPsecPolicy"
1196
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1197
+ </output>
1198
+ </operation>
1199
+
1200
+ <operation name="get_encrypt_algorithm">
1201
+ <documentation>
1202
+ Gets IPsec encrypt algorithms for the specified IPsec policies.
1203
+
1204
+ </documentation>
1205
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1206
+ <input>
1207
+ <soap:body
1208
+ use="encoded"
1209
+ namespace="urn:iControl:Networking/IPsecPolicy"
1210
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1211
+ </input>
1212
+ <output>
1213
+ <soap:body
1214
+ use="encoded"
1215
+ namespace="urn:iControl:Networking/IPsecPolicy"
1216
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1217
+ </output>
1218
+ </operation>
1219
+
1220
+ <operation name="set_forward_secrecy">
1221
+ <documentation>
1222
+ Sets IPsec forward secrecies for the specified IPsec policies.
1223
+
1224
+ </documentation>
1225
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1226
+ <input>
1227
+ <soap:body
1228
+ use="encoded"
1229
+ namespace="urn:iControl:Networking/IPsecPolicy"
1230
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1231
+ </input>
1232
+ <output>
1233
+ <soap:body
1234
+ use="encoded"
1235
+ namespace="urn:iControl:Networking/IPsecPolicy"
1236
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1237
+ </output>
1238
+ </operation>
1239
+
1240
+ <operation name="get_forward_secrecy">
1241
+ <documentation>
1242
+ Gets IPsec forward secrecies for the specified IPsec policies.
1243
+
1244
+ </documentation>
1245
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1246
+ <input>
1247
+ <soap:body
1248
+ use="encoded"
1249
+ namespace="urn:iControl:Networking/IPsecPolicy"
1250
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1251
+ </input>
1252
+ <output>
1253
+ <soap:body
1254
+ use="encoded"
1255
+ namespace="urn:iControl:Networking/IPsecPolicy"
1256
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1257
+ </output>
1258
+ </operation>
1259
+
1260
+ <operation name="set_lifetime">
1261
+ <documentation>
1262
+ Sets IPsec lifetimes for the specified IPsec policies.
1263
+ Specifies the lifetime duration for the dynamically
1264
+ negotiated SAs. This attribute is valid only when
1265
+ IKE is used to negotiate Security Associations.
1266
+
1267
+ </documentation>
1268
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1269
+ <input>
1270
+ <soap:body
1271
+ use="encoded"
1272
+ namespace="urn:iControl:Networking/IPsecPolicy"
1273
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1274
+ </input>
1275
+ <output>
1276
+ <soap:body
1277
+ use="encoded"
1278
+ namespace="urn:iControl:Networking/IPsecPolicy"
1279
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1280
+ </output>
1281
+ </operation>
1282
+
1283
+ <operation name="get_lifetime">
1284
+ <documentation>
1285
+ Gets IPsec lifetimes for the specified IPsec policies.
1286
+
1287
+ </documentation>
1288
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1289
+ <input>
1290
+ <soap:body
1291
+ use="encoded"
1292
+ namespace="urn:iControl:Networking/IPsecPolicy"
1293
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1294
+ </input>
1295
+ <output>
1296
+ <soap:body
1297
+ use="encoded"
1298
+ namespace="urn:iControl:Networking/IPsecPolicy"
1299
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1300
+ </output>
1301
+ </operation>
1302
+
1303
+ <operation name="set_lifetime_kilobytes">
1304
+ <documentation>
1305
+ Sets IPsec lifetimes for the specified IPsec policies.
1306
+ Specifies the lifetime duration for the dynamically
1307
+ negotiated SAs. This attribute is valid only when
1308
+ IKE is used to negotiate Security Associations.
1309
+
1310
+ </documentation>
1311
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1312
+ <input>
1313
+ <soap:body
1314
+ use="encoded"
1315
+ namespace="urn:iControl:Networking/IPsecPolicy"
1316
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1317
+ </input>
1318
+ <output>
1319
+ <soap:body
1320
+ use="encoded"
1321
+ namespace="urn:iControl:Networking/IPsecPolicy"
1322
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1323
+ </output>
1324
+ </operation>
1325
+
1326
+ <operation name="get_lifetime_kilobytes">
1327
+ <documentation>
1328
+ Gets IPsec lifetimes for the specified IPsec policies.
1329
+
1330
+ </documentation>
1331
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1332
+ <input>
1333
+ <soap:body
1334
+ use="encoded"
1335
+ namespace="urn:iControl:Networking/IPsecPolicy"
1336
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1337
+ </input>
1338
+ <output>
1339
+ <soap:body
1340
+ use="encoded"
1341
+ namespace="urn:iControl:Networking/IPsecPolicy"
1342
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1343
+ </output>
1344
+ </operation>
1345
+
1346
+ <operation name="get_version">
1347
+ <documentation>
1348
+ Gets the version information for this interface.
1349
+
1350
+ </documentation>
1351
+ <soap:operation soapAction="urn:iControl:Networking/IPsecPolicy"/>
1352
+ <input>
1353
+ <soap:body
1354
+ use="encoded"
1355
+ namespace="urn:iControl:Networking/IPsecPolicy"
1356
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1357
+ </input>
1358
+ <output>
1359
+ <soap:body
1360
+ use="encoded"
1361
+ namespace="urn:iControl:Networking/IPsecPolicy"
1362
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1363
+ </output>
1364
+ </operation>
1365
+ </binding>
1366
+
1367
+ <!-- service -->
1368
+
1369
+ <service name="Networking.IPsecPolicy">
1370
+ <documentation>
1371
+ This interface configures the IPsec Protocol suite for securing
1372
+ Internet Protocol (IP) communications by authenticating and
1373
+ encrypting each IP packet of a communication session.
1374
+
1375
+ </documentation>
1376
+ <port name="Networking.IPsecPolicyPort" binding="tns:Networking.IPsecPolicyBinding">
1377
+ <soap:address location="https://url_to_service"/>
1378
+ </port>
1379
+ </service>
1380
+ </definitions>