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,841 @@
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.ProfileWCCPGRE"
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.ProfileWCCPGRE.ProfileWCCPGREForwarding">
31
+ <xsd:sequence>
32
+ <xsd:element name="value" type="tns:Networking.ProfileWCCPGRE.WCCPGREForwarding"/>
33
+ <xsd:element name="default_flag" type="xsd:boolean"/>
34
+ </xsd:sequence>
35
+ </xsd:complexType>
36
+ <xsd:simpleType name="Common.EnabledState">
37
+ <xsd:restriction base="xsd:string">
38
+ <xsd:enumeration value="STATE_DISABLED">
39
+ <xsd:annotation>
40
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
41
+ </xsd:annotation>
42
+ </xsd:enumeration>
43
+ <xsd:enumeration value="STATE_ENABLED">
44
+ <xsd:annotation>
45
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
46
+ </xsd:annotation>
47
+ </xsd:enumeration>
48
+ </xsd:restriction>
49
+ </xsd:simpleType>
50
+ <xsd:complexType name="Common.StringSequence">
51
+ <xsd:complexContent>
52
+ <xsd:restriction base='SOAP-ENC:Array'>
53
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
54
+ </xsd:restriction>
55
+ </xsd:complexContent>
56
+ </xsd:complexType>
57
+ <xsd:complexType name="Common.BooleanSequence">
58
+ <xsd:complexContent>
59
+ <xsd:restriction base='SOAP-ENC:Array'>
60
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:boolean[]'/>
61
+ </xsd:restriction>
62
+ </xsd:complexContent>
63
+ </xsd:complexType>
64
+ <xsd:complexType name="Common.ProfileULongSequence">
65
+ <xsd:complexContent>
66
+ <xsd:restriction base='SOAP-ENC:Array'>
67
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ProfileULong[]'/>
68
+ </xsd:restriction>
69
+ </xsd:complexContent>
70
+ </xsd:complexType>
71
+ <xsd:complexType name="Networking.ProfileWCCPGRE.ProfileWCCPGREForwardingSequence">
72
+ <xsd:complexContent>
73
+ <xsd:restriction base='SOAP-ENC:Array'>
74
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.ProfileWCCPGRE.ProfileWCCPGREForwarding[]'/>
75
+ </xsd:restriction>
76
+ </xsd:complexContent>
77
+ </xsd:complexType>
78
+ <xsd:simpleType name="Networking.ProfileWCCPGRE.WCCPGREForwarding">
79
+ <xsd:restriction base="xsd:string">
80
+ <xsd:enumeration value="WCCP_GRE_FORWARD_UNKNOWN">
81
+ <xsd:annotation>
82
+ <xsd:documentation>WCCP_GRE_FORWARD_UNKNOWN</xsd:documentation>
83
+ </xsd:annotation>
84
+ </xsd:enumeration>
85
+ <xsd:enumeration value="WCCP_GRE_FORWARD_NORMAL">
86
+ <xsd:annotation>
87
+ <xsd:documentation>WCCP_GRE_FORWARD_NORMAL</xsd:documentation>
88
+ </xsd:annotation>
89
+ </xsd:enumeration>
90
+ <xsd:enumeration value="WCCP_GRE_FORWARD_LASTHOP">
91
+ <xsd:annotation>
92
+ <xsd:documentation>WCCP_GRE_FORWARD_LASTHOP</xsd:documentation>
93
+ </xsd:annotation>
94
+ </xsd:enumeration>
95
+ </xsd:restriction>
96
+ </xsd:simpleType>
97
+ <xsd:complexType name="Common.ProfileULong">
98
+ <xsd:sequence>
99
+ <xsd:element name="value" type="xsd:long"/>
100
+ <xsd:element name="default_flag" type="xsd:boolean"/>
101
+ </xsd:sequence>
102
+ </xsd:complexType>
103
+ <xsd:complexType name="Common.ProfileEnabledStateSequence">
104
+ <xsd:complexContent>
105
+ <xsd:restriction base='SOAP-ENC:Array'>
106
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ProfileEnabledState[]'/>
107
+ </xsd:restriction>
108
+ </xsd:complexContent>
109
+ </xsd:complexType>
110
+ </xsd:schema>
111
+ </types>
112
+
113
+ <!-- message -->
114
+
115
+ <message name="Networking.ProfileWCCPGRE.get_listRequest">
116
+ </message>
117
+ <message name="Networking.ProfileWCCPGRE.get_listResponse">
118
+ <part name="return" type="tns:Common.StringSequence"/>
119
+ </message>
120
+
121
+ <message name="Networking.ProfileWCCPGRE.createRequest">
122
+ <part name="profile_names" type="tns:Common.StringSequence"/>
123
+ </message>
124
+ <message name="Networking.ProfileWCCPGRE.createResponse">
125
+ </message>
126
+
127
+ <message name="Networking.ProfileWCCPGRE.delete_profileRequest">
128
+ <part name="profile_names" type="tns:Common.StringSequence"/>
129
+ </message>
130
+ <message name="Networking.ProfileWCCPGRE.delete_profileResponse">
131
+ </message>
132
+
133
+ <message name="Networking.ProfileWCCPGRE.delete_all_profilesRequest">
134
+ </message>
135
+ <message name="Networking.ProfileWCCPGRE.delete_all_profilesResponse">
136
+ </message>
137
+
138
+ <message name="Networking.ProfileWCCPGRE.is_base_profileRequest">
139
+ <part name="profile_names" type="tns:Common.StringSequence"/>
140
+ </message>
141
+ <message name="Networking.ProfileWCCPGRE.is_base_profileResponse">
142
+ <part name="return" type="tns:Common.BooleanSequence"/>
143
+ </message>
144
+
145
+ <message name="Networking.ProfileWCCPGRE.is_system_profileRequest">
146
+ <part name="profile_names" type="tns:Common.StringSequence"/>
147
+ </message>
148
+ <message name="Networking.ProfileWCCPGRE.is_system_profileResponse">
149
+ <part name="return" type="tns:Common.BooleanSequence"/>
150
+ </message>
151
+
152
+ <message name="Networking.ProfileWCCPGRE.set_default_profileRequest">
153
+ <part name="profile_names" type="tns:Common.StringSequence"/>
154
+ <part name="defaults" type="tns:Common.StringSequence"/>
155
+ </message>
156
+ <message name="Networking.ProfileWCCPGRE.set_default_profileResponse">
157
+ </message>
158
+
159
+ <message name="Networking.ProfileWCCPGRE.get_default_profileRequest">
160
+ <part name="profile_names" type="tns:Common.StringSequence"/>
161
+ </message>
162
+ <message name="Networking.ProfileWCCPGRE.get_default_profileResponse">
163
+ <part name="return" type="tns:Common.StringSequence"/>
164
+ </message>
165
+
166
+ <message name="Networking.ProfileWCCPGRE.set_include_checksum_stateRequest">
167
+ <part name="profile_names" type="tns:Common.StringSequence"/>
168
+ <part name="states" type="tns:Common.ProfileEnabledStateSequence"/>
169
+ </message>
170
+ <message name="Networking.ProfileWCCPGRE.set_include_checksum_stateResponse">
171
+ </message>
172
+
173
+ <message name="Networking.ProfileWCCPGRE.get_include_checksum_stateRequest">
174
+ <part name="profile_names" type="tns:Common.StringSequence"/>
175
+ </message>
176
+ <message name="Networking.ProfileWCCPGRE.get_include_checksum_stateResponse">
177
+ <part name="return" type="tns:Common.ProfileEnabledStateSequence"/>
178
+ </message>
179
+
180
+ <message name="Networking.ProfileWCCPGRE.set_validate_checksum_stateRequest">
181
+ <part name="profile_names" type="tns:Common.StringSequence"/>
182
+ <part name="states" type="tns:Common.ProfileEnabledStateSequence"/>
183
+ </message>
184
+ <message name="Networking.ProfileWCCPGRE.set_validate_checksum_stateResponse">
185
+ </message>
186
+
187
+ <message name="Networking.ProfileWCCPGRE.get_validate_checksum_stateRequest">
188
+ <part name="profile_names" type="tns:Common.StringSequence"/>
189
+ </message>
190
+ <message name="Networking.ProfileWCCPGRE.get_validate_checksum_stateResponse">
191
+ <part name="return" type="tns:Common.ProfileEnabledStateSequence"/>
192
+ </message>
193
+
194
+ <message name="Networking.ProfileWCCPGRE.set_wccp_versionRequest">
195
+ <part name="profile_names" type="tns:Common.StringSequence"/>
196
+ <part name="versions" type="tns:Common.ProfileULongSequence"/>
197
+ </message>
198
+ <message name="Networking.ProfileWCCPGRE.set_wccp_versionResponse">
199
+ </message>
200
+
201
+ <message name="Networking.ProfileWCCPGRE.get_wccp_versionRequest">
202
+ <part name="profile_names" type="tns:Common.StringSequence"/>
203
+ </message>
204
+ <message name="Networking.ProfileWCCPGRE.get_wccp_versionResponse">
205
+ <part name="return" type="tns:Common.ProfileULongSequence"/>
206
+ </message>
207
+
208
+ <message name="Networking.ProfileWCCPGRE.set_egress_forwardingRequest">
209
+ <part name="profile_names" type="tns:Common.StringSequence"/>
210
+ <part name="modes" type="tns:Networking.ProfileWCCPGRE.ProfileWCCPGREForwardingSequence"/>
211
+ </message>
212
+ <message name="Networking.ProfileWCCPGRE.set_egress_forwardingResponse">
213
+ </message>
214
+
215
+ <message name="Networking.ProfileWCCPGRE.get_egress_forwardingRequest">
216
+ <part name="profile_names" type="tns:Common.StringSequence"/>
217
+ </message>
218
+ <message name="Networking.ProfileWCCPGRE.get_egress_forwardingResponse">
219
+ <part name="return" type="tns:Networking.ProfileWCCPGRE.ProfileWCCPGREForwardingSequence"/>
220
+ </message>
221
+
222
+ <message name="Networking.ProfileWCCPGRE.set_descriptionRequest">
223
+ <part name="profile_names" type="tns:Common.StringSequence"/>
224
+ <part name="descriptions" type="tns:Common.StringSequence"/>
225
+ </message>
226
+ <message name="Networking.ProfileWCCPGRE.set_descriptionResponse">
227
+ </message>
228
+
229
+ <message name="Networking.ProfileWCCPGRE.get_descriptionRequest">
230
+ <part name="profile_names" type="tns:Common.StringSequence"/>
231
+ </message>
232
+ <message name="Networking.ProfileWCCPGRE.get_descriptionResponse">
233
+ <part name="return" type="tns:Common.StringSequence"/>
234
+ </message>
235
+
236
+ <message name="Networking.ProfileWCCPGRE.get_versionRequest">
237
+ </message>
238
+ <message name="Networking.ProfileWCCPGRE.get_versionResponse">
239
+ <part name="return" type="xsd:string"/>
240
+ </message>
241
+
242
+ <!-- portType -->
243
+
244
+ <portType name="Networking.ProfileWCCPGREPortType">
245
+ <operation name="get_list">
246
+ <documentation>
247
+ Gets the names for all WCCP-GRE tunnel profiles.
248
+
249
+ </documentation>
250
+ <input message="tns:Networking.ProfileWCCPGRE.get_listRequest"/>
251
+ <output message="tns:Networking.ProfileWCCPGRE.get_listResponse"/>
252
+ </operation>
253
+ <operation name="create">
254
+ <documentation>
255
+ Creates a set of WCCP-GRE tunnel profiles.
256
+
257
+ </documentation>
258
+ <input message="tns:Networking.ProfileWCCPGRE.createRequest"/>
259
+ <output message="tns:Networking.ProfileWCCPGRE.createResponse"/>
260
+ </operation>
261
+ <operation name="delete_profile">
262
+ <documentation>
263
+ Deletes a set of WCCP-GRE tunnel profiles.
264
+
265
+ </documentation>
266
+ <input message="tns:Networking.ProfileWCCPGRE.delete_profileRequest"/>
267
+ <output message="tns:Networking.ProfileWCCPGRE.delete_profileResponse"/>
268
+ </operation>
269
+ <operation name="delete_all_profiles">
270
+ <documentation>
271
+ Deletes all non-system WCCP-GRE tunnel profiles.
272
+
273
+ </documentation>
274
+ <input message="tns:Networking.ProfileWCCPGRE.delete_all_profilesRequest"/>
275
+ <output message="tns:Networking.ProfileWCCPGRE.delete_all_profilesResponse"/>
276
+ </operation>
277
+ <operation name="is_base_profile">
278
+ <documentation>
279
+ Determines whether the specified WCCP-GRE tunnel profiles are base
280
+ profiles. A base profile sits at the base of the profile's
281
+ inheritance tree, supplying the defaults for every profile derived
282
+ from it. (See also is_system_profile).
283
+
284
+ </documentation>
285
+ <input message="tns:Networking.ProfileWCCPGRE.is_base_profileRequest"/>
286
+ <output message="tns:Networking.ProfileWCCPGRE.is_base_profileResponse"/>
287
+ </operation>
288
+ <operation name="is_system_profile">
289
+ <documentation>
290
+ Determines whether the specified WCCP-GRE tunnel profiles are
291
+ system profiles. A system profile is a profile pre-configured on
292
+ the system, ready for use. Non-system profiles are profiles
293
+ created or modified by a user. Note that if a system profile is
294
+ modified, it is no longer considered a system profile. (See also
295
+ is_base_profile).
296
+
297
+ </documentation>
298
+ <input message="tns:Networking.ProfileWCCPGRE.is_system_profileRequest"/>
299
+ <output message="tns:Networking.ProfileWCCPGRE.is_system_profileResponse"/>
300
+ </operation>
301
+ <operation name="set_default_profile">
302
+ <documentation>
303
+ Sets the existing WCCP-GRE tunnel profile from which this set of
304
+ WCCP-GRE tunnel profiles inherits their unspecified attribute
305
+ values.
306
+
307
+ </documentation>
308
+ <input message="tns:Networking.ProfileWCCPGRE.set_default_profileRequest"/>
309
+ <output message="tns:Networking.ProfileWCCPGRE.set_default_profileResponse"/>
310
+ </operation>
311
+ <operation name="get_default_profile">
312
+ <documentation>
313
+ Gets the existing WCCP-GRE tunnel profile from which this set of
314
+ WCCP-GRE profiles inherits its unspecified attribute values.
315
+
316
+ </documentation>
317
+ <input message="tns:Networking.ProfileWCCPGRE.get_default_profileRequest"/>
318
+ <output message="tns:Networking.ProfileWCCPGRE.get_default_profileResponse"/>
319
+ </operation>
320
+ <operation name="set_include_checksum_state">
321
+ <documentation>
322
+ Sets whether the checksum should be included in the transmitted
323
+ packets for a set of WCCP-GRE tunnel profiles.
324
+
325
+ </documentation>
326
+ <input message="tns:Networking.ProfileWCCPGRE.set_include_checksum_stateRequest"/>
327
+ <output message="tns:Networking.ProfileWCCPGRE.set_include_checksum_stateResponse"/>
328
+ </operation>
329
+ <operation name="get_include_checksum_state">
330
+ <documentation>
331
+ Gets whether the checksum should be included in the transmitted
332
+ packets for a set of WCCP-GRE tunnel profiles.
333
+
334
+ </documentation>
335
+ <input message="tns:Networking.ProfileWCCPGRE.get_include_checksum_stateRequest"/>
336
+ <output message="tns:Networking.ProfileWCCPGRE.get_include_checksum_stateResponse"/>
337
+ </operation>
338
+ <operation name="set_validate_checksum_state">
339
+ <documentation>
340
+ Sets whether the checksum should be validated on the received
341
+ packets for a set of WCCP-GRE tunnel profiles.
342
+
343
+ </documentation>
344
+ <input message="tns:Networking.ProfileWCCPGRE.set_validate_checksum_stateRequest"/>
345
+ <output message="tns:Networking.ProfileWCCPGRE.set_validate_checksum_stateResponse"/>
346
+ </operation>
347
+ <operation name="get_validate_checksum_state">
348
+ <documentation>
349
+ Gets whether the checksum should be validated on the received
350
+ packets for a set of WCCP-GRE tunnel profiles.
351
+
352
+ </documentation>
353
+ <input message="tns:Networking.ProfileWCCPGRE.get_validate_checksum_stateRequest"/>
354
+ <output message="tns:Networking.ProfileWCCPGRE.get_validate_checksum_stateResponse"/>
355
+ </operation>
356
+ <operation name="set_wccp_version">
357
+ <documentation>
358
+ Sets the WCCP version currently in use for a set of WCCP-GRE tunnel
359
+ profiles.
360
+
361
+ </documentation>
362
+ <input message="tns:Networking.ProfileWCCPGRE.set_wccp_versionRequest"/>
363
+ <output message="tns:Networking.ProfileWCCPGRE.set_wccp_versionResponse"/>
364
+ </operation>
365
+ <operation name="get_wccp_version">
366
+ <documentation>
367
+ Gets the WCCP version currently in use for a set of WCCP-GRE tunnel
368
+ profiles.
369
+
370
+ </documentation>
371
+ <input message="tns:Networking.ProfileWCCPGRE.get_wccp_versionRequest"/>
372
+ <output message="tns:Networking.ProfileWCCPGRE.get_wccp_versionResponse"/>
373
+ </operation>
374
+ <operation name="set_egress_forwarding">
375
+ <documentation>
376
+ Sets the forwarding specification for packets leaving a WCCP-GRE
377
+ tunnel for a set of WCCP-GRE tunnel profiles.
378
+
379
+ </documentation>
380
+ <input message="tns:Networking.ProfileWCCPGRE.set_egress_forwardingRequest"/>
381
+ <output message="tns:Networking.ProfileWCCPGRE.set_egress_forwardingResponse"/>
382
+ </operation>
383
+ <operation name="get_egress_forwarding">
384
+ <documentation>
385
+ Gets the forwarding specification for packets leaving a WCCP-GRE
386
+ tunnel for a set of WCCP-GRE tunnel profiles.
387
+
388
+ </documentation>
389
+ <input message="tns:Networking.ProfileWCCPGRE.get_egress_forwardingRequest"/>
390
+ <output message="tns:Networking.ProfileWCCPGRE.get_egress_forwardingResponse"/>
391
+ </operation>
392
+ <operation name="set_description">
393
+ <documentation>
394
+ Sets the description for a set of WCCP-GRE tunnel profiles.
395
+
396
+ This is an arbitrary field which can be used for any purpose.
397
+
398
+ </documentation>
399
+ <input message="tns:Networking.ProfileWCCPGRE.set_descriptionRequest"/>
400
+ <output message="tns:Networking.ProfileWCCPGRE.set_descriptionResponse"/>
401
+ </operation>
402
+ <operation name="get_description">
403
+ <documentation>
404
+ Gets the descriptions for a set of WCCP-GRE tunnel profiles.
405
+
406
+ </documentation>
407
+ <input message="tns:Networking.ProfileWCCPGRE.get_descriptionRequest"/>
408
+ <output message="tns:Networking.ProfileWCCPGRE.get_descriptionResponse"/>
409
+ </operation>
410
+ <operation name="get_version">
411
+ <documentation>
412
+ Gets the version information for this interface.
413
+
414
+ </documentation>
415
+ <input message="tns:Networking.ProfileWCCPGRE.get_versionRequest"/>
416
+ <output message="tns:Networking.ProfileWCCPGRE.get_versionResponse"/>
417
+ </operation>
418
+ </portType>
419
+
420
+ <!-- binding -->
421
+
422
+ <binding name="Networking.ProfileWCCPGREBinding" type="tns:Networking.ProfileWCCPGREPortType">
423
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
424
+ <operation name="get_list">
425
+ <documentation>
426
+ Gets the names for all WCCP-GRE tunnel profiles.
427
+
428
+ </documentation>
429
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
430
+ <input>
431
+ <soap:body
432
+ use="encoded"
433
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
434
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
435
+ </input>
436
+ <output>
437
+ <soap:body
438
+ use="encoded"
439
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
440
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
441
+ </output>
442
+ </operation>
443
+
444
+ <operation name="create">
445
+ <documentation>
446
+ Creates a set of WCCP-GRE tunnel profiles.
447
+
448
+ </documentation>
449
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
450
+ <input>
451
+ <soap:body
452
+ use="encoded"
453
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
454
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
455
+ </input>
456
+ <output>
457
+ <soap:body
458
+ use="encoded"
459
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
460
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
461
+ </output>
462
+ </operation>
463
+
464
+ <operation name="delete_profile">
465
+ <documentation>
466
+ Deletes a set of WCCP-GRE tunnel profiles.
467
+
468
+ </documentation>
469
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
470
+ <input>
471
+ <soap:body
472
+ use="encoded"
473
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
474
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
475
+ </input>
476
+ <output>
477
+ <soap:body
478
+ use="encoded"
479
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
480
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
481
+ </output>
482
+ </operation>
483
+
484
+ <operation name="delete_all_profiles">
485
+ <documentation>
486
+ Deletes all non-system WCCP-GRE tunnel profiles.
487
+
488
+ </documentation>
489
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
490
+ <input>
491
+ <soap:body
492
+ use="encoded"
493
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
494
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
495
+ </input>
496
+ <output>
497
+ <soap:body
498
+ use="encoded"
499
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
500
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
501
+ </output>
502
+ </operation>
503
+
504
+ <operation name="is_base_profile">
505
+ <documentation>
506
+ Determines whether the specified WCCP-GRE tunnel profiles are base
507
+ profiles. A base profile sits at the base of the profile's
508
+ inheritance tree, supplying the defaults for every profile derived
509
+ from it. (See also is_system_profile).
510
+
511
+ </documentation>
512
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
513
+ <input>
514
+ <soap:body
515
+ use="encoded"
516
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
517
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
518
+ </input>
519
+ <output>
520
+ <soap:body
521
+ use="encoded"
522
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
523
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
524
+ </output>
525
+ </operation>
526
+
527
+ <operation name="is_system_profile">
528
+ <documentation>
529
+ Determines whether the specified WCCP-GRE tunnel profiles are
530
+ system profiles. A system profile is a profile pre-configured on
531
+ the system, ready for use. Non-system profiles are profiles
532
+ created or modified by a user. Note that if a system profile is
533
+ modified, it is no longer considered a system profile. (See also
534
+ is_base_profile).
535
+
536
+ </documentation>
537
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
538
+ <input>
539
+ <soap:body
540
+ use="encoded"
541
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
542
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
543
+ </input>
544
+ <output>
545
+ <soap:body
546
+ use="encoded"
547
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
548
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
549
+ </output>
550
+ </operation>
551
+
552
+ <operation name="set_default_profile">
553
+ <documentation>
554
+ Sets the existing WCCP-GRE tunnel profile from which this set of
555
+ WCCP-GRE tunnel profiles inherits their unspecified attribute
556
+ values.
557
+
558
+ </documentation>
559
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
560
+ <input>
561
+ <soap:body
562
+ use="encoded"
563
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
564
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
565
+ </input>
566
+ <output>
567
+ <soap:body
568
+ use="encoded"
569
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
570
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
571
+ </output>
572
+ </operation>
573
+
574
+ <operation name="get_default_profile">
575
+ <documentation>
576
+ Gets the existing WCCP-GRE tunnel profile from which this set of
577
+ WCCP-GRE profiles inherits its unspecified attribute values.
578
+
579
+ </documentation>
580
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
581
+ <input>
582
+ <soap:body
583
+ use="encoded"
584
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
585
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
586
+ </input>
587
+ <output>
588
+ <soap:body
589
+ use="encoded"
590
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
591
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
592
+ </output>
593
+ </operation>
594
+
595
+ <operation name="set_include_checksum_state">
596
+ <documentation>
597
+ Sets whether the checksum should be included in the transmitted
598
+ packets for a set of WCCP-GRE tunnel profiles.
599
+
600
+ </documentation>
601
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
602
+ <input>
603
+ <soap:body
604
+ use="encoded"
605
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
606
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
607
+ </input>
608
+ <output>
609
+ <soap:body
610
+ use="encoded"
611
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
612
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
613
+ </output>
614
+ </operation>
615
+
616
+ <operation name="get_include_checksum_state">
617
+ <documentation>
618
+ Gets whether the checksum should be included in the transmitted
619
+ packets for a set of WCCP-GRE tunnel profiles.
620
+
621
+ </documentation>
622
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
623
+ <input>
624
+ <soap:body
625
+ use="encoded"
626
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
627
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
628
+ </input>
629
+ <output>
630
+ <soap:body
631
+ use="encoded"
632
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
633
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
634
+ </output>
635
+ </operation>
636
+
637
+ <operation name="set_validate_checksum_state">
638
+ <documentation>
639
+ Sets whether the checksum should be validated on the received
640
+ packets for a set of WCCP-GRE tunnel profiles.
641
+
642
+ </documentation>
643
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
644
+ <input>
645
+ <soap:body
646
+ use="encoded"
647
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
648
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
649
+ </input>
650
+ <output>
651
+ <soap:body
652
+ use="encoded"
653
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
654
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
655
+ </output>
656
+ </operation>
657
+
658
+ <operation name="get_validate_checksum_state">
659
+ <documentation>
660
+ Gets whether the checksum should be validated on the received
661
+ packets for a set of WCCP-GRE tunnel profiles.
662
+
663
+ </documentation>
664
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
665
+ <input>
666
+ <soap:body
667
+ use="encoded"
668
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
669
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
670
+ </input>
671
+ <output>
672
+ <soap:body
673
+ use="encoded"
674
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
675
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
676
+ </output>
677
+ </operation>
678
+
679
+ <operation name="set_wccp_version">
680
+ <documentation>
681
+ Sets the WCCP version currently in use for a set of WCCP-GRE tunnel
682
+ profiles.
683
+
684
+ </documentation>
685
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
686
+ <input>
687
+ <soap:body
688
+ use="encoded"
689
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
690
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
691
+ </input>
692
+ <output>
693
+ <soap:body
694
+ use="encoded"
695
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
696
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
697
+ </output>
698
+ </operation>
699
+
700
+ <operation name="get_wccp_version">
701
+ <documentation>
702
+ Gets the WCCP version currently in use for a set of WCCP-GRE tunnel
703
+ profiles.
704
+
705
+ </documentation>
706
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
707
+ <input>
708
+ <soap:body
709
+ use="encoded"
710
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
711
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
712
+ </input>
713
+ <output>
714
+ <soap:body
715
+ use="encoded"
716
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
717
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
718
+ </output>
719
+ </operation>
720
+
721
+ <operation name="set_egress_forwarding">
722
+ <documentation>
723
+ Sets the forwarding specification for packets leaving a WCCP-GRE
724
+ tunnel for a set of WCCP-GRE tunnel profiles.
725
+
726
+ </documentation>
727
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
728
+ <input>
729
+ <soap:body
730
+ use="encoded"
731
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
732
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
733
+ </input>
734
+ <output>
735
+ <soap:body
736
+ use="encoded"
737
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
738
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
739
+ </output>
740
+ </operation>
741
+
742
+ <operation name="get_egress_forwarding">
743
+ <documentation>
744
+ Gets the forwarding specification for packets leaving a WCCP-GRE
745
+ tunnel for a set of WCCP-GRE tunnel profiles.
746
+
747
+ </documentation>
748
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
749
+ <input>
750
+ <soap:body
751
+ use="encoded"
752
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
753
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
754
+ </input>
755
+ <output>
756
+ <soap:body
757
+ use="encoded"
758
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
759
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
760
+ </output>
761
+ </operation>
762
+
763
+ <operation name="set_description">
764
+ <documentation>
765
+ Sets the description for a set of WCCP-GRE tunnel profiles.
766
+
767
+ This is an arbitrary field which can be used for any purpose.
768
+
769
+ </documentation>
770
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
771
+ <input>
772
+ <soap:body
773
+ use="encoded"
774
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
775
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
776
+ </input>
777
+ <output>
778
+ <soap:body
779
+ use="encoded"
780
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
781
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
782
+ </output>
783
+ </operation>
784
+
785
+ <operation name="get_description">
786
+ <documentation>
787
+ Gets the descriptions for a set of WCCP-GRE tunnel profiles.
788
+
789
+ </documentation>
790
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
791
+ <input>
792
+ <soap:body
793
+ use="encoded"
794
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
795
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
796
+ </input>
797
+ <output>
798
+ <soap:body
799
+ use="encoded"
800
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
801
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
802
+ </output>
803
+ </operation>
804
+
805
+ <operation name="get_version">
806
+ <documentation>
807
+ Gets the version information for this interface.
808
+
809
+ </documentation>
810
+ <soap:operation soapAction="urn:iControl:Networking/ProfileWCCPGRE"/>
811
+ <input>
812
+ <soap:body
813
+ use="encoded"
814
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
815
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
816
+ </input>
817
+ <output>
818
+ <soap:body
819
+ use="encoded"
820
+ namespace="urn:iControl:Networking/ProfileWCCPGRE"
821
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
822
+ </output>
823
+ </operation>
824
+ </binding>
825
+
826
+ <!-- service -->
827
+
828
+ <service name="Networking.ProfileWCCPGRE">
829
+ <documentation>
830
+ The ProfileWCCPGRE interface allows you to manipulate a WCCP-GRE tunnel
831
+ profile to configure the General Routing Encapsulation (GRE - RFC2784)
832
+ tunnel protocol in conjunction with the Web-Cache Communication
833
+ Protocol (WCCP). See the Networking/ProfileGRE interface for
834
+ additional information.
835
+
836
+ </documentation>
837
+ <port name="Networking.ProfileWCCPGREPort" binding="tns:Networking.ProfileWCCPGREBinding">
838
+ <soap:address location="https://url_to_service"/>
839
+ </port>
840
+ </service>
841
+ </definitions>