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,695 @@
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.ProfileIPIP"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:complexType name="Common.ProfileEnabledState">
25
+ <xsd:sequence>
26
+ <xsd:element name="value" type="tns:Common.EnabledState"/>
27
+ <xsd:element name="default_flag" type="xsd:boolean"/>
28
+ </xsd:sequence>
29
+ </xsd:complexType>
30
+ <xsd:complexType name="Networking.ProfileTunnelProtocolSequence">
31
+ <xsd:complexContent>
32
+ <xsd:restriction base='SOAP-ENC:Array'>
33
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.ProfileTunnelProtocol[]'/>
34
+ </xsd:restriction>
35
+ </xsd:complexContent>
36
+ </xsd:complexType>
37
+ <xsd:simpleType name="Common.EnabledState">
38
+ <xsd:restriction base="xsd:string">
39
+ <xsd:enumeration value="STATE_DISABLED">
40
+ <xsd:annotation>
41
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
42
+ </xsd:annotation>
43
+ </xsd:enumeration>
44
+ <xsd:enumeration value="STATE_ENABLED">
45
+ <xsd:annotation>
46
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
47
+ </xsd:annotation>
48
+ </xsd:enumeration>
49
+ </xsd:restriction>
50
+ </xsd:simpleType>
51
+ <xsd:complexType name="Common.StringSequence">
52
+ <xsd:complexContent>
53
+ <xsd:restriction base='SOAP-ENC:Array'>
54
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
55
+ </xsd:restriction>
56
+ </xsd:complexContent>
57
+ </xsd:complexType>
58
+ <xsd:complexType name="Networking.ProfileTunnelProtocol">
59
+ <xsd:sequence>
60
+ <xsd:element name="value" type="tns:Networking.TunnelProtocol"/>
61
+ <xsd:element name="default_flag" type="xsd:boolean"/>
62
+ </xsd:sequence>
63
+ </xsd:complexType>
64
+ <xsd:complexType name="Common.BooleanSequence">
65
+ <xsd:complexContent>
66
+ <xsd:restriction base='SOAP-ENC:Array'>
67
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:boolean[]'/>
68
+ </xsd:restriction>
69
+ </xsd:complexContent>
70
+ </xsd:complexType>
71
+ <xsd:complexType name="Common.ProfileEnabledStateSequence">
72
+ <xsd:complexContent>
73
+ <xsd:restriction base='SOAP-ENC:Array'>
74
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ProfileEnabledState[]'/>
75
+ </xsd:restriction>
76
+ </xsd:complexContent>
77
+ </xsd:complexType>
78
+ <xsd:simpleType name="Networking.TunnelProtocol">
79
+ <xsd:restriction base="xsd:string">
80
+ <xsd:enumeration value="TUNNEL_PROTOCOL_UNKNOWN">
81
+ <xsd:annotation>
82
+ <xsd:documentation>TUNNEL_PROTOCOL_UNKNOWN</xsd:documentation>
83
+ </xsd:annotation>
84
+ </xsd:enumeration>
85
+ <xsd:enumeration value="TUNNEL_PROTOCOL_IPV4">
86
+ <xsd:annotation>
87
+ <xsd:documentation>TUNNEL_PROTOCOL_IPV4</xsd:documentation>
88
+ </xsd:annotation>
89
+ </xsd:enumeration>
90
+ <xsd:enumeration value="TUNNEL_PROTOCOL_IPV6">
91
+ <xsd:annotation>
92
+ <xsd:documentation>TUNNEL_PROTOCOL_IPV6</xsd:documentation>
93
+ </xsd:annotation>
94
+ </xsd:enumeration>
95
+ </xsd:restriction>
96
+ </xsd:simpleType>
97
+ </xsd:schema>
98
+ </types>
99
+
100
+ <!-- message -->
101
+
102
+ <message name="Networking.ProfileIPIP.get_listRequest">
103
+ </message>
104
+ <message name="Networking.ProfileIPIP.get_listResponse">
105
+ <part name="return" type="tns:Common.StringSequence"/>
106
+ </message>
107
+
108
+ <message name="Networking.ProfileIPIP.createRequest">
109
+ <part name="profile_names" type="tns:Common.StringSequence"/>
110
+ </message>
111
+ <message name="Networking.ProfileIPIP.createResponse">
112
+ </message>
113
+
114
+ <message name="Networking.ProfileIPIP.delete_profileRequest">
115
+ <part name="profile_names" type="tns:Common.StringSequence"/>
116
+ </message>
117
+ <message name="Networking.ProfileIPIP.delete_profileResponse">
118
+ </message>
119
+
120
+ <message name="Networking.ProfileIPIP.delete_all_profilesRequest">
121
+ </message>
122
+ <message name="Networking.ProfileIPIP.delete_all_profilesResponse">
123
+ </message>
124
+
125
+ <message name="Networking.ProfileIPIP.is_base_profileRequest">
126
+ <part name="profile_names" type="tns:Common.StringSequence"/>
127
+ </message>
128
+ <message name="Networking.ProfileIPIP.is_base_profileResponse">
129
+ <part name="return" type="tns:Common.BooleanSequence"/>
130
+ </message>
131
+
132
+ <message name="Networking.ProfileIPIP.is_system_profileRequest">
133
+ <part name="profile_names" type="tns:Common.StringSequence"/>
134
+ </message>
135
+ <message name="Networking.ProfileIPIP.is_system_profileResponse">
136
+ <part name="return" type="tns:Common.BooleanSequence"/>
137
+ </message>
138
+
139
+ <message name="Networking.ProfileIPIP.set_default_profileRequest">
140
+ <part name="profile_names" type="tns:Common.StringSequence"/>
141
+ <part name="defaults" type="tns:Common.StringSequence"/>
142
+ </message>
143
+ <message name="Networking.ProfileIPIP.set_default_profileResponse">
144
+ </message>
145
+
146
+ <message name="Networking.ProfileIPIP.get_default_profileRequest">
147
+ <part name="profile_names" type="tns:Common.StringSequence"/>
148
+ </message>
149
+ <message name="Networking.ProfileIPIP.get_default_profileResponse">
150
+ <part name="return" type="tns:Common.StringSequence"/>
151
+ </message>
152
+
153
+ <message name="Networking.ProfileIPIP.set_descriptionRequest">
154
+ <part name="profile_names" type="tns:Common.StringSequence"/>
155
+ <part name="descriptions" type="tns:Common.StringSequence"/>
156
+ </message>
157
+ <message name="Networking.ProfileIPIP.set_descriptionResponse">
158
+ </message>
159
+
160
+ <message name="Networking.ProfileIPIP.get_descriptionRequest">
161
+ <part name="profile_names" type="tns:Common.StringSequence"/>
162
+ </message>
163
+ <message name="Networking.ProfileIPIP.get_descriptionResponse">
164
+ <part name="return" type="tns:Common.StringSequence"/>
165
+ </message>
166
+
167
+ <message name="Networking.ProfileIPIP.set_protocolRequest">
168
+ <part name="profile_names" type="tns:Common.StringSequence"/>
169
+ <part name="protocols" type="tns:Networking.ProfileTunnelProtocolSequence"/>
170
+ </message>
171
+ <message name="Networking.ProfileIPIP.set_protocolResponse">
172
+ </message>
173
+
174
+ <message name="Networking.ProfileIPIP.get_protocolRequest">
175
+ <part name="profile_names" type="tns:Common.StringSequence"/>
176
+ </message>
177
+ <message name="Networking.ProfileIPIP.get_protocolResponse">
178
+ <part name="return" type="tns:Networking.ProfileTunnelProtocolSequence"/>
179
+ </message>
180
+
181
+ <message name="Networking.ProfileIPIP.set_ds_lite_stateRequest">
182
+ <part name="profile_names" type="tns:Common.StringSequence"/>
183
+ <part name="states" type="tns:Common.ProfileEnabledStateSequence"/>
184
+ </message>
185
+ <message name="Networking.ProfileIPIP.set_ds_lite_stateResponse">
186
+ </message>
187
+
188
+ <message name="Networking.ProfileIPIP.get_ds_lite_stateRequest">
189
+ <part name="profile_names" type="tns:Common.StringSequence"/>
190
+ </message>
191
+ <message name="Networking.ProfileIPIP.get_ds_lite_stateResponse">
192
+ <part name="return" type="tns:Common.ProfileEnabledStateSequence"/>
193
+ </message>
194
+
195
+ <message name="Networking.ProfileIPIP.get_versionRequest">
196
+ </message>
197
+ <message name="Networking.ProfileIPIP.get_versionResponse">
198
+ <part name="return" type="xsd:string"/>
199
+ </message>
200
+
201
+ <!-- portType -->
202
+
203
+ <portType name="Networking.ProfileIPIPPortType">
204
+ <operation name="get_list">
205
+ <documentation>
206
+ Gets the names for all IP-IP tunnel profiles.
207
+
208
+ </documentation>
209
+ <input message="tns:Networking.ProfileIPIP.get_listRequest"/>
210
+ <output message="tns:Networking.ProfileIPIP.get_listResponse"/>
211
+ </operation>
212
+ <operation name="create">
213
+ <documentation>
214
+ Creates a set of IP-IP tunnel profiles.
215
+
216
+ </documentation>
217
+ <input message="tns:Networking.ProfileIPIP.createRequest"/>
218
+ <output message="tns:Networking.ProfileIPIP.createResponse"/>
219
+ </operation>
220
+ <operation name="delete_profile">
221
+ <documentation>
222
+ Deletes a set of IP-IP tunnel profiles.
223
+
224
+ </documentation>
225
+ <input message="tns:Networking.ProfileIPIP.delete_profileRequest"/>
226
+ <output message="tns:Networking.ProfileIPIP.delete_profileResponse"/>
227
+ </operation>
228
+ <operation name="delete_all_profiles">
229
+ <documentation>
230
+ Deletes all non-system IP-IP tunnel profiles.
231
+
232
+ </documentation>
233
+ <input message="tns:Networking.ProfileIPIP.delete_all_profilesRequest"/>
234
+ <output message="tns:Networking.ProfileIPIP.delete_all_profilesResponse"/>
235
+ </operation>
236
+ <operation name="is_base_profile">
237
+ <documentation>
238
+ Determines whether the specified IP-IP tunnel profiles are base
239
+ profiles. A base profile sits at the base of the profile's
240
+ inheritance tree, supplying the defaults for every profile derived
241
+ from it. (See also is_system_profile).
242
+
243
+ </documentation>
244
+ <input message="tns:Networking.ProfileIPIP.is_base_profileRequest"/>
245
+ <output message="tns:Networking.ProfileIPIP.is_base_profileResponse"/>
246
+ </operation>
247
+ <operation name="is_system_profile">
248
+ <documentation>
249
+ Determines whether the specified IP-IP tunnel profiles are system
250
+ profiles. A system profile is a profile pre-configured on the
251
+ system, ready for use. Non-system profiles are profiles created or
252
+ modified by a user. Note that if a system profile is modified, it
253
+ is no longer considered a system profile. (See also
254
+ is_base_profile).
255
+
256
+ </documentation>
257
+ <input message="tns:Networking.ProfileIPIP.is_system_profileRequest"/>
258
+ <output message="tns:Networking.ProfileIPIP.is_system_profileResponse"/>
259
+ </operation>
260
+ <operation name="set_default_profile">
261
+ <documentation>
262
+ Sets the existing IP-IP tunnel profile from which this set of IP-IP
263
+ tunnel profiles inherits their unspecified attribute values.
264
+
265
+ </documentation>
266
+ <input message="tns:Networking.ProfileIPIP.set_default_profileRequest"/>
267
+ <output message="tns:Networking.ProfileIPIP.set_default_profileResponse"/>
268
+ </operation>
269
+ <operation name="get_default_profile">
270
+ <documentation>
271
+ Gets the existing IP-IP tunnel profile from which this set of IP-IP
272
+ profiles inherits its unspecified attribute values.
273
+
274
+ </documentation>
275
+ <input message="tns:Networking.ProfileIPIP.get_default_profileRequest"/>
276
+ <output message="tns:Networking.ProfileIPIP.get_default_profileResponse"/>
277
+ </operation>
278
+ <operation name="set_description">
279
+ <documentation>
280
+ Sets the description for a set of IP-IP tunnel profiles.
281
+
282
+ This is an arbitrary field which can be used for any purpose.
283
+
284
+ </documentation>
285
+ <input message="tns:Networking.ProfileIPIP.set_descriptionRequest"/>
286
+ <output message="tns:Networking.ProfileIPIP.set_descriptionResponse"/>
287
+ </operation>
288
+ <operation name="get_description">
289
+ <documentation>
290
+ Gets the descriptions for a set of IP-IP tunnel profiles.
291
+
292
+ </documentation>
293
+ <input message="tns:Networking.ProfileIPIP.get_descriptionRequest"/>
294
+ <output message="tns:Networking.ProfileIPIP.get_descriptionResponse"/>
295
+ </operation>
296
+ <operation name="set_protocol">
297
+ <documentation>
298
+ Sets the next header IP protocols for a set of IP-IP tunnel
299
+ profiles. The protocol is for the inner header in an IPIP
300
+ packet. For example, for an IP6-in-IP4(6in4) packet, the inner header
301
+ protocol would be TUNNEL_PROTOCOL_IPV6 for protocol IPv6.
302
+
303
+ </documentation>
304
+ <input message="tns:Networking.ProfileIPIP.set_protocolRequest"/>
305
+ <output message="tns:Networking.ProfileIPIP.set_protocolResponse"/>
306
+ </operation>
307
+ <operation name="get_protocol">
308
+ <documentation>
309
+ Gets the next header IP protocols for a set of IP-IP tunnel
310
+ profiles.
311
+
312
+ </documentation>
313
+ <input message="tns:Networking.ProfileIPIP.get_protocolRequest"/>
314
+ <output message="tns:Networking.ProfileIPIP.get_protocolResponse"/>
315
+ </operation>
316
+ <operation name="set_ds_lite_state">
317
+ <documentation>
318
+ Sets the DS-Lite state for a set of IP-IP tunnel
319
+ profiles.
320
+
321
+ Specifies whether the profile is used for a DS-lite(Dual Stack -
322
+ lite) deployment.
323
+ When enabled, an augmented flow lookup is made using the IPv6
324
+ address in the outer header in addition to the inner header
325
+ addresses for packets coming over this tunnel. The default value is
326
+ disabled.
327
+
328
+ </documentation>
329
+ <input message="tns:Networking.ProfileIPIP.set_ds_lite_stateRequest"/>
330
+ <output message="tns:Networking.ProfileIPIP.set_ds_lite_stateResponse"/>
331
+ </operation>
332
+ <operation name="get_ds_lite_state">
333
+ <documentation>
334
+ Gets the DS-Lite states for a set of IP-IP tunnel
335
+ profiles.
336
+
337
+ </documentation>
338
+ <input message="tns:Networking.ProfileIPIP.get_ds_lite_stateRequest"/>
339
+ <output message="tns:Networking.ProfileIPIP.get_ds_lite_stateResponse"/>
340
+ </operation>
341
+ <operation name="get_version">
342
+ <documentation>
343
+ Gets the version information for this interface.
344
+
345
+ </documentation>
346
+ <input message="tns:Networking.ProfileIPIP.get_versionRequest"/>
347
+ <output message="tns:Networking.ProfileIPIP.get_versionResponse"/>
348
+ </operation>
349
+ </portType>
350
+
351
+ <!-- binding -->
352
+
353
+ <binding name="Networking.ProfileIPIPBinding" type="tns:Networking.ProfileIPIPPortType">
354
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
355
+ <operation name="get_list">
356
+ <documentation>
357
+ Gets the names for all IP-IP tunnel profiles.
358
+
359
+ </documentation>
360
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
361
+ <input>
362
+ <soap:body
363
+ use="encoded"
364
+ namespace="urn:iControl:Networking/ProfileIPIP"
365
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
366
+ </input>
367
+ <output>
368
+ <soap:body
369
+ use="encoded"
370
+ namespace="urn:iControl:Networking/ProfileIPIP"
371
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
372
+ </output>
373
+ </operation>
374
+
375
+ <operation name="create">
376
+ <documentation>
377
+ Creates a set of IP-IP tunnel profiles.
378
+
379
+ </documentation>
380
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
381
+ <input>
382
+ <soap:body
383
+ use="encoded"
384
+ namespace="urn:iControl:Networking/ProfileIPIP"
385
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
386
+ </input>
387
+ <output>
388
+ <soap:body
389
+ use="encoded"
390
+ namespace="urn:iControl:Networking/ProfileIPIP"
391
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
392
+ </output>
393
+ </operation>
394
+
395
+ <operation name="delete_profile">
396
+ <documentation>
397
+ Deletes a set of IP-IP tunnel profiles.
398
+
399
+ </documentation>
400
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
401
+ <input>
402
+ <soap:body
403
+ use="encoded"
404
+ namespace="urn:iControl:Networking/ProfileIPIP"
405
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
406
+ </input>
407
+ <output>
408
+ <soap:body
409
+ use="encoded"
410
+ namespace="urn:iControl:Networking/ProfileIPIP"
411
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
412
+ </output>
413
+ </operation>
414
+
415
+ <operation name="delete_all_profiles">
416
+ <documentation>
417
+ Deletes all non-system IP-IP tunnel profiles.
418
+
419
+ </documentation>
420
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
421
+ <input>
422
+ <soap:body
423
+ use="encoded"
424
+ namespace="urn:iControl:Networking/ProfileIPIP"
425
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
426
+ </input>
427
+ <output>
428
+ <soap:body
429
+ use="encoded"
430
+ namespace="urn:iControl:Networking/ProfileIPIP"
431
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
432
+ </output>
433
+ </operation>
434
+
435
+ <operation name="is_base_profile">
436
+ <documentation>
437
+ Determines whether the specified IP-IP tunnel profiles are base
438
+ profiles. A base profile sits at the base of the profile's
439
+ inheritance tree, supplying the defaults for every profile derived
440
+ from it. (See also is_system_profile).
441
+
442
+ </documentation>
443
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
444
+ <input>
445
+ <soap:body
446
+ use="encoded"
447
+ namespace="urn:iControl:Networking/ProfileIPIP"
448
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
449
+ </input>
450
+ <output>
451
+ <soap:body
452
+ use="encoded"
453
+ namespace="urn:iControl:Networking/ProfileIPIP"
454
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
455
+ </output>
456
+ </operation>
457
+
458
+ <operation name="is_system_profile">
459
+ <documentation>
460
+ Determines whether the specified IP-IP tunnel profiles are system
461
+ profiles. A system profile is a profile pre-configured on the
462
+ system, ready for use. Non-system profiles are profiles created or
463
+ modified by a user. Note that if a system profile is modified, it
464
+ is no longer considered a system profile. (See also
465
+ is_base_profile).
466
+
467
+ </documentation>
468
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
469
+ <input>
470
+ <soap:body
471
+ use="encoded"
472
+ namespace="urn:iControl:Networking/ProfileIPIP"
473
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
474
+ </input>
475
+ <output>
476
+ <soap:body
477
+ use="encoded"
478
+ namespace="urn:iControl:Networking/ProfileIPIP"
479
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
480
+ </output>
481
+ </operation>
482
+
483
+ <operation name="set_default_profile">
484
+ <documentation>
485
+ Sets the existing IP-IP tunnel profile from which this set of IP-IP
486
+ tunnel profiles inherits their unspecified attribute values.
487
+
488
+ </documentation>
489
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
490
+ <input>
491
+ <soap:body
492
+ use="encoded"
493
+ namespace="urn:iControl:Networking/ProfileIPIP"
494
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
495
+ </input>
496
+ <output>
497
+ <soap:body
498
+ use="encoded"
499
+ namespace="urn:iControl:Networking/ProfileIPIP"
500
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
501
+ </output>
502
+ </operation>
503
+
504
+ <operation name="get_default_profile">
505
+ <documentation>
506
+ Gets the existing IP-IP tunnel profile from which this set of IP-IP
507
+ profiles inherits its unspecified attribute values.
508
+
509
+ </documentation>
510
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
511
+ <input>
512
+ <soap:body
513
+ use="encoded"
514
+ namespace="urn:iControl:Networking/ProfileIPIP"
515
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
516
+ </input>
517
+ <output>
518
+ <soap:body
519
+ use="encoded"
520
+ namespace="urn:iControl:Networking/ProfileIPIP"
521
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
522
+ </output>
523
+ </operation>
524
+
525
+ <operation name="set_description">
526
+ <documentation>
527
+ Sets the description for a set of IP-IP tunnel profiles.
528
+
529
+ This is an arbitrary field which can be used for any purpose.
530
+
531
+ </documentation>
532
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
533
+ <input>
534
+ <soap:body
535
+ use="encoded"
536
+ namespace="urn:iControl:Networking/ProfileIPIP"
537
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
538
+ </input>
539
+ <output>
540
+ <soap:body
541
+ use="encoded"
542
+ namespace="urn:iControl:Networking/ProfileIPIP"
543
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
544
+ </output>
545
+ </operation>
546
+
547
+ <operation name="get_description">
548
+ <documentation>
549
+ Gets the descriptions for a set of IP-IP tunnel profiles.
550
+
551
+ </documentation>
552
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
553
+ <input>
554
+ <soap:body
555
+ use="encoded"
556
+ namespace="urn:iControl:Networking/ProfileIPIP"
557
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
558
+ </input>
559
+ <output>
560
+ <soap:body
561
+ use="encoded"
562
+ namespace="urn:iControl:Networking/ProfileIPIP"
563
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
564
+ </output>
565
+ </operation>
566
+
567
+ <operation name="set_protocol">
568
+ <documentation>
569
+ Sets the next header IP protocols for a set of IP-IP tunnel
570
+ profiles. The protocol is for the inner header in an IPIP
571
+ packet. For example, for an IP6-in-IP4(6in4) packet, the inner header
572
+ protocol would be TUNNEL_PROTOCOL_IPV6 for protocol IPv6.
573
+
574
+ </documentation>
575
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
576
+ <input>
577
+ <soap:body
578
+ use="encoded"
579
+ namespace="urn:iControl:Networking/ProfileIPIP"
580
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
581
+ </input>
582
+ <output>
583
+ <soap:body
584
+ use="encoded"
585
+ namespace="urn:iControl:Networking/ProfileIPIP"
586
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
587
+ </output>
588
+ </operation>
589
+
590
+ <operation name="get_protocol">
591
+ <documentation>
592
+ Gets the next header IP protocols for a set of IP-IP tunnel
593
+ profiles.
594
+
595
+ </documentation>
596
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
597
+ <input>
598
+ <soap:body
599
+ use="encoded"
600
+ namespace="urn:iControl:Networking/ProfileIPIP"
601
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
602
+ </input>
603
+ <output>
604
+ <soap:body
605
+ use="encoded"
606
+ namespace="urn:iControl:Networking/ProfileIPIP"
607
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
608
+ </output>
609
+ </operation>
610
+
611
+ <operation name="set_ds_lite_state">
612
+ <documentation>
613
+ Sets the DS-Lite state for a set of IP-IP tunnel
614
+ profiles.
615
+
616
+ Specifies whether the profile is used for a DS-lite(Dual Stack -
617
+ lite) deployment.
618
+ When enabled, an augmented flow lookup is made using the IPv6
619
+ address in the outer header in addition to the inner header
620
+ addresses for packets coming over this tunnel. The default value is
621
+ disabled.
622
+
623
+ </documentation>
624
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
625
+ <input>
626
+ <soap:body
627
+ use="encoded"
628
+ namespace="urn:iControl:Networking/ProfileIPIP"
629
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
630
+ </input>
631
+ <output>
632
+ <soap:body
633
+ use="encoded"
634
+ namespace="urn:iControl:Networking/ProfileIPIP"
635
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
636
+ </output>
637
+ </operation>
638
+
639
+ <operation name="get_ds_lite_state">
640
+ <documentation>
641
+ Gets the DS-Lite states for a set of IP-IP tunnel
642
+ profiles.
643
+
644
+ </documentation>
645
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
646
+ <input>
647
+ <soap:body
648
+ use="encoded"
649
+ namespace="urn:iControl:Networking/ProfileIPIP"
650
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
651
+ </input>
652
+ <output>
653
+ <soap:body
654
+ use="encoded"
655
+ namespace="urn:iControl:Networking/ProfileIPIP"
656
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
657
+ </output>
658
+ </operation>
659
+
660
+ <operation name="get_version">
661
+ <documentation>
662
+ Gets the version information for this interface.
663
+
664
+ </documentation>
665
+ <soap:operation soapAction="urn:iControl:Networking/ProfileIPIP"/>
666
+ <input>
667
+ <soap:body
668
+ use="encoded"
669
+ namespace="urn:iControl:Networking/ProfileIPIP"
670
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
671
+ </input>
672
+ <output>
673
+ <soap:body
674
+ use="encoded"
675
+ namespace="urn:iControl:Networking/ProfileIPIP"
676
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
677
+ </output>
678
+ </operation>
679
+ </binding>
680
+
681
+ <!-- service -->
682
+
683
+ <service name="Networking.ProfileIPIP">
684
+ <documentation>
685
+ The ProfileIPIP interface enables you to manipulate an IP-IP tunnel
686
+ profile to configure the IP-within-IP tunneling protocol. The
687
+ IP-within-IP protocol (RFC2003) specifies how to encapsulate an IP
688
+ packet within another IP packet.
689
+
690
+ </documentation>
691
+ <port name="Networking.ProfileIPIPPort" binding="tns:Networking.ProfileIPIPBinding">
692
+ <soap:address location="https://url_to_service"/>
693
+ </port>
694
+ </service>
695
+ </definitions>