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,3360 @@
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="Security.FirewallRuleList"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:simpleType name="Common.FirewallRulePlacementType">
25
+ <xsd:restriction base="xsd:string">
26
+ <xsd:enumeration value="FW_RULE_PLACEMENT_UNKNOWN">
27
+ <xsd:annotation>
28
+ <xsd:documentation>FW_RULE_PLACEMENT_UNKNOWN</xsd:documentation>
29
+ </xsd:annotation>
30
+ </xsd:enumeration>
31
+ <xsd:enumeration value="FW_RULE_PLACEMENT_BEFORE">
32
+ <xsd:annotation>
33
+ <xsd:documentation>FW_RULE_PLACEMENT_BEFORE</xsd:documentation>
34
+ </xsd:annotation>
35
+ </xsd:enumeration>
36
+ <xsd:enumeration value="FW_RULE_PLACEMENT_AFTER">
37
+ <xsd:annotation>
38
+ <xsd:documentation>FW_RULE_PLACEMENT_AFTER</xsd:documentation>
39
+ </xsd:annotation>
40
+ </xsd:enumeration>
41
+ <xsd:enumeration value="FW_RULE_PLACEMENT_ORDER">
42
+ <xsd:annotation>
43
+ <xsd:documentation>FW_RULE_PLACEMENT_ORDER</xsd:documentation>
44
+ </xsd:annotation>
45
+ </xsd:enumeration>
46
+ </xsd:restriction>
47
+ </xsd:simpleType>
48
+ <xsd:complexType name="Common.NetAddressSequenceSequenceSequence">
49
+ <xsd:complexContent>
50
+ <xsd:restriction base='SOAP-ENC:Array'>
51
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.NetAddressSequenceSequence[]'/>
52
+ </xsd:restriction>
53
+ </xsd:complexContent>
54
+ </xsd:complexType>
55
+ <xsd:complexType name="Common.ULongSequenceSequence">
56
+ <xsd:complexContent>
57
+ <xsd:restriction base='SOAP-ENC:Array'>
58
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ULongSequence[]'/>
59
+ </xsd:restriction>
60
+ </xsd:complexContent>
61
+ </xsd:complexType>
62
+ <xsd:complexType name="Common.FirewallRuleActionSequenceSequence">
63
+ <xsd:complexContent>
64
+ <xsd:restriction base='SOAP-ENC:Array'>
65
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.FirewallRuleActionSequence[]'/>
66
+ </xsd:restriction>
67
+ </xsd:complexContent>
68
+ </xsd:complexType>
69
+ <xsd:complexType name="Common.FirewallRuleICMPTypeCodeSequenceSequence">
70
+ <xsd:complexContent>
71
+ <xsd:restriction base='SOAP-ENC:Array'>
72
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.FirewallRuleICMPTypeCodeSequence[]'/>
73
+ </xsd:restriction>
74
+ </xsd:complexContent>
75
+ </xsd:complexType>
76
+ <xsd:simpleType name="Common.EnabledState">
77
+ <xsd:restriction base="xsd:string">
78
+ <xsd:enumeration value="STATE_DISABLED">
79
+ <xsd:annotation>
80
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
81
+ </xsd:annotation>
82
+ </xsd:enumeration>
83
+ <xsd:enumeration value="STATE_ENABLED">
84
+ <xsd:annotation>
85
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
86
+ </xsd:annotation>
87
+ </xsd:enumeration>
88
+ </xsd:restriction>
89
+ </xsd:simpleType>
90
+ <xsd:complexType name="Common.NetAddressSequenceSequence">
91
+ <xsd:complexContent>
92
+ <xsd:restriction base='SOAP-ENC:Array'>
93
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.NetAddressSequence[]'/>
94
+ </xsd:restriction>
95
+ </xsd:complexContent>
96
+ </xsd:complexType>
97
+ <xsd:complexType name="Common.PortRangeSequence">
98
+ <xsd:complexContent>
99
+ <xsd:restriction base='SOAP-ENC:Array'>
100
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.PortRange[]'/>
101
+ </xsd:restriction>
102
+ </xsd:complexContent>
103
+ </xsd:complexType>
104
+ <xsd:complexType name="Common.FirewallRuleActionSequence">
105
+ <xsd:complexContent>
106
+ <xsd:restriction base='SOAP-ENC:Array'>
107
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.FirewallRuleAction[]'/>
108
+ </xsd:restriction>
109
+ </xsd:complexContent>
110
+ </xsd:complexType>
111
+ <xsd:complexType name="Common.StringSequence">
112
+ <xsd:complexContent>
113
+ <xsd:restriction base='SOAP-ENC:Array'>
114
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
115
+ </xsd:restriction>
116
+ </xsd:complexContent>
117
+ </xsd:complexType>
118
+ <xsd:complexType name="Common.FirewallRuleICMPTypeCodeSequenceSequenceSequence">
119
+ <xsd:complexContent>
120
+ <xsd:restriction base='SOAP-ENC:Array'>
121
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.FirewallRuleICMPTypeCodeSequenceSequence[]'/>
122
+ </xsd:restriction>
123
+ </xsd:complexContent>
124
+ </xsd:complexType>
125
+ <xsd:simpleType name="Common.ProtocolType">
126
+ <xsd:restriction base="xsd:string">
127
+ <xsd:enumeration value="PROTOCOL_ANY">
128
+ <xsd:annotation>
129
+ <xsd:documentation>PROTOCOL_ANY</xsd:documentation>
130
+ </xsd:annotation>
131
+ </xsd:enumeration>
132
+ <xsd:enumeration value="PROTOCOL_IPV6">
133
+ <xsd:annotation>
134
+ <xsd:documentation>PROTOCOL_IPV6</xsd:documentation>
135
+ </xsd:annotation>
136
+ </xsd:enumeration>
137
+ <xsd:enumeration value="PROTOCOL_ROUTING">
138
+ <xsd:annotation>
139
+ <xsd:documentation>PROTOCOL_ROUTING</xsd:documentation>
140
+ </xsd:annotation>
141
+ </xsd:enumeration>
142
+ <xsd:enumeration value="PROTOCOL_NONE">
143
+ <xsd:annotation>
144
+ <xsd:documentation>PROTOCOL_NONE</xsd:documentation>
145
+ </xsd:annotation>
146
+ </xsd:enumeration>
147
+ <xsd:enumeration value="PROTOCOL_FRAGMENT">
148
+ <xsd:annotation>
149
+ <xsd:documentation>PROTOCOL_FRAGMENT</xsd:documentation>
150
+ </xsd:annotation>
151
+ </xsd:enumeration>
152
+ <xsd:enumeration value="PROTOCOL_DSTOPTS">
153
+ <xsd:annotation>
154
+ <xsd:documentation>PROTOCOL_DSTOPTS</xsd:documentation>
155
+ </xsd:annotation>
156
+ </xsd:enumeration>
157
+ <xsd:enumeration value="PROTOCOL_TCP">
158
+ <xsd:annotation>
159
+ <xsd:documentation>PROTOCOL_TCP</xsd:documentation>
160
+ </xsd:annotation>
161
+ </xsd:enumeration>
162
+ <xsd:enumeration value="PROTOCOL_UDP">
163
+ <xsd:annotation>
164
+ <xsd:documentation>PROTOCOL_UDP</xsd:documentation>
165
+ </xsd:annotation>
166
+ </xsd:enumeration>
167
+ <xsd:enumeration value="PROTOCOL_ICMP">
168
+ <xsd:annotation>
169
+ <xsd:documentation>PROTOCOL_ICMP</xsd:documentation>
170
+ </xsd:annotation>
171
+ </xsd:enumeration>
172
+ <xsd:enumeration value="PROTOCOL_ICMPV6">
173
+ <xsd:annotation>
174
+ <xsd:documentation>PROTOCOL_ICMPV6</xsd:documentation>
175
+ </xsd:annotation>
176
+ </xsd:enumeration>
177
+ <xsd:enumeration value="PROTOCOL_OSPF">
178
+ <xsd:annotation>
179
+ <xsd:documentation>PROTOCOL_OSPF</xsd:documentation>
180
+ </xsd:annotation>
181
+ </xsd:enumeration>
182
+ <xsd:enumeration value="PROTOCOL_SCTP">
183
+ <xsd:annotation>
184
+ <xsd:documentation>PROTOCOL_SCTP</xsd:documentation>
185
+ </xsd:annotation>
186
+ </xsd:enumeration>
187
+ <xsd:enumeration value="PROTOCOL_UNKNOWN">
188
+ <xsd:annotation>
189
+ <xsd:documentation>PROTOCOL_UNKNOWN</xsd:documentation>
190
+ </xsd:annotation>
191
+ </xsd:enumeration>
192
+ </xsd:restriction>
193
+ </xsd:simpleType>
194
+ <xsd:complexType name="Common.ULongSequence">
195
+ <xsd:complexContent>
196
+ <xsd:restriction base='SOAP-ENC:Array'>
197
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
198
+ </xsd:restriction>
199
+ </xsd:complexContent>
200
+ </xsd:complexType>
201
+ <xsd:complexType name="Common.NetAddressSequence">
202
+ <xsd:complexContent>
203
+ <xsd:restriction base='SOAP-ENC:Array'>
204
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
205
+ </xsd:restriction>
206
+ </xsd:complexContent>
207
+ </xsd:complexType>
208
+ <xsd:complexType name="Common.StringSequenceSequenceSequence">
209
+ <xsd:complexContent>
210
+ <xsd:restriction base='SOAP-ENC:Array'>
211
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequenceSequence[]'/>
212
+ </xsd:restriction>
213
+ </xsd:complexContent>
214
+ </xsd:complexType>
215
+ <xsd:simpleType name="Common.FirewallRuleAction">
216
+ <xsd:restriction base="xsd:string">
217
+ <xsd:enumeration value="FW_RULE_ACTION_UNKNOWN">
218
+ <xsd:annotation>
219
+ <xsd:documentation>FW_RULE_ACTION_UNKNOWN</xsd:documentation>
220
+ </xsd:annotation>
221
+ </xsd:enumeration>
222
+ <xsd:enumeration value="FW_RULE_ACTION_ACCEPT">
223
+ <xsd:annotation>
224
+ <xsd:documentation>FW_RULE_ACTION_ACCEPT</xsd:documentation>
225
+ </xsd:annotation>
226
+ </xsd:enumeration>
227
+ <xsd:enumeration value="FW_RULE_ACTION_ACCEPT_DECISIVELY">
228
+ <xsd:annotation>
229
+ <xsd:documentation>FW_RULE_ACTION_ACCEPT_DECISIVELY</xsd:documentation>
230
+ </xsd:annotation>
231
+ </xsd:enumeration>
232
+ <xsd:enumeration value="FW_RULE_ACTION_REJECT">
233
+ <xsd:annotation>
234
+ <xsd:documentation>FW_RULE_ACTION_REJECT</xsd:documentation>
235
+ </xsd:annotation>
236
+ </xsd:enumeration>
237
+ <xsd:enumeration value="FW_RULE_ACTION_DROP">
238
+ <xsd:annotation>
239
+ <xsd:documentation>FW_RULE_ACTION_DROP</xsd:documentation>
240
+ </xsd:annotation>
241
+ </xsd:enumeration>
242
+ </xsd:restriction>
243
+ </xsd:simpleType>
244
+ <xsd:complexType name="Common.FirewallRuleStateSequenceSequence">
245
+ <xsd:complexContent>
246
+ <xsd:restriction base='SOAP-ENC:Array'>
247
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.FirewallRuleStateSequence[]'/>
248
+ </xsd:restriction>
249
+ </xsd:complexContent>
250
+ </xsd:complexType>
251
+ <xsd:simpleType name="Common.FirewallRuleState">
252
+ <xsd:restriction base="xsd:string">
253
+ <xsd:enumeration value="FW_RULE_STATE_UNKNOWN">
254
+ <xsd:annotation>
255
+ <xsd:documentation>FW_RULE_STATE_UNKNOWN</xsd:documentation>
256
+ </xsd:annotation>
257
+ </xsd:enumeration>
258
+ <xsd:enumeration value="FW_RULE_STATE_DISABLED">
259
+ <xsd:annotation>
260
+ <xsd:documentation>FW_RULE_STATE_DISABLED</xsd:documentation>
261
+ </xsd:annotation>
262
+ </xsd:enumeration>
263
+ <xsd:enumeration value="FW_RULE_STATE_ENABLED">
264
+ <xsd:annotation>
265
+ <xsd:documentation>FW_RULE_STATE_ENABLED</xsd:documentation>
266
+ </xsd:annotation>
267
+ </xsd:enumeration>
268
+ <xsd:enumeration value="FW_RULE_STATE_SCHEDULED">
269
+ <xsd:annotation>
270
+ <xsd:documentation>FW_RULE_STATE_SCHEDULED</xsd:documentation>
271
+ </xsd:annotation>
272
+ </xsd:enumeration>
273
+ <xsd:enumeration value="FW_RULE_STATE_INVALID">
274
+ <xsd:annotation>
275
+ <xsd:documentation>FW_RULE_STATE_INVALID</xsd:documentation>
276
+ </xsd:annotation>
277
+ </xsd:enumeration>
278
+ </xsd:restriction>
279
+ </xsd:simpleType>
280
+ <xsd:complexType name="Common.FirewallRulePlacement">
281
+ <xsd:sequence>
282
+ <xsd:element name="type" type="tns:Common.FirewallRulePlacementType"/>
283
+ <xsd:element name="target" type="xsd:string"/>
284
+ <xsd:element name="order" type="xsd:long"/>
285
+ </xsd:sequence>
286
+ </xsd:complexType>
287
+ <xsd:complexType name="Common.FirewallRuleICMPTypeCode">
288
+ <xsd:sequence>
289
+ <xsd:element name="type" type="xsd:long"/>
290
+ <xsd:element name="code" type="xsd:long"/>
291
+ </xsd:sequence>
292
+ </xsd:complexType>
293
+ <xsd:complexType name="Common.StringSequenceSequence">
294
+ <xsd:complexContent>
295
+ <xsd:restriction base='SOAP-ENC:Array'>
296
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
297
+ </xsd:restriction>
298
+ </xsd:complexContent>
299
+ </xsd:complexType>
300
+ <xsd:complexType name="Common.FirewallRuleICMPTypeCodeSequence">
301
+ <xsd:complexContent>
302
+ <xsd:restriction base='SOAP-ENC:Array'>
303
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.FirewallRuleICMPTypeCode[]'/>
304
+ </xsd:restriction>
305
+ </xsd:complexContent>
306
+ </xsd:complexType>
307
+ <xsd:complexType name="Common.FirewallRuleStateSequence">
308
+ <xsd:complexContent>
309
+ <xsd:restriction base='SOAP-ENC:Array'>
310
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.FirewallRuleState[]'/>
311
+ </xsd:restriction>
312
+ </xsd:complexContent>
313
+ </xsd:complexType>
314
+ <xsd:complexType name="Common.PortRange">
315
+ <xsd:sequence>
316
+ <xsd:element name="begin" type="xsd:long"/>
317
+ <xsd:element name="end" type="xsd:long"/>
318
+ </xsd:sequence>
319
+ </xsd:complexType>
320
+ <xsd:complexType name="Common.FirewallRulePlacementSequenceSequence">
321
+ <xsd:complexContent>
322
+ <xsd:restriction base='SOAP-ENC:Array'>
323
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.FirewallRulePlacementSequence[]'/>
324
+ </xsd:restriction>
325
+ </xsd:complexContent>
326
+ </xsd:complexType>
327
+ <xsd:complexType name="Common.EnabledStateSequenceSequence">
328
+ <xsd:complexContent>
329
+ <xsd:restriction base='SOAP-ENC:Array'>
330
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledStateSequence[]'/>
331
+ </xsd:restriction>
332
+ </xsd:complexContent>
333
+ </xsd:complexType>
334
+ <xsd:complexType name="Common.ProtocolTypeSequenceSequence">
335
+ <xsd:complexContent>
336
+ <xsd:restriction base='SOAP-ENC:Array'>
337
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ProtocolTypeSequence[]'/>
338
+ </xsd:restriction>
339
+ </xsd:complexContent>
340
+ </xsd:complexType>
341
+ <xsd:complexType name="Common.FirewallRulePlacementSequence">
342
+ <xsd:complexContent>
343
+ <xsd:restriction base='SOAP-ENC:Array'>
344
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.FirewallRulePlacement[]'/>
345
+ </xsd:restriction>
346
+ </xsd:complexContent>
347
+ </xsd:complexType>
348
+ <xsd:complexType name="Common.PortRangeSequenceSequenceSequence">
349
+ <xsd:complexContent>
350
+ <xsd:restriction base='SOAP-ENC:Array'>
351
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.PortRangeSequenceSequence[]'/>
352
+ </xsd:restriction>
353
+ </xsd:complexContent>
354
+ </xsd:complexType>
355
+ <xsd:complexType name="Common.PortRangeSequenceSequence">
356
+ <xsd:complexContent>
357
+ <xsd:restriction base='SOAP-ENC:Array'>
358
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.PortRangeSequence[]'/>
359
+ </xsd:restriction>
360
+ </xsd:complexContent>
361
+ </xsd:complexType>
362
+ <xsd:complexType name="Common.ProtocolTypeSequence">
363
+ <xsd:complexContent>
364
+ <xsd:restriction base='SOAP-ENC:Array'>
365
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ProtocolType[]'/>
366
+ </xsd:restriction>
367
+ </xsd:complexContent>
368
+ </xsd:complexType>
369
+ <xsd:complexType name="Common.EnabledStateSequence">
370
+ <xsd:complexContent>
371
+ <xsd:restriction base='SOAP-ENC:Array'>
372
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
373
+ </xsd:restriction>
374
+ </xsd:complexContent>
375
+ </xsd:complexType>
376
+ </xsd:schema>
377
+ </types>
378
+
379
+ <!-- message -->
380
+
381
+ <message name="Security.FirewallRuleList.get_listRequest">
382
+ </message>
383
+ <message name="Security.FirewallRuleList.get_listResponse">
384
+ <part name="return" type="tns:Common.StringSequence"/>
385
+ </message>
386
+
387
+ <message name="Security.FirewallRuleList.createRequest">
388
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
389
+ </message>
390
+ <message name="Security.FirewallRuleList.createResponse">
391
+ </message>
392
+
393
+ <message name="Security.FirewallRuleList.delete_rule_listRequest">
394
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
395
+ </message>
396
+ <message name="Security.FirewallRuleList.delete_rule_listResponse">
397
+ </message>
398
+
399
+ <message name="Security.FirewallRuleList.delete_all_rule_listsRequest">
400
+ </message>
401
+ <message name="Security.FirewallRuleList.delete_all_rule_listsResponse">
402
+ </message>
403
+
404
+ <message name="Security.FirewallRuleList.set_descriptionRequest">
405
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
406
+ <part name="descriptions" type="tns:Common.StringSequence"/>
407
+ </message>
408
+ <message name="Security.FirewallRuleList.set_descriptionResponse">
409
+ </message>
410
+
411
+ <message name="Security.FirewallRuleList.get_descriptionRequest">
412
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
413
+ </message>
414
+ <message name="Security.FirewallRuleList.get_descriptionResponse">
415
+ <part name="return" type="tns:Common.StringSequence"/>
416
+ </message>
417
+
418
+ <message name="Security.FirewallRuleList.get_fw_ruleRequest">
419
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
420
+ </message>
421
+ <message name="Security.FirewallRuleList.get_fw_ruleResponse">
422
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
423
+ </message>
424
+
425
+ <message name="Security.FirewallRuleList.add_fw_ruleRequest">
426
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
427
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
428
+ <part name="placements" type="tns:Common.FirewallRulePlacementSequenceSequence"/>
429
+ <part name="actions" type="tns:Common.FirewallRuleActionSequenceSequence"/>
430
+ <part name="states" type="tns:Common.FirewallRuleStateSequenceSequence"/>
431
+ </message>
432
+ <message name="Security.FirewallRuleList.add_fw_ruleResponse">
433
+ </message>
434
+
435
+ <message name="Security.FirewallRuleList.remove_fw_ruleRequest">
436
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
437
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
438
+ </message>
439
+ <message name="Security.FirewallRuleList.remove_fw_ruleResponse">
440
+ </message>
441
+
442
+ <message name="Security.FirewallRuleList.remove_all_fw_rulesRequest">
443
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
444
+ </message>
445
+ <message name="Security.FirewallRuleList.remove_all_fw_rulesResponse">
446
+ </message>
447
+
448
+ <message name="Security.FirewallRuleList.set_fw_rule_stateRequest">
449
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
450
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
451
+ <part name="states" type="tns:Common.FirewallRuleStateSequenceSequence"/>
452
+ </message>
453
+ <message name="Security.FirewallRuleList.set_fw_rule_stateResponse">
454
+ </message>
455
+
456
+ <message name="Security.FirewallRuleList.get_fw_rule_stateRequest">
457
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
458
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
459
+ </message>
460
+ <message name="Security.FirewallRuleList.get_fw_rule_stateResponse">
461
+ <part name="return" type="tns:Common.FirewallRuleStateSequenceSequence"/>
462
+ </message>
463
+
464
+ <message name="Security.FirewallRuleList.set_fw_rule_orderRequest">
465
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
466
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
467
+ <part name="orders" type="tns:Common.ULongSequenceSequence"/>
468
+ </message>
469
+ <message name="Security.FirewallRuleList.set_fw_rule_orderResponse">
470
+ </message>
471
+
472
+ <message name="Security.FirewallRuleList.get_fw_rule_orderRequest">
473
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
474
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
475
+ </message>
476
+ <message name="Security.FirewallRuleList.get_fw_rule_orderResponse">
477
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
478
+ </message>
479
+
480
+ <message name="Security.FirewallRuleList.get_fw_rule_source_address_listRequest">
481
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
482
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
483
+ </message>
484
+ <message name="Security.FirewallRuleList.get_fw_rule_source_address_listResponse">
485
+ <part name="return" type="tns:Common.StringSequenceSequenceSequence"/>
486
+ </message>
487
+
488
+ <message name="Security.FirewallRuleList.add_fw_rule_source_address_listRequest">
489
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
490
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
491
+ <part name="lists" type="tns:Common.StringSequenceSequenceSequence"/>
492
+ </message>
493
+ <message name="Security.FirewallRuleList.add_fw_rule_source_address_listResponse">
494
+ </message>
495
+
496
+ <message name="Security.FirewallRuleList.remove_fw_rule_source_address_listRequest">
497
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
498
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
499
+ <part name="lists" type="tns:Common.StringSequenceSequenceSequence"/>
500
+ </message>
501
+ <message name="Security.FirewallRuleList.remove_fw_rule_source_address_listResponse">
502
+ </message>
503
+
504
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_source_address_listsRequest">
505
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
506
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
507
+ </message>
508
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_source_address_listsResponse">
509
+ </message>
510
+
511
+ <message name="Security.FirewallRuleList.get_fw_rule_source_addressRequest">
512
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
513
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
514
+ </message>
515
+ <message name="Security.FirewallRuleList.get_fw_rule_source_addressResponse">
516
+ <part name="return" type="tns:Common.NetAddressSequenceSequenceSequence"/>
517
+ </message>
518
+
519
+ <message name="Security.FirewallRuleList.add_fw_rule_source_addressRequest">
520
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
521
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
522
+ <part name="addresses" type="tns:Common.NetAddressSequenceSequenceSequence"/>
523
+ </message>
524
+ <message name="Security.FirewallRuleList.add_fw_rule_source_addressResponse">
525
+ </message>
526
+
527
+ <message name="Security.FirewallRuleList.remove_fw_rule_source_addressRequest">
528
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
529
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
530
+ <part name="addresses" type="tns:Common.NetAddressSequenceSequenceSequence"/>
531
+ </message>
532
+ <message name="Security.FirewallRuleList.remove_fw_rule_source_addressResponse">
533
+ </message>
534
+
535
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_source_addressesRequest">
536
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
537
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
538
+ </message>
539
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_source_addressesResponse">
540
+ </message>
541
+
542
+ <message name="Security.FirewallRuleList.set_fw_rule_source_address_descriptionRequest">
543
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
544
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
545
+ <part name="addresses" type="tns:Common.NetAddressSequenceSequenceSequence"/>
546
+ <part name="descriptions" type="tns:Common.StringSequenceSequenceSequence"/>
547
+ </message>
548
+ <message name="Security.FirewallRuleList.set_fw_rule_source_address_descriptionResponse">
549
+ </message>
550
+
551
+ <message name="Security.FirewallRuleList.get_fw_rule_source_address_descriptionRequest">
552
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
553
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
554
+ <part name="addresses" type="tns:Common.NetAddressSequenceSequenceSequence"/>
555
+ </message>
556
+ <message name="Security.FirewallRuleList.get_fw_rule_source_address_descriptionResponse">
557
+ <part name="return" type="tns:Common.StringSequenceSequenceSequence"/>
558
+ </message>
559
+
560
+ <message name="Security.FirewallRuleList.get_fw_rule_destination_address_listRequest">
561
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
562
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
563
+ </message>
564
+ <message name="Security.FirewallRuleList.get_fw_rule_destination_address_listResponse">
565
+ <part name="return" type="tns:Common.StringSequenceSequenceSequence"/>
566
+ </message>
567
+
568
+ <message name="Security.FirewallRuleList.add_fw_rule_destination_address_listRequest">
569
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
570
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
571
+ <part name="lists" type="tns:Common.StringSequenceSequenceSequence"/>
572
+ </message>
573
+ <message name="Security.FirewallRuleList.add_fw_rule_destination_address_listResponse">
574
+ </message>
575
+
576
+ <message name="Security.FirewallRuleList.remove_fw_rule_destination_address_listRequest">
577
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
578
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
579
+ <part name="lists" type="tns:Common.StringSequenceSequenceSequence"/>
580
+ </message>
581
+ <message name="Security.FirewallRuleList.remove_fw_rule_destination_address_listResponse">
582
+ </message>
583
+
584
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_destination_address_listsRequest">
585
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
586
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
587
+ </message>
588
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_destination_address_listsResponse">
589
+ </message>
590
+
591
+ <message name="Security.FirewallRuleList.get_fw_rule_destination_addressRequest">
592
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
593
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
594
+ </message>
595
+ <message name="Security.FirewallRuleList.get_fw_rule_destination_addressResponse">
596
+ <part name="return" type="tns:Common.NetAddressSequenceSequenceSequence"/>
597
+ </message>
598
+
599
+ <message name="Security.FirewallRuleList.add_fw_rule_destination_addressRequest">
600
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
601
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
602
+ <part name="addresses" type="tns:Common.NetAddressSequenceSequenceSequence"/>
603
+ </message>
604
+ <message name="Security.FirewallRuleList.add_fw_rule_destination_addressResponse">
605
+ </message>
606
+
607
+ <message name="Security.FirewallRuleList.remove_fw_rule_destination_addressRequest">
608
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
609
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
610
+ <part name="addresses" type="tns:Common.NetAddressSequenceSequenceSequence"/>
611
+ </message>
612
+ <message name="Security.FirewallRuleList.remove_fw_rule_destination_addressResponse">
613
+ </message>
614
+
615
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_destination_addressesRequest">
616
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
617
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
618
+ </message>
619
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_destination_addressesResponse">
620
+ </message>
621
+
622
+ <message name="Security.FirewallRuleList.set_fw_rule_destination_address_descriptionRequest">
623
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
624
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
625
+ <part name="addresses" type="tns:Common.NetAddressSequenceSequenceSequence"/>
626
+ <part name="descriptions" type="tns:Common.StringSequenceSequenceSequence"/>
627
+ </message>
628
+ <message name="Security.FirewallRuleList.set_fw_rule_destination_address_descriptionResponse">
629
+ </message>
630
+
631
+ <message name="Security.FirewallRuleList.get_fw_rule_destination_address_descriptionRequest">
632
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
633
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
634
+ <part name="addresses" type="tns:Common.NetAddressSequenceSequenceSequence"/>
635
+ </message>
636
+ <message name="Security.FirewallRuleList.get_fw_rule_destination_address_descriptionResponse">
637
+ <part name="return" type="tns:Common.StringSequenceSequenceSequence"/>
638
+ </message>
639
+
640
+ <message name="Security.FirewallRuleList.get_fw_rule_source_port_listRequest">
641
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
642
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
643
+ </message>
644
+ <message name="Security.FirewallRuleList.get_fw_rule_source_port_listResponse">
645
+ <part name="return" type="tns:Common.StringSequenceSequenceSequence"/>
646
+ </message>
647
+
648
+ <message name="Security.FirewallRuleList.add_fw_rule_source_port_listRequest">
649
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
650
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
651
+ <part name="lists" type="tns:Common.StringSequenceSequenceSequence"/>
652
+ </message>
653
+ <message name="Security.FirewallRuleList.add_fw_rule_source_port_listResponse">
654
+ </message>
655
+
656
+ <message name="Security.FirewallRuleList.remove_fw_rule_source_port_listRequest">
657
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
658
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
659
+ <part name="lists" type="tns:Common.StringSequenceSequenceSequence"/>
660
+ </message>
661
+ <message name="Security.FirewallRuleList.remove_fw_rule_source_port_listResponse">
662
+ </message>
663
+
664
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_source_port_listsRequest">
665
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
666
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
667
+ </message>
668
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_source_port_listsResponse">
669
+ </message>
670
+
671
+ <message name="Security.FirewallRuleList.get_fw_rule_source_portRequest">
672
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
673
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
674
+ </message>
675
+ <message name="Security.FirewallRuleList.get_fw_rule_source_portResponse">
676
+ <part name="return" type="tns:Common.PortRangeSequenceSequenceSequence"/>
677
+ </message>
678
+
679
+ <message name="Security.FirewallRuleList.add_fw_rule_source_portRequest">
680
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
681
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
682
+ <part name="ports" type="tns:Common.PortRangeSequenceSequenceSequence"/>
683
+ </message>
684
+ <message name="Security.FirewallRuleList.add_fw_rule_source_portResponse">
685
+ </message>
686
+
687
+ <message name="Security.FirewallRuleList.remove_fw_rule_source_portRequest">
688
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
689
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
690
+ <part name="ports" type="tns:Common.PortRangeSequenceSequenceSequence"/>
691
+ </message>
692
+ <message name="Security.FirewallRuleList.remove_fw_rule_source_portResponse">
693
+ </message>
694
+
695
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_source_portsRequest">
696
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
697
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
698
+ </message>
699
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_source_portsResponse">
700
+ </message>
701
+
702
+ <message name="Security.FirewallRuleList.set_fw_rule_source_port_descriptionRequest">
703
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
704
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
705
+ <part name="ports" type="tns:Common.PortRangeSequenceSequenceSequence"/>
706
+ <part name="descriptions" type="tns:Common.StringSequenceSequenceSequence"/>
707
+ </message>
708
+ <message name="Security.FirewallRuleList.set_fw_rule_source_port_descriptionResponse">
709
+ </message>
710
+
711
+ <message name="Security.FirewallRuleList.get_fw_rule_source_port_descriptionRequest">
712
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
713
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
714
+ <part name="ports" type="tns:Common.PortRangeSequenceSequenceSequence"/>
715
+ </message>
716
+ <message name="Security.FirewallRuleList.get_fw_rule_source_port_descriptionResponse">
717
+ <part name="return" type="tns:Common.StringSequenceSequenceSequence"/>
718
+ </message>
719
+
720
+ <message name="Security.FirewallRuleList.get_fw_rule_destination_port_listRequest">
721
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
722
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
723
+ </message>
724
+ <message name="Security.FirewallRuleList.get_fw_rule_destination_port_listResponse">
725
+ <part name="return" type="tns:Common.StringSequenceSequenceSequence"/>
726
+ </message>
727
+
728
+ <message name="Security.FirewallRuleList.add_fw_rule_destination_port_listRequest">
729
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
730
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
731
+ <part name="lists" type="tns:Common.StringSequenceSequenceSequence"/>
732
+ </message>
733
+ <message name="Security.FirewallRuleList.add_fw_rule_destination_port_listResponse">
734
+ </message>
735
+
736
+ <message name="Security.FirewallRuleList.remove_fw_rule_destination_port_listRequest">
737
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
738
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
739
+ <part name="lists" type="tns:Common.StringSequenceSequenceSequence"/>
740
+ </message>
741
+ <message name="Security.FirewallRuleList.remove_fw_rule_destination_port_listResponse">
742
+ </message>
743
+
744
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_destination_port_listsRequest">
745
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
746
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
747
+ </message>
748
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_destination_port_listsResponse">
749
+ </message>
750
+
751
+ <message name="Security.FirewallRuleList.get_fw_rule_destination_portRequest">
752
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
753
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
754
+ </message>
755
+ <message name="Security.FirewallRuleList.get_fw_rule_destination_portResponse">
756
+ <part name="return" type="tns:Common.PortRangeSequenceSequenceSequence"/>
757
+ </message>
758
+
759
+ <message name="Security.FirewallRuleList.add_fw_rule_destination_portRequest">
760
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
761
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
762
+ <part name="ports" type="tns:Common.PortRangeSequenceSequenceSequence"/>
763
+ </message>
764
+ <message name="Security.FirewallRuleList.add_fw_rule_destination_portResponse">
765
+ </message>
766
+
767
+ <message name="Security.FirewallRuleList.remove_fw_rule_destination_portRequest">
768
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
769
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
770
+ <part name="ports" type="tns:Common.PortRangeSequenceSequenceSequence"/>
771
+ </message>
772
+ <message name="Security.FirewallRuleList.remove_fw_rule_destination_portResponse">
773
+ </message>
774
+
775
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_destination_portsRequest">
776
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
777
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
778
+ </message>
779
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_destination_portsResponse">
780
+ </message>
781
+
782
+ <message name="Security.FirewallRuleList.set_fw_rule_destination_port_descriptionRequest">
783
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
784
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
785
+ <part name="ports" type="tns:Common.PortRangeSequenceSequenceSequence"/>
786
+ <part name="descriptions" type="tns:Common.StringSequenceSequenceSequence"/>
787
+ </message>
788
+ <message name="Security.FirewallRuleList.set_fw_rule_destination_port_descriptionResponse">
789
+ </message>
790
+
791
+ <message name="Security.FirewallRuleList.get_fw_rule_destination_port_descriptionRequest">
792
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
793
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
794
+ <part name="ports" type="tns:Common.PortRangeSequenceSequenceSequence"/>
795
+ </message>
796
+ <message name="Security.FirewallRuleList.get_fw_rule_destination_port_descriptionResponse">
797
+ <part name="return" type="tns:Common.StringSequenceSequenceSequence"/>
798
+ </message>
799
+
800
+ <message name="Security.FirewallRuleList.get_fw_rule_icmp_typecodeRequest">
801
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
802
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
803
+ </message>
804
+ <message name="Security.FirewallRuleList.get_fw_rule_icmp_typecodeResponse">
805
+ <part name="return" type="tns:Common.FirewallRuleICMPTypeCodeSequenceSequenceSequence"/>
806
+ </message>
807
+
808
+ <message name="Security.FirewallRuleList.add_fw_rule_icmp_typecodeRequest">
809
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
810
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
811
+ <part name="typecodes" type="tns:Common.FirewallRuleICMPTypeCodeSequenceSequenceSequence"/>
812
+ </message>
813
+ <message name="Security.FirewallRuleList.add_fw_rule_icmp_typecodeResponse">
814
+ </message>
815
+
816
+ <message name="Security.FirewallRuleList.remove_fw_rule_icmp_typecodeRequest">
817
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
818
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
819
+ <part name="typecodes" type="tns:Common.FirewallRuleICMPTypeCodeSequenceSequenceSequence"/>
820
+ </message>
821
+ <message name="Security.FirewallRuleList.remove_fw_rule_icmp_typecodeResponse">
822
+ </message>
823
+
824
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_icmp_typecodesRequest">
825
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
826
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
827
+ </message>
828
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_icmp_typecodesResponse">
829
+ </message>
830
+
831
+ <message name="Security.FirewallRuleList.set_fw_rule_icmp_typecode_descriptionRequest">
832
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
833
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
834
+ <part name="typecodes" type="tns:Common.FirewallRuleICMPTypeCodeSequenceSequenceSequence"/>
835
+ <part name="descriptions" type="tns:Common.StringSequenceSequenceSequence"/>
836
+ </message>
837
+ <message name="Security.FirewallRuleList.set_fw_rule_icmp_typecode_descriptionResponse">
838
+ </message>
839
+
840
+ <message name="Security.FirewallRuleList.get_fw_rule_icmp_typecode_descriptionRequest">
841
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
842
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
843
+ <part name="typecodes" type="tns:Common.FirewallRuleICMPTypeCodeSequenceSequenceSequence"/>
844
+ </message>
845
+ <message name="Security.FirewallRuleList.get_fw_rule_icmp_typecode_descriptionResponse">
846
+ <part name="return" type="tns:Common.StringSequenceSequenceSequence"/>
847
+ </message>
848
+
849
+ <message name="Security.FirewallRuleList.get_fw_rule_source_vlanRequest">
850
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
851
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
852
+ </message>
853
+ <message name="Security.FirewallRuleList.get_fw_rule_source_vlanResponse">
854
+ <part name="return" type="tns:Common.StringSequenceSequenceSequence"/>
855
+ </message>
856
+
857
+ <message name="Security.FirewallRuleList.add_fw_rule_source_vlanRequest">
858
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
859
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
860
+ <part name="vlans" type="tns:Common.StringSequenceSequenceSequence"/>
861
+ </message>
862
+ <message name="Security.FirewallRuleList.add_fw_rule_source_vlanResponse">
863
+ </message>
864
+
865
+ <message name="Security.FirewallRuleList.remove_fw_rule_source_vlanRequest">
866
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
867
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
868
+ <part name="vlans" type="tns:Common.StringSequenceSequenceSequence"/>
869
+ </message>
870
+ <message name="Security.FirewallRuleList.remove_fw_rule_source_vlanResponse">
871
+ </message>
872
+
873
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_source_vlansRequest">
874
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
875
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
876
+ </message>
877
+ <message name="Security.FirewallRuleList.remove_all_fw_rule_source_vlansResponse">
878
+ </message>
879
+
880
+ <message name="Security.FirewallRuleList.set_fw_rule_weekly_scheduleRequest">
881
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
882
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
883
+ <part name="schedules" type="tns:Common.StringSequenceSequence"/>
884
+ </message>
885
+ <message name="Security.FirewallRuleList.set_fw_rule_weekly_scheduleResponse">
886
+ </message>
887
+
888
+ <message name="Security.FirewallRuleList.get_fw_rule_weekly_scheduleRequest">
889
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
890
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
891
+ </message>
892
+ <message name="Security.FirewallRuleList.get_fw_rule_weekly_scheduleResponse">
893
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
894
+ </message>
895
+
896
+ <message name="Security.FirewallRuleList.set_fw_rule_protocolRequest">
897
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
898
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
899
+ <part name="protocols" type="tns:Common.ProtocolTypeSequenceSequence"/>
900
+ </message>
901
+ <message name="Security.FirewallRuleList.set_fw_rule_protocolResponse">
902
+ </message>
903
+
904
+ <message name="Security.FirewallRuleList.get_fw_rule_protocolRequest">
905
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
906
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
907
+ </message>
908
+ <message name="Security.FirewallRuleList.get_fw_rule_protocolResponse">
909
+ <part name="return" type="tns:Common.ProtocolTypeSequenceSequence"/>
910
+ </message>
911
+
912
+ <message name="Security.FirewallRuleList.set_fw_rule_protocol_numericRequest">
913
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
914
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
915
+ <part name="protocols" type="tns:Common.ULongSequenceSequence"/>
916
+ </message>
917
+ <message name="Security.FirewallRuleList.set_fw_rule_protocol_numericResponse">
918
+ </message>
919
+
920
+ <message name="Security.FirewallRuleList.get_fw_rule_protocol_numericRequest">
921
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
922
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
923
+ </message>
924
+ <message name="Security.FirewallRuleList.get_fw_rule_protocol_numericResponse">
925
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
926
+ </message>
927
+
928
+ <message name="Security.FirewallRuleList.set_fw_rule_actionRequest">
929
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
930
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
931
+ <part name="actions" type="tns:Common.FirewallRuleActionSequenceSequence"/>
932
+ </message>
933
+ <message name="Security.FirewallRuleList.set_fw_rule_actionResponse">
934
+ </message>
935
+
936
+ <message name="Security.FirewallRuleList.get_fw_rule_actionRequest">
937
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
938
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
939
+ </message>
940
+ <message name="Security.FirewallRuleList.get_fw_rule_actionResponse">
941
+ <part name="return" type="tns:Common.FirewallRuleActionSequenceSequence"/>
942
+ </message>
943
+
944
+ <message name="Security.FirewallRuleList.set_fw_rule_rule_listRequest">
945
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
946
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
947
+ <part name="lists" type="tns:Common.StringSequenceSequence"/>
948
+ </message>
949
+ <message name="Security.FirewallRuleList.set_fw_rule_rule_listResponse">
950
+ </message>
951
+
952
+ <message name="Security.FirewallRuleList.get_fw_rule_rule_listRequest">
953
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
954
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
955
+ </message>
956
+ <message name="Security.FirewallRuleList.get_fw_rule_rule_listResponse">
957
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
958
+ </message>
959
+
960
+ <message name="Security.FirewallRuleList.set_fw_rule_descriptionRequest">
961
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
962
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
963
+ <part name="descriptions" type="tns:Common.StringSequenceSequence"/>
964
+ </message>
965
+ <message name="Security.FirewallRuleList.set_fw_rule_descriptionResponse">
966
+ </message>
967
+
968
+ <message name="Security.FirewallRuleList.get_fw_rule_descriptionRequest">
969
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
970
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
971
+ </message>
972
+ <message name="Security.FirewallRuleList.get_fw_rule_descriptionResponse">
973
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
974
+ </message>
975
+
976
+ <message name="Security.FirewallRuleList.set_fw_rule_log_stateRequest">
977
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
978
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
979
+ <part name="states" type="tns:Common.EnabledStateSequenceSequence"/>
980
+ </message>
981
+ <message name="Security.FirewallRuleList.set_fw_rule_log_stateResponse">
982
+ </message>
983
+
984
+ <message name="Security.FirewallRuleList.get_fw_rule_log_stateRequest">
985
+ <part name="rule_lists" type="tns:Common.StringSequence"/>
986
+ <part name="rules" type="tns:Common.StringSequenceSequence"/>
987
+ </message>
988
+ <message name="Security.FirewallRuleList.get_fw_rule_log_stateResponse">
989
+ <part name="return" type="tns:Common.EnabledStateSequenceSequence"/>
990
+ </message>
991
+
992
+ <message name="Security.FirewallRuleList.get_versionRequest">
993
+ </message>
994
+ <message name="Security.FirewallRuleList.get_versionResponse">
995
+ <part name="return" type="xsd:string"/>
996
+ </message>
997
+
998
+ <!-- portType -->
999
+
1000
+ <portType name="Security.FirewallRuleListPortType">
1001
+ <operation name="get_list">
1002
+ <documentation>
1003
+ Gets the list of firewall rule lists on this device.
1004
+
1005
+ </documentation>
1006
+ <input message="tns:Security.FirewallRuleList.get_listRequest"/>
1007
+ <output message="tns:Security.FirewallRuleList.get_listResponse"/>
1008
+ </operation>
1009
+ <operation name="create">
1010
+ <documentation>
1011
+ Creates a firewall rule list.
1012
+
1013
+ </documentation>
1014
+ <input message="tns:Security.FirewallRuleList.createRequest"/>
1015
+ <output message="tns:Security.FirewallRuleList.createResponse"/>
1016
+ </operation>
1017
+ <operation name="delete_rule_list">
1018
+ <documentation>
1019
+ Deletes the specified firewall rule lists.
1020
+
1021
+ </documentation>
1022
+ <input message="tns:Security.FirewallRuleList.delete_rule_listRequest"/>
1023
+ <output message="tns:Security.FirewallRuleList.delete_rule_listResponse"/>
1024
+ </operation>
1025
+ <operation name="delete_all_rule_lists">
1026
+ <documentation>
1027
+ Deletes all firewall rule lists on this device.
1028
+
1029
+ </documentation>
1030
+ <input message="tns:Security.FirewallRuleList.delete_all_rule_listsRequest"/>
1031
+ <output message="tns:Security.FirewallRuleList.delete_all_rule_listsResponse"/>
1032
+ </operation>
1033
+ <operation name="set_description">
1034
+ <documentation>
1035
+ Sets the description for the specified firewall rule lists.
1036
+
1037
+ This is an arbitrary field which can be used for any purpose.
1038
+
1039
+ </documentation>
1040
+ <input message="tns:Security.FirewallRuleList.set_descriptionRequest"/>
1041
+ <output message="tns:Security.FirewallRuleList.set_descriptionResponse"/>
1042
+ </operation>
1043
+ <operation name="get_description">
1044
+ <documentation>
1045
+ Gets the descriptions for the specified firewall rule lists.
1046
+
1047
+ </documentation>
1048
+ <input message="tns:Security.FirewallRuleList.get_descriptionRequest"/>
1049
+ <output message="tns:Security.FirewallRuleList.get_descriptionResponse"/>
1050
+ </operation>
1051
+ <operation name="get_fw_rule">
1052
+ <documentation>
1053
+ Gets the firewall rules for the specified firewall rule lists.
1054
+
1055
+ </documentation>
1056
+ <input message="tns:Security.FirewallRuleList.get_fw_ruleRequest"/>
1057
+ <output message="tns:Security.FirewallRuleList.get_fw_ruleResponse"/>
1058
+ </operation>
1059
+ <operation name="add_fw_rule">
1060
+ <documentation>
1061
+ Adds firewall rules to the specified firewall rule lists.
1062
+
1063
+ Note that the abilities to add more than one rule or,
1064
+ especially, add partial rules and build them up introduce a
1065
+ need for best practices: (1) introduce the rule or rules
1066
+ initially disabled (using the states parameter) and enable
1067
+ them (or set them as scheduled) as a whole when you have
1068
+ them complete or (2) use transactions (see
1069
+ System::Session::start_transaction) to avoid accidentally
1070
+ putting partial rules or incomplete rule sets into place.
1071
+
1072
+ </documentation>
1073
+ <input message="tns:Security.FirewallRuleList.add_fw_ruleRequest"/>
1074
+ <output message="tns:Security.FirewallRuleList.add_fw_ruleResponse"/>
1075
+ </operation>
1076
+ <operation name="remove_fw_rule">
1077
+ <documentation>
1078
+ Removes firewall rules from the specified firewall rule lists.
1079
+
1080
+ </documentation>
1081
+ <input message="tns:Security.FirewallRuleList.remove_fw_ruleRequest"/>
1082
+ <output message="tns:Security.FirewallRuleList.remove_fw_ruleResponse"/>
1083
+ </operation>
1084
+ <operation name="remove_all_fw_rules">
1085
+ <documentation>
1086
+ Removes all firewall rules from the specified firewall rule lists.
1087
+
1088
+ </documentation>
1089
+ <input message="tns:Security.FirewallRuleList.remove_all_fw_rulesRequest"/>
1090
+ <output message="tns:Security.FirewallRuleList.remove_all_fw_rulesResponse"/>
1091
+ </operation>
1092
+ <operation name="set_fw_rule_state">
1093
+ <documentation>
1094
+ Sets the state for the specified firewall rules.
1095
+
1096
+ You can add a rule as enabled or disabled initially, build
1097
+ it up, then enable it. You can temporarily disable a rule
1098
+ with no other effect on it, so that it can be enabled
1099
+ easily later without having to rebuild it. You can use the
1100
+ state of FW_RULE_STATE_SCHEDULED to enable scheduling for the
1101
+ rule. See add_fw_rule for more information.
1102
+
1103
+ </documentation>
1104
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_stateRequest"/>
1105
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_stateResponse"/>
1106
+ </operation>
1107
+ <operation name="get_fw_rule_state">
1108
+ <documentation>
1109
+ Gets the state for the specified firewall rules.
1110
+
1111
+ </documentation>
1112
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_stateRequest"/>
1113
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_stateResponse"/>
1114
+ </operation>
1115
+ <operation name="set_fw_rule_order">
1116
+ <documentation>
1117
+ Sets the order (numerically) for the specified firewall rules.
1118
+
1119
+ Two rules can't have the same order, so one must manage
1120
+ order carefully if using numeric order to arrange firewall
1121
+ rules. See add_fw_rule for more information.
1122
+
1123
+ </documentation>
1124
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_orderRequest"/>
1125
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_orderResponse"/>
1126
+ </operation>
1127
+ <operation name="get_fw_rule_order">
1128
+ <documentation>
1129
+ Gets the order (numerically) for the specified firewall rules.
1130
+
1131
+ </documentation>
1132
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_orderRequest"/>
1133
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_orderResponse"/>
1134
+ </operation>
1135
+ <operation name="get_fw_rule_source_address_list">
1136
+ <documentation>
1137
+ Gets source address lists for the specified firewall rules.
1138
+
1139
+ </documentation>
1140
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_source_address_listRequest"/>
1141
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_source_address_listResponse"/>
1142
+ </operation>
1143
+ <operation name="add_fw_rule_source_address_list">
1144
+ <documentation>
1145
+ Adds source address lists to the specified firewall rules.
1146
+
1147
+ </documentation>
1148
+ <input message="tns:Security.FirewallRuleList.add_fw_rule_source_address_listRequest"/>
1149
+ <output message="tns:Security.FirewallRuleList.add_fw_rule_source_address_listResponse"/>
1150
+ </operation>
1151
+ <operation name="remove_fw_rule_source_address_list">
1152
+ <documentation>
1153
+ Removes source address lists from the specified firewall rules.
1154
+
1155
+ </documentation>
1156
+ <input message="tns:Security.FirewallRuleList.remove_fw_rule_source_address_listRequest"/>
1157
+ <output message="tns:Security.FirewallRuleList.remove_fw_rule_source_address_listResponse"/>
1158
+ </operation>
1159
+ <operation name="remove_all_fw_rule_source_address_lists">
1160
+ <documentation>
1161
+ Removes all source address lists from the specified firewall rules.
1162
+
1163
+ </documentation>
1164
+ <input message="tns:Security.FirewallRuleList.remove_all_fw_rule_source_address_listsRequest"/>
1165
+ <output message="tns:Security.FirewallRuleList.remove_all_fw_rule_source_address_listsResponse"/>
1166
+ </operation>
1167
+ <operation name="get_fw_rule_source_address">
1168
+ <documentation>
1169
+ Gets (inlined) source addresses for the specified firewall rules.
1170
+
1171
+ </documentation>
1172
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_source_addressRequest"/>
1173
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_source_addressResponse"/>
1174
+ </operation>
1175
+ <operation name="add_fw_rule_source_address">
1176
+ <documentation>
1177
+ Adds (inlined) source addresses to the specified firewall rules.
1178
+
1179
+ </documentation>
1180
+ <input message="tns:Security.FirewallRuleList.add_fw_rule_source_addressRequest"/>
1181
+ <output message="tns:Security.FirewallRuleList.add_fw_rule_source_addressResponse"/>
1182
+ </operation>
1183
+ <operation name="remove_fw_rule_source_address">
1184
+ <documentation>
1185
+ Removes (inlined) source addresses from the specified firewall rules.
1186
+
1187
+ </documentation>
1188
+ <input message="tns:Security.FirewallRuleList.remove_fw_rule_source_addressRequest"/>
1189
+ <output message="tns:Security.FirewallRuleList.remove_fw_rule_source_addressResponse"/>
1190
+ </operation>
1191
+ <operation name="remove_all_fw_rule_source_addresses">
1192
+ <documentation>
1193
+ Removes all (inlined) source addresses from the specified firewall rules.
1194
+
1195
+ </documentation>
1196
+ <input message="tns:Security.FirewallRuleList.remove_all_fw_rule_source_addressesRequest"/>
1197
+ <output message="tns:Security.FirewallRuleList.remove_all_fw_rule_source_addressesResponse"/>
1198
+ </operation>
1199
+ <operation name="set_fw_rule_source_address_description">
1200
+ <documentation>
1201
+ Sets the description for the specified firewall rules' source addresses.
1202
+
1203
+ This is an arbitrary field which can be used for any purpose.
1204
+
1205
+ </documentation>
1206
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_source_address_descriptionRequest"/>
1207
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_source_address_descriptionResponse"/>
1208
+ </operation>
1209
+ <operation name="get_fw_rule_source_address_description">
1210
+ <documentation>
1211
+ Gets the descriptions for the specified firewall rules' source addresses.
1212
+
1213
+ </documentation>
1214
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_source_address_descriptionRequest"/>
1215
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_source_address_descriptionResponse"/>
1216
+ </operation>
1217
+ <operation name="get_fw_rule_destination_address_list">
1218
+ <documentation>
1219
+ Gets destination address lists for the specified firewall rules.
1220
+
1221
+ </documentation>
1222
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_destination_address_listRequest"/>
1223
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_destination_address_listResponse"/>
1224
+ </operation>
1225
+ <operation name="add_fw_rule_destination_address_list">
1226
+ <documentation>
1227
+ Adds destination address lists to the specified firewall rules.
1228
+
1229
+ </documentation>
1230
+ <input message="tns:Security.FirewallRuleList.add_fw_rule_destination_address_listRequest"/>
1231
+ <output message="tns:Security.FirewallRuleList.add_fw_rule_destination_address_listResponse"/>
1232
+ </operation>
1233
+ <operation name="remove_fw_rule_destination_address_list">
1234
+ <documentation>
1235
+ Removes destination address lists from the specified firewall rules.
1236
+
1237
+ </documentation>
1238
+ <input message="tns:Security.FirewallRuleList.remove_fw_rule_destination_address_listRequest"/>
1239
+ <output message="tns:Security.FirewallRuleList.remove_fw_rule_destination_address_listResponse"/>
1240
+ </operation>
1241
+ <operation name="remove_all_fw_rule_destination_address_lists">
1242
+ <documentation>
1243
+ Removes all destination address lists from the specified firewall rules.
1244
+
1245
+ </documentation>
1246
+ <input message="tns:Security.FirewallRuleList.remove_all_fw_rule_destination_address_listsRequest"/>
1247
+ <output message="tns:Security.FirewallRuleList.remove_all_fw_rule_destination_address_listsResponse"/>
1248
+ </operation>
1249
+ <operation name="get_fw_rule_destination_address">
1250
+ <documentation>
1251
+ Gets (inlined) destination addresses for the specified firewall rules.
1252
+
1253
+ </documentation>
1254
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_destination_addressRequest"/>
1255
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_destination_addressResponse"/>
1256
+ </operation>
1257
+ <operation name="add_fw_rule_destination_address">
1258
+ <documentation>
1259
+ Adds (inlined) destination addresses to the specified firewall rules.
1260
+
1261
+ </documentation>
1262
+ <input message="tns:Security.FirewallRuleList.add_fw_rule_destination_addressRequest"/>
1263
+ <output message="tns:Security.FirewallRuleList.add_fw_rule_destination_addressResponse"/>
1264
+ </operation>
1265
+ <operation name="remove_fw_rule_destination_address">
1266
+ <documentation>
1267
+ Removes (inlined) destination addresses from the specified firewall rules.
1268
+
1269
+ </documentation>
1270
+ <input message="tns:Security.FirewallRuleList.remove_fw_rule_destination_addressRequest"/>
1271
+ <output message="tns:Security.FirewallRuleList.remove_fw_rule_destination_addressResponse"/>
1272
+ </operation>
1273
+ <operation name="remove_all_fw_rule_destination_addresses">
1274
+ <documentation>
1275
+ Removes all (inlined) destination addresses from the specified firewall rules.
1276
+
1277
+ </documentation>
1278
+ <input message="tns:Security.FirewallRuleList.remove_all_fw_rule_destination_addressesRequest"/>
1279
+ <output message="tns:Security.FirewallRuleList.remove_all_fw_rule_destination_addressesResponse"/>
1280
+ </operation>
1281
+ <operation name="set_fw_rule_destination_address_description">
1282
+ <documentation>
1283
+ Sets the description for the specified firewall rules' destination addresses.
1284
+
1285
+ This is an arbitrary field which can be used for any purpose.
1286
+
1287
+ </documentation>
1288
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_destination_address_descriptionRequest"/>
1289
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_destination_address_descriptionResponse"/>
1290
+ </operation>
1291
+ <operation name="get_fw_rule_destination_address_description">
1292
+ <documentation>
1293
+ Gets the descriptions for the specified firewall rules' destination addresses.
1294
+
1295
+ </documentation>
1296
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_destination_address_descriptionRequest"/>
1297
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_destination_address_descriptionResponse"/>
1298
+ </operation>
1299
+ <operation name="get_fw_rule_source_port_list">
1300
+ <documentation>
1301
+ Gets source port lists for the specified firewall rules.
1302
+
1303
+ </documentation>
1304
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_source_port_listRequest"/>
1305
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_source_port_listResponse"/>
1306
+ </operation>
1307
+ <operation name="add_fw_rule_source_port_list">
1308
+ <documentation>
1309
+ Adds source port lists to the specified firewall rules.
1310
+
1311
+ </documentation>
1312
+ <input message="tns:Security.FirewallRuleList.add_fw_rule_source_port_listRequest"/>
1313
+ <output message="tns:Security.FirewallRuleList.add_fw_rule_source_port_listResponse"/>
1314
+ </operation>
1315
+ <operation name="remove_fw_rule_source_port_list">
1316
+ <documentation>
1317
+ Removes source port lists from the specified firewall rules.
1318
+
1319
+ </documentation>
1320
+ <input message="tns:Security.FirewallRuleList.remove_fw_rule_source_port_listRequest"/>
1321
+ <output message="tns:Security.FirewallRuleList.remove_fw_rule_source_port_listResponse"/>
1322
+ </operation>
1323
+ <operation name="remove_all_fw_rule_source_port_lists">
1324
+ <documentation>
1325
+ Removes all source port lists from the specified firewall rules.
1326
+
1327
+ </documentation>
1328
+ <input message="tns:Security.FirewallRuleList.remove_all_fw_rule_source_port_listsRequest"/>
1329
+ <output message="tns:Security.FirewallRuleList.remove_all_fw_rule_source_port_listsResponse"/>
1330
+ </operation>
1331
+ <operation name="get_fw_rule_source_port">
1332
+ <documentation>
1333
+ Gets (inlined) source ports for the specified firewall rules.
1334
+
1335
+ </documentation>
1336
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_source_portRequest"/>
1337
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_source_portResponse"/>
1338
+ </operation>
1339
+ <operation name="add_fw_rule_source_port">
1340
+ <documentation>
1341
+ Adds (inlined) source ports to the specified firewall rules.
1342
+
1343
+ </documentation>
1344
+ <input message="tns:Security.FirewallRuleList.add_fw_rule_source_portRequest"/>
1345
+ <output message="tns:Security.FirewallRuleList.add_fw_rule_source_portResponse"/>
1346
+ </operation>
1347
+ <operation name="remove_fw_rule_source_port">
1348
+ <documentation>
1349
+ Removes (inlined) source ports from the specified firewall rules.
1350
+
1351
+ </documentation>
1352
+ <input message="tns:Security.FirewallRuleList.remove_fw_rule_source_portRequest"/>
1353
+ <output message="tns:Security.FirewallRuleList.remove_fw_rule_source_portResponse"/>
1354
+ </operation>
1355
+ <operation name="remove_all_fw_rule_source_ports">
1356
+ <documentation>
1357
+ Removes all (inlined) source ports from the specified firewall rules.
1358
+
1359
+ </documentation>
1360
+ <input message="tns:Security.FirewallRuleList.remove_all_fw_rule_source_portsRequest"/>
1361
+ <output message="tns:Security.FirewallRuleList.remove_all_fw_rule_source_portsResponse"/>
1362
+ </operation>
1363
+ <operation name="set_fw_rule_source_port_description">
1364
+ <documentation>
1365
+ Sets the description for the specified firewall rules' (inlined) source ports.
1366
+
1367
+ This is an arbitrary field which can be used for any purpose.
1368
+
1369
+ </documentation>
1370
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_source_port_descriptionRequest"/>
1371
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_source_port_descriptionResponse"/>
1372
+ </operation>
1373
+ <operation name="get_fw_rule_source_port_description">
1374
+ <documentation>
1375
+ Gets the descriptions for the specified firewall rules' (inlined) source ports.
1376
+
1377
+ </documentation>
1378
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_source_port_descriptionRequest"/>
1379
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_source_port_descriptionResponse"/>
1380
+ </operation>
1381
+ <operation name="get_fw_rule_destination_port_list">
1382
+ <documentation>
1383
+ Gets destination port lists for the specified firewall rules.
1384
+
1385
+ </documentation>
1386
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_destination_port_listRequest"/>
1387
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_destination_port_listResponse"/>
1388
+ </operation>
1389
+ <operation name="add_fw_rule_destination_port_list">
1390
+ <documentation>
1391
+ Adds destination port lists to the specified firewall rules.
1392
+
1393
+ </documentation>
1394
+ <input message="tns:Security.FirewallRuleList.add_fw_rule_destination_port_listRequest"/>
1395
+ <output message="tns:Security.FirewallRuleList.add_fw_rule_destination_port_listResponse"/>
1396
+ </operation>
1397
+ <operation name="remove_fw_rule_destination_port_list">
1398
+ <documentation>
1399
+ Removes destination port lists from the specified firewall rules.
1400
+
1401
+ </documentation>
1402
+ <input message="tns:Security.FirewallRuleList.remove_fw_rule_destination_port_listRequest"/>
1403
+ <output message="tns:Security.FirewallRuleList.remove_fw_rule_destination_port_listResponse"/>
1404
+ </operation>
1405
+ <operation name="remove_all_fw_rule_destination_port_lists">
1406
+ <documentation>
1407
+ Removes all destination port lists from the specified firewall rules.
1408
+
1409
+ </documentation>
1410
+ <input message="tns:Security.FirewallRuleList.remove_all_fw_rule_destination_port_listsRequest"/>
1411
+ <output message="tns:Security.FirewallRuleList.remove_all_fw_rule_destination_port_listsResponse"/>
1412
+ </operation>
1413
+ <operation name="get_fw_rule_destination_port">
1414
+ <documentation>
1415
+ Gets (inlined) destination ports for the specified firewall rules.
1416
+
1417
+ </documentation>
1418
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_destination_portRequest"/>
1419
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_destination_portResponse"/>
1420
+ </operation>
1421
+ <operation name="add_fw_rule_destination_port">
1422
+ <documentation>
1423
+ Adds (inlined) destination ports to the specified firewall rules.
1424
+
1425
+ </documentation>
1426
+ <input message="tns:Security.FirewallRuleList.add_fw_rule_destination_portRequest"/>
1427
+ <output message="tns:Security.FirewallRuleList.add_fw_rule_destination_portResponse"/>
1428
+ </operation>
1429
+ <operation name="remove_fw_rule_destination_port">
1430
+ <documentation>
1431
+ Removes (inlined) destination ports from the specified firewall rules.
1432
+
1433
+ </documentation>
1434
+ <input message="tns:Security.FirewallRuleList.remove_fw_rule_destination_portRequest"/>
1435
+ <output message="tns:Security.FirewallRuleList.remove_fw_rule_destination_portResponse"/>
1436
+ </operation>
1437
+ <operation name="remove_all_fw_rule_destination_ports">
1438
+ <documentation>
1439
+ Removes all (inlined) destination ports from the specified firewall rules.
1440
+
1441
+ </documentation>
1442
+ <input message="tns:Security.FirewallRuleList.remove_all_fw_rule_destination_portsRequest"/>
1443
+ <output message="tns:Security.FirewallRuleList.remove_all_fw_rule_destination_portsResponse"/>
1444
+ </operation>
1445
+ <operation name="set_fw_rule_destination_port_description">
1446
+ <documentation>
1447
+ Sets the description for the specified firewall rules' (inlined) destination ports.
1448
+
1449
+ This is an arbitrary field which can be used for any purpose.
1450
+
1451
+ </documentation>
1452
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_destination_port_descriptionRequest"/>
1453
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_destination_port_descriptionResponse"/>
1454
+ </operation>
1455
+ <operation name="get_fw_rule_destination_port_description">
1456
+ <documentation>
1457
+ Gets the descriptions for the specified firewall rules' (inlined) destination ports.
1458
+
1459
+ </documentation>
1460
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_destination_port_descriptionRequest"/>
1461
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_destination_port_descriptionResponse"/>
1462
+ </operation>
1463
+ <operation name="get_fw_rule_icmp_typecode">
1464
+ <documentation>
1465
+ Gets (inlined) ICMP type/code values for the specified firewall rules.
1466
+ A value of 255 for either ICMP type or code is a wildcard value.
1467
+
1468
+ </documentation>
1469
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_icmp_typecodeRequest"/>
1470
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_icmp_typecodeResponse"/>
1471
+ </operation>
1472
+ <operation name="add_fw_rule_icmp_typecode">
1473
+ <documentation>
1474
+ Adds (inlined) ICMP type/code values to the specified firewall rules.
1475
+
1476
+ </documentation>
1477
+ <input message="tns:Security.FirewallRuleList.add_fw_rule_icmp_typecodeRequest"/>
1478
+ <output message="tns:Security.FirewallRuleList.add_fw_rule_icmp_typecodeResponse"/>
1479
+ </operation>
1480
+ <operation name="remove_fw_rule_icmp_typecode">
1481
+ <documentation>
1482
+ Removes (inlined) ICMP type/code values from the specified firewall rules.
1483
+
1484
+ </documentation>
1485
+ <input message="tns:Security.FirewallRuleList.remove_fw_rule_icmp_typecodeRequest"/>
1486
+ <output message="tns:Security.FirewallRuleList.remove_fw_rule_icmp_typecodeResponse"/>
1487
+ </operation>
1488
+ <operation name="remove_all_fw_rule_icmp_typecodes">
1489
+ <documentation>
1490
+ Removes all (inlined) ICMP type/code values from the specified firewall rules.
1491
+
1492
+ </documentation>
1493
+ <input message="tns:Security.FirewallRuleList.remove_all_fw_rule_icmp_typecodesRequest"/>
1494
+ <output message="tns:Security.FirewallRuleList.remove_all_fw_rule_icmp_typecodesResponse"/>
1495
+ </operation>
1496
+ <operation name="set_fw_rule_icmp_typecode_description">
1497
+ <documentation>
1498
+ Sets the description for the specified firewall rules' (inlined) ICMP type/code values.
1499
+
1500
+ This is an arbitrary field which can be used for any purpose.
1501
+
1502
+ </documentation>
1503
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_icmp_typecode_descriptionRequest"/>
1504
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_icmp_typecode_descriptionResponse"/>
1505
+ </operation>
1506
+ <operation name="get_fw_rule_icmp_typecode_description">
1507
+ <documentation>
1508
+ Gets the descriptions for the specified firewall rules' (inlined) ICMP type/code values.
1509
+
1510
+ </documentation>
1511
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_icmp_typecode_descriptionRequest"/>
1512
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_icmp_typecode_descriptionResponse"/>
1513
+ </operation>
1514
+ <operation name="get_fw_rule_source_vlan">
1515
+ <documentation>
1516
+ Gets source VLANs for the specified firewall rules.
1517
+
1518
+ </documentation>
1519
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_source_vlanRequest"/>
1520
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_source_vlanResponse"/>
1521
+ </operation>
1522
+ <operation name="add_fw_rule_source_vlan">
1523
+ <documentation>
1524
+ Adds source VLANs to the specified firewall rules.
1525
+
1526
+ </documentation>
1527
+ <input message="tns:Security.FirewallRuleList.add_fw_rule_source_vlanRequest"/>
1528
+ <output message="tns:Security.FirewallRuleList.add_fw_rule_source_vlanResponse"/>
1529
+ </operation>
1530
+ <operation name="remove_fw_rule_source_vlan">
1531
+ <documentation>
1532
+ Removes source VLANs from the specified firewall rules.
1533
+
1534
+ </documentation>
1535
+ <input message="tns:Security.FirewallRuleList.remove_fw_rule_source_vlanRequest"/>
1536
+ <output message="tns:Security.FirewallRuleList.remove_fw_rule_source_vlanResponse"/>
1537
+ </operation>
1538
+ <operation name="remove_all_fw_rule_source_vlans">
1539
+ <documentation>
1540
+ Removes all source VLANs from the specified firewall rules.
1541
+
1542
+ </documentation>
1543
+ <input message="tns:Security.FirewallRuleList.remove_all_fw_rule_source_vlansRequest"/>
1544
+ <output message="tns:Security.FirewallRuleList.remove_all_fw_rule_source_vlansResponse"/>
1545
+ </operation>
1546
+ <operation name="set_fw_rule_weekly_schedule">
1547
+ <documentation>
1548
+ Sets a weekly schedule for the specified firewall rules.
1549
+ See Security::FirewallWeeklySchedule for how to create and
1550
+ manipulate weekly schedules.
1551
+
1552
+ </documentation>
1553
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_weekly_scheduleRequest"/>
1554
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_weekly_scheduleResponse"/>
1555
+ </operation>
1556
+ <operation name="get_fw_rule_weekly_schedule">
1557
+ <documentation>
1558
+ Gets a weekly schedule for the specified firewall rules.
1559
+
1560
+ </documentation>
1561
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_weekly_scheduleRequest"/>
1562
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_weekly_scheduleResponse"/>
1563
+ </operation>
1564
+ <operation name="set_fw_rule_protocol">
1565
+ <documentation>
1566
+ Sets the (IP) protocol for the specified firewall rules.
1567
+
1568
+ Note: if the protocol is not one of the supported standard
1569
+ protocols, use set_fw_rule_protocol_numeric.
1570
+
1571
+ </documentation>
1572
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_protocolRequest"/>
1573
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_protocolResponse"/>
1574
+ </operation>
1575
+ <operation name="get_fw_rule_protocol">
1576
+ <documentation>
1577
+ Gets the (IP) protocol for the specified firewall rules.
1578
+
1579
+ </documentation>
1580
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_protocolRequest"/>
1581
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_protocolResponse"/>
1582
+ </operation>
1583
+ <operation name="set_fw_rule_protocol_numeric">
1584
+ <documentation>
1585
+ Sets the IP protocol (numerically) for the specified firewall rules.
1586
+
1587
+ </documentation>
1588
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_protocol_numericRequest"/>
1589
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_protocol_numericResponse"/>
1590
+ </operation>
1591
+ <operation name="get_fw_rule_protocol_numeric">
1592
+ <documentation>
1593
+ Gets the IP protocol (numerically) for the specified firewall rules.
1594
+
1595
+ </documentation>
1596
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_protocol_numericRequest"/>
1597
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_protocol_numericResponse"/>
1598
+ </operation>
1599
+ <operation name="set_fw_rule_action">
1600
+ <documentation>
1601
+ Sets the action for the specified firewall rules.
1602
+
1603
+ </documentation>
1604
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_actionRequest"/>
1605
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_actionResponse"/>
1606
+ </operation>
1607
+ <operation name="get_fw_rule_action">
1608
+ <documentation>
1609
+ Gets the action for the specified firewall rules.
1610
+
1611
+ </documentation>
1612
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_actionRequest"/>
1613
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_actionResponse"/>
1614
+ </operation>
1615
+ <operation name="set_fw_rule_rule_list">
1616
+ <documentation>
1617
+ Sets the rule list for the specified firewall rules.
1618
+
1619
+ If a list is specified then the system will validate that
1620
+ no other properties were specified in the current
1621
+ transaction, and will clear all other match criteria fields
1622
+ (src, dst, ip protocol, et cetera).
1623
+
1624
+ The empty string means no rule list.
1625
+
1626
+ Note: this method is reserved for future use, and the
1627
+ functionality (rule list on firewall rule list rules) is
1628
+ unsupported by the system.
1629
+
1630
+ </documentation>
1631
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_rule_listRequest"/>
1632
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_rule_listResponse"/>
1633
+ </operation>
1634
+ <operation name="get_fw_rule_rule_list">
1635
+ <documentation>
1636
+ Gets the rule list for the specified firewall rules.
1637
+
1638
+ Note: this method is reserved for future use, and the
1639
+ functionality (rule list on firewall rule list rules) is
1640
+ unsupported by the system.
1641
+
1642
+ </documentation>
1643
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_rule_listRequest"/>
1644
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_rule_listResponse"/>
1645
+ </operation>
1646
+ <operation name="set_fw_rule_description">
1647
+ <documentation>
1648
+ Sets the description for the specified firewall rules.
1649
+
1650
+ This is an arbitrary field which can be used for any purpose.
1651
+
1652
+ </documentation>
1653
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_descriptionRequest"/>
1654
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_descriptionResponse"/>
1655
+ </operation>
1656
+ <operation name="get_fw_rule_description">
1657
+ <documentation>
1658
+ Gets the descriptions for the specified firewall rules.
1659
+
1660
+ </documentation>
1661
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_descriptionRequest"/>
1662
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_descriptionResponse"/>
1663
+ </operation>
1664
+ <operation name="set_fw_rule_log_state">
1665
+ <documentation>
1666
+ Sets the logging property for the specified firewall rules.
1667
+ Specifies whether the security software should write a log entry
1668
+ for all packets that match this rule. You must also enable network
1669
+ filter logging in the "security log profile" component for this
1670
+ option to have any effect. Note that the security software always
1671
+ increments the statistics counter when a packet matches a rule,
1672
+ no matter how you set this option.
1673
+
1674
+ </documentation>
1675
+ <input message="tns:Security.FirewallRuleList.set_fw_rule_log_stateRequest"/>
1676
+ <output message="tns:Security.FirewallRuleList.set_fw_rule_log_stateResponse"/>
1677
+ </operation>
1678
+ <operation name="get_fw_rule_log_state">
1679
+ <documentation>
1680
+ Gets the logging property for the specified firewall rules.
1681
+
1682
+ </documentation>
1683
+ <input message="tns:Security.FirewallRuleList.get_fw_rule_log_stateRequest"/>
1684
+ <output message="tns:Security.FirewallRuleList.get_fw_rule_log_stateResponse"/>
1685
+ </operation>
1686
+ <operation name="get_version">
1687
+ <documentation>
1688
+ Gets the version information for this interface.
1689
+
1690
+ </documentation>
1691
+ <input message="tns:Security.FirewallRuleList.get_versionRequest"/>
1692
+ <output message="tns:Security.FirewallRuleList.get_versionResponse"/>
1693
+ </operation>
1694
+ </portType>
1695
+
1696
+ <!-- binding -->
1697
+
1698
+ <binding name="Security.FirewallRuleListBinding" type="tns:Security.FirewallRuleListPortType">
1699
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
1700
+ <operation name="get_list">
1701
+ <documentation>
1702
+ Gets the list of firewall rule lists on this device.
1703
+
1704
+ </documentation>
1705
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1706
+ <input>
1707
+ <soap:body
1708
+ use="encoded"
1709
+ namespace="urn:iControl:Security/FirewallRuleList"
1710
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1711
+ </input>
1712
+ <output>
1713
+ <soap:body
1714
+ use="encoded"
1715
+ namespace="urn:iControl:Security/FirewallRuleList"
1716
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1717
+ </output>
1718
+ </operation>
1719
+
1720
+ <operation name="create">
1721
+ <documentation>
1722
+ Creates a firewall rule list.
1723
+
1724
+ </documentation>
1725
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1726
+ <input>
1727
+ <soap:body
1728
+ use="encoded"
1729
+ namespace="urn:iControl:Security/FirewallRuleList"
1730
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1731
+ </input>
1732
+ <output>
1733
+ <soap:body
1734
+ use="encoded"
1735
+ namespace="urn:iControl:Security/FirewallRuleList"
1736
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1737
+ </output>
1738
+ </operation>
1739
+
1740
+ <operation name="delete_rule_list">
1741
+ <documentation>
1742
+ Deletes the specified firewall rule lists.
1743
+
1744
+ </documentation>
1745
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1746
+ <input>
1747
+ <soap:body
1748
+ use="encoded"
1749
+ namespace="urn:iControl:Security/FirewallRuleList"
1750
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1751
+ </input>
1752
+ <output>
1753
+ <soap:body
1754
+ use="encoded"
1755
+ namespace="urn:iControl:Security/FirewallRuleList"
1756
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1757
+ </output>
1758
+ </operation>
1759
+
1760
+ <operation name="delete_all_rule_lists">
1761
+ <documentation>
1762
+ Deletes all firewall rule lists on this device.
1763
+
1764
+ </documentation>
1765
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1766
+ <input>
1767
+ <soap:body
1768
+ use="encoded"
1769
+ namespace="urn:iControl:Security/FirewallRuleList"
1770
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1771
+ </input>
1772
+ <output>
1773
+ <soap:body
1774
+ use="encoded"
1775
+ namespace="urn:iControl:Security/FirewallRuleList"
1776
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1777
+ </output>
1778
+ </operation>
1779
+
1780
+ <operation name="set_description">
1781
+ <documentation>
1782
+ Sets the description for the specified firewall rule lists.
1783
+
1784
+ This is an arbitrary field which can be used for any purpose.
1785
+
1786
+ </documentation>
1787
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1788
+ <input>
1789
+ <soap:body
1790
+ use="encoded"
1791
+ namespace="urn:iControl:Security/FirewallRuleList"
1792
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1793
+ </input>
1794
+ <output>
1795
+ <soap:body
1796
+ use="encoded"
1797
+ namespace="urn:iControl:Security/FirewallRuleList"
1798
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1799
+ </output>
1800
+ </operation>
1801
+
1802
+ <operation name="get_description">
1803
+ <documentation>
1804
+ Gets the descriptions for the specified firewall rule lists.
1805
+
1806
+ </documentation>
1807
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1808
+ <input>
1809
+ <soap:body
1810
+ use="encoded"
1811
+ namespace="urn:iControl:Security/FirewallRuleList"
1812
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1813
+ </input>
1814
+ <output>
1815
+ <soap:body
1816
+ use="encoded"
1817
+ namespace="urn:iControl:Security/FirewallRuleList"
1818
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1819
+ </output>
1820
+ </operation>
1821
+
1822
+ <operation name="get_fw_rule">
1823
+ <documentation>
1824
+ Gets the firewall rules for the specified firewall rule lists.
1825
+
1826
+ </documentation>
1827
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1828
+ <input>
1829
+ <soap:body
1830
+ use="encoded"
1831
+ namespace="urn:iControl:Security/FirewallRuleList"
1832
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1833
+ </input>
1834
+ <output>
1835
+ <soap:body
1836
+ use="encoded"
1837
+ namespace="urn:iControl:Security/FirewallRuleList"
1838
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1839
+ </output>
1840
+ </operation>
1841
+
1842
+ <operation name="add_fw_rule">
1843
+ <documentation>
1844
+ Adds firewall rules to the specified firewall rule lists.
1845
+
1846
+ Note that the abilities to add more than one rule or,
1847
+ especially, add partial rules and build them up introduce a
1848
+ need for best practices: (1) introduce the rule or rules
1849
+ initially disabled (using the states parameter) and enable
1850
+ them (or set them as scheduled) as a whole when you have
1851
+ them complete or (2) use transactions (see
1852
+ System::Session::start_transaction) to avoid accidentally
1853
+ putting partial rules or incomplete rule sets into place.
1854
+
1855
+ </documentation>
1856
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1857
+ <input>
1858
+ <soap:body
1859
+ use="encoded"
1860
+ namespace="urn:iControl:Security/FirewallRuleList"
1861
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1862
+ </input>
1863
+ <output>
1864
+ <soap:body
1865
+ use="encoded"
1866
+ namespace="urn:iControl:Security/FirewallRuleList"
1867
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1868
+ </output>
1869
+ </operation>
1870
+
1871
+ <operation name="remove_fw_rule">
1872
+ <documentation>
1873
+ Removes firewall rules from the specified firewall rule lists.
1874
+
1875
+ </documentation>
1876
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1877
+ <input>
1878
+ <soap:body
1879
+ use="encoded"
1880
+ namespace="urn:iControl:Security/FirewallRuleList"
1881
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1882
+ </input>
1883
+ <output>
1884
+ <soap:body
1885
+ use="encoded"
1886
+ namespace="urn:iControl:Security/FirewallRuleList"
1887
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1888
+ </output>
1889
+ </operation>
1890
+
1891
+ <operation name="remove_all_fw_rules">
1892
+ <documentation>
1893
+ Removes all firewall rules from the specified firewall rule lists.
1894
+
1895
+ </documentation>
1896
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1897
+ <input>
1898
+ <soap:body
1899
+ use="encoded"
1900
+ namespace="urn:iControl:Security/FirewallRuleList"
1901
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1902
+ </input>
1903
+ <output>
1904
+ <soap:body
1905
+ use="encoded"
1906
+ namespace="urn:iControl:Security/FirewallRuleList"
1907
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1908
+ </output>
1909
+ </operation>
1910
+
1911
+ <operation name="set_fw_rule_state">
1912
+ <documentation>
1913
+ Sets the state for the specified firewall rules.
1914
+
1915
+ You can add a rule as enabled or disabled initially, build
1916
+ it up, then enable it. You can temporarily disable a rule
1917
+ with no other effect on it, so that it can be enabled
1918
+ easily later without having to rebuild it. You can use the
1919
+ state of FW_RULE_STATE_SCHEDULED to enable scheduling for the
1920
+ rule. See add_fw_rule for more information.
1921
+
1922
+ </documentation>
1923
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1924
+ <input>
1925
+ <soap:body
1926
+ use="encoded"
1927
+ namespace="urn:iControl:Security/FirewallRuleList"
1928
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1929
+ </input>
1930
+ <output>
1931
+ <soap:body
1932
+ use="encoded"
1933
+ namespace="urn:iControl:Security/FirewallRuleList"
1934
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1935
+ </output>
1936
+ </operation>
1937
+
1938
+ <operation name="get_fw_rule_state">
1939
+ <documentation>
1940
+ Gets the state for the specified firewall rules.
1941
+
1942
+ </documentation>
1943
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1944
+ <input>
1945
+ <soap:body
1946
+ use="encoded"
1947
+ namespace="urn:iControl:Security/FirewallRuleList"
1948
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1949
+ </input>
1950
+ <output>
1951
+ <soap:body
1952
+ use="encoded"
1953
+ namespace="urn:iControl:Security/FirewallRuleList"
1954
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1955
+ </output>
1956
+ </operation>
1957
+
1958
+ <operation name="set_fw_rule_order">
1959
+ <documentation>
1960
+ Sets the order (numerically) for the specified firewall rules.
1961
+
1962
+ Two rules can't have the same order, so one must manage
1963
+ order carefully if using numeric order to arrange firewall
1964
+ rules. See add_fw_rule for more information.
1965
+
1966
+ </documentation>
1967
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1968
+ <input>
1969
+ <soap:body
1970
+ use="encoded"
1971
+ namespace="urn:iControl:Security/FirewallRuleList"
1972
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1973
+ </input>
1974
+ <output>
1975
+ <soap:body
1976
+ use="encoded"
1977
+ namespace="urn:iControl:Security/FirewallRuleList"
1978
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1979
+ </output>
1980
+ </operation>
1981
+
1982
+ <operation name="get_fw_rule_order">
1983
+ <documentation>
1984
+ Gets the order (numerically) for the specified firewall rules.
1985
+
1986
+ </documentation>
1987
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
1988
+ <input>
1989
+ <soap:body
1990
+ use="encoded"
1991
+ namespace="urn:iControl:Security/FirewallRuleList"
1992
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1993
+ </input>
1994
+ <output>
1995
+ <soap:body
1996
+ use="encoded"
1997
+ namespace="urn:iControl:Security/FirewallRuleList"
1998
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1999
+ </output>
2000
+ </operation>
2001
+
2002
+ <operation name="get_fw_rule_source_address_list">
2003
+ <documentation>
2004
+ Gets source address lists for the specified firewall rules.
2005
+
2006
+ </documentation>
2007
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2008
+ <input>
2009
+ <soap:body
2010
+ use="encoded"
2011
+ namespace="urn:iControl:Security/FirewallRuleList"
2012
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2013
+ </input>
2014
+ <output>
2015
+ <soap:body
2016
+ use="encoded"
2017
+ namespace="urn:iControl:Security/FirewallRuleList"
2018
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2019
+ </output>
2020
+ </operation>
2021
+
2022
+ <operation name="add_fw_rule_source_address_list">
2023
+ <documentation>
2024
+ Adds source address lists to the specified firewall rules.
2025
+
2026
+ </documentation>
2027
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2028
+ <input>
2029
+ <soap:body
2030
+ use="encoded"
2031
+ namespace="urn:iControl:Security/FirewallRuleList"
2032
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2033
+ </input>
2034
+ <output>
2035
+ <soap:body
2036
+ use="encoded"
2037
+ namespace="urn:iControl:Security/FirewallRuleList"
2038
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2039
+ </output>
2040
+ </operation>
2041
+
2042
+ <operation name="remove_fw_rule_source_address_list">
2043
+ <documentation>
2044
+ Removes source address lists from the specified firewall rules.
2045
+
2046
+ </documentation>
2047
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2048
+ <input>
2049
+ <soap:body
2050
+ use="encoded"
2051
+ namespace="urn:iControl:Security/FirewallRuleList"
2052
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2053
+ </input>
2054
+ <output>
2055
+ <soap:body
2056
+ use="encoded"
2057
+ namespace="urn:iControl:Security/FirewallRuleList"
2058
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2059
+ </output>
2060
+ </operation>
2061
+
2062
+ <operation name="remove_all_fw_rule_source_address_lists">
2063
+ <documentation>
2064
+ Removes all source address lists from the specified firewall rules.
2065
+
2066
+ </documentation>
2067
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2068
+ <input>
2069
+ <soap:body
2070
+ use="encoded"
2071
+ namespace="urn:iControl:Security/FirewallRuleList"
2072
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2073
+ </input>
2074
+ <output>
2075
+ <soap:body
2076
+ use="encoded"
2077
+ namespace="urn:iControl:Security/FirewallRuleList"
2078
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2079
+ </output>
2080
+ </operation>
2081
+
2082
+ <operation name="get_fw_rule_source_address">
2083
+ <documentation>
2084
+ Gets (inlined) source addresses for the specified firewall rules.
2085
+
2086
+ </documentation>
2087
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2088
+ <input>
2089
+ <soap:body
2090
+ use="encoded"
2091
+ namespace="urn:iControl:Security/FirewallRuleList"
2092
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2093
+ </input>
2094
+ <output>
2095
+ <soap:body
2096
+ use="encoded"
2097
+ namespace="urn:iControl:Security/FirewallRuleList"
2098
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2099
+ </output>
2100
+ </operation>
2101
+
2102
+ <operation name="add_fw_rule_source_address">
2103
+ <documentation>
2104
+ Adds (inlined) source addresses to the specified firewall rules.
2105
+
2106
+ </documentation>
2107
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2108
+ <input>
2109
+ <soap:body
2110
+ use="encoded"
2111
+ namespace="urn:iControl:Security/FirewallRuleList"
2112
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2113
+ </input>
2114
+ <output>
2115
+ <soap:body
2116
+ use="encoded"
2117
+ namespace="urn:iControl:Security/FirewallRuleList"
2118
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2119
+ </output>
2120
+ </operation>
2121
+
2122
+ <operation name="remove_fw_rule_source_address">
2123
+ <documentation>
2124
+ Removes (inlined) source addresses from the specified firewall rules.
2125
+
2126
+ </documentation>
2127
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2128
+ <input>
2129
+ <soap:body
2130
+ use="encoded"
2131
+ namespace="urn:iControl:Security/FirewallRuleList"
2132
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2133
+ </input>
2134
+ <output>
2135
+ <soap:body
2136
+ use="encoded"
2137
+ namespace="urn:iControl:Security/FirewallRuleList"
2138
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2139
+ </output>
2140
+ </operation>
2141
+
2142
+ <operation name="remove_all_fw_rule_source_addresses">
2143
+ <documentation>
2144
+ Removes all (inlined) source addresses from the specified firewall rules.
2145
+
2146
+ </documentation>
2147
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2148
+ <input>
2149
+ <soap:body
2150
+ use="encoded"
2151
+ namespace="urn:iControl:Security/FirewallRuleList"
2152
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2153
+ </input>
2154
+ <output>
2155
+ <soap:body
2156
+ use="encoded"
2157
+ namespace="urn:iControl:Security/FirewallRuleList"
2158
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2159
+ </output>
2160
+ </operation>
2161
+
2162
+ <operation name="set_fw_rule_source_address_description">
2163
+ <documentation>
2164
+ Sets the description for the specified firewall rules' source addresses.
2165
+
2166
+ This is an arbitrary field which can be used for any purpose.
2167
+
2168
+ </documentation>
2169
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2170
+ <input>
2171
+ <soap:body
2172
+ use="encoded"
2173
+ namespace="urn:iControl:Security/FirewallRuleList"
2174
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2175
+ </input>
2176
+ <output>
2177
+ <soap:body
2178
+ use="encoded"
2179
+ namespace="urn:iControl:Security/FirewallRuleList"
2180
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2181
+ </output>
2182
+ </operation>
2183
+
2184
+ <operation name="get_fw_rule_source_address_description">
2185
+ <documentation>
2186
+ Gets the descriptions for the specified firewall rules' source addresses.
2187
+
2188
+ </documentation>
2189
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2190
+ <input>
2191
+ <soap:body
2192
+ use="encoded"
2193
+ namespace="urn:iControl:Security/FirewallRuleList"
2194
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2195
+ </input>
2196
+ <output>
2197
+ <soap:body
2198
+ use="encoded"
2199
+ namespace="urn:iControl:Security/FirewallRuleList"
2200
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2201
+ </output>
2202
+ </operation>
2203
+
2204
+ <operation name="get_fw_rule_destination_address_list">
2205
+ <documentation>
2206
+ Gets destination address lists for the specified firewall rules.
2207
+
2208
+ </documentation>
2209
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2210
+ <input>
2211
+ <soap:body
2212
+ use="encoded"
2213
+ namespace="urn:iControl:Security/FirewallRuleList"
2214
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2215
+ </input>
2216
+ <output>
2217
+ <soap:body
2218
+ use="encoded"
2219
+ namespace="urn:iControl:Security/FirewallRuleList"
2220
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2221
+ </output>
2222
+ </operation>
2223
+
2224
+ <operation name="add_fw_rule_destination_address_list">
2225
+ <documentation>
2226
+ Adds destination address lists to the specified firewall rules.
2227
+
2228
+ </documentation>
2229
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2230
+ <input>
2231
+ <soap:body
2232
+ use="encoded"
2233
+ namespace="urn:iControl:Security/FirewallRuleList"
2234
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2235
+ </input>
2236
+ <output>
2237
+ <soap:body
2238
+ use="encoded"
2239
+ namespace="urn:iControl:Security/FirewallRuleList"
2240
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2241
+ </output>
2242
+ </operation>
2243
+
2244
+ <operation name="remove_fw_rule_destination_address_list">
2245
+ <documentation>
2246
+ Removes destination address lists from the specified firewall rules.
2247
+
2248
+ </documentation>
2249
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2250
+ <input>
2251
+ <soap:body
2252
+ use="encoded"
2253
+ namespace="urn:iControl:Security/FirewallRuleList"
2254
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2255
+ </input>
2256
+ <output>
2257
+ <soap:body
2258
+ use="encoded"
2259
+ namespace="urn:iControl:Security/FirewallRuleList"
2260
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2261
+ </output>
2262
+ </operation>
2263
+
2264
+ <operation name="remove_all_fw_rule_destination_address_lists">
2265
+ <documentation>
2266
+ Removes all destination address lists from the specified firewall rules.
2267
+
2268
+ </documentation>
2269
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2270
+ <input>
2271
+ <soap:body
2272
+ use="encoded"
2273
+ namespace="urn:iControl:Security/FirewallRuleList"
2274
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2275
+ </input>
2276
+ <output>
2277
+ <soap:body
2278
+ use="encoded"
2279
+ namespace="urn:iControl:Security/FirewallRuleList"
2280
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2281
+ </output>
2282
+ </operation>
2283
+
2284
+ <operation name="get_fw_rule_destination_address">
2285
+ <documentation>
2286
+ Gets (inlined) destination addresses for the specified firewall rules.
2287
+
2288
+ </documentation>
2289
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2290
+ <input>
2291
+ <soap:body
2292
+ use="encoded"
2293
+ namespace="urn:iControl:Security/FirewallRuleList"
2294
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2295
+ </input>
2296
+ <output>
2297
+ <soap:body
2298
+ use="encoded"
2299
+ namespace="urn:iControl:Security/FirewallRuleList"
2300
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2301
+ </output>
2302
+ </operation>
2303
+
2304
+ <operation name="add_fw_rule_destination_address">
2305
+ <documentation>
2306
+ Adds (inlined) destination addresses to the specified firewall rules.
2307
+
2308
+ </documentation>
2309
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2310
+ <input>
2311
+ <soap:body
2312
+ use="encoded"
2313
+ namespace="urn:iControl:Security/FirewallRuleList"
2314
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2315
+ </input>
2316
+ <output>
2317
+ <soap:body
2318
+ use="encoded"
2319
+ namespace="urn:iControl:Security/FirewallRuleList"
2320
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2321
+ </output>
2322
+ </operation>
2323
+
2324
+ <operation name="remove_fw_rule_destination_address">
2325
+ <documentation>
2326
+ Removes (inlined) destination addresses from the specified firewall rules.
2327
+
2328
+ </documentation>
2329
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2330
+ <input>
2331
+ <soap:body
2332
+ use="encoded"
2333
+ namespace="urn:iControl:Security/FirewallRuleList"
2334
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2335
+ </input>
2336
+ <output>
2337
+ <soap:body
2338
+ use="encoded"
2339
+ namespace="urn:iControl:Security/FirewallRuleList"
2340
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2341
+ </output>
2342
+ </operation>
2343
+
2344
+ <operation name="remove_all_fw_rule_destination_addresses">
2345
+ <documentation>
2346
+ Removes all (inlined) destination addresses from the specified firewall rules.
2347
+
2348
+ </documentation>
2349
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2350
+ <input>
2351
+ <soap:body
2352
+ use="encoded"
2353
+ namespace="urn:iControl:Security/FirewallRuleList"
2354
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2355
+ </input>
2356
+ <output>
2357
+ <soap:body
2358
+ use="encoded"
2359
+ namespace="urn:iControl:Security/FirewallRuleList"
2360
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2361
+ </output>
2362
+ </operation>
2363
+
2364
+ <operation name="set_fw_rule_destination_address_description">
2365
+ <documentation>
2366
+ Sets the description for the specified firewall rules' destination addresses.
2367
+
2368
+ This is an arbitrary field which can be used for any purpose.
2369
+
2370
+ </documentation>
2371
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2372
+ <input>
2373
+ <soap:body
2374
+ use="encoded"
2375
+ namespace="urn:iControl:Security/FirewallRuleList"
2376
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2377
+ </input>
2378
+ <output>
2379
+ <soap:body
2380
+ use="encoded"
2381
+ namespace="urn:iControl:Security/FirewallRuleList"
2382
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2383
+ </output>
2384
+ </operation>
2385
+
2386
+ <operation name="get_fw_rule_destination_address_description">
2387
+ <documentation>
2388
+ Gets the descriptions for the specified firewall rules' destination addresses.
2389
+
2390
+ </documentation>
2391
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2392
+ <input>
2393
+ <soap:body
2394
+ use="encoded"
2395
+ namespace="urn:iControl:Security/FirewallRuleList"
2396
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2397
+ </input>
2398
+ <output>
2399
+ <soap:body
2400
+ use="encoded"
2401
+ namespace="urn:iControl:Security/FirewallRuleList"
2402
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2403
+ </output>
2404
+ </operation>
2405
+
2406
+ <operation name="get_fw_rule_source_port_list">
2407
+ <documentation>
2408
+ Gets source port lists for the specified firewall rules.
2409
+
2410
+ </documentation>
2411
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2412
+ <input>
2413
+ <soap:body
2414
+ use="encoded"
2415
+ namespace="urn:iControl:Security/FirewallRuleList"
2416
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2417
+ </input>
2418
+ <output>
2419
+ <soap:body
2420
+ use="encoded"
2421
+ namespace="urn:iControl:Security/FirewallRuleList"
2422
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2423
+ </output>
2424
+ </operation>
2425
+
2426
+ <operation name="add_fw_rule_source_port_list">
2427
+ <documentation>
2428
+ Adds source port lists to the specified firewall rules.
2429
+
2430
+ </documentation>
2431
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2432
+ <input>
2433
+ <soap:body
2434
+ use="encoded"
2435
+ namespace="urn:iControl:Security/FirewallRuleList"
2436
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2437
+ </input>
2438
+ <output>
2439
+ <soap:body
2440
+ use="encoded"
2441
+ namespace="urn:iControl:Security/FirewallRuleList"
2442
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2443
+ </output>
2444
+ </operation>
2445
+
2446
+ <operation name="remove_fw_rule_source_port_list">
2447
+ <documentation>
2448
+ Removes source port lists from the specified firewall rules.
2449
+
2450
+ </documentation>
2451
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2452
+ <input>
2453
+ <soap:body
2454
+ use="encoded"
2455
+ namespace="urn:iControl:Security/FirewallRuleList"
2456
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2457
+ </input>
2458
+ <output>
2459
+ <soap:body
2460
+ use="encoded"
2461
+ namespace="urn:iControl:Security/FirewallRuleList"
2462
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2463
+ </output>
2464
+ </operation>
2465
+
2466
+ <operation name="remove_all_fw_rule_source_port_lists">
2467
+ <documentation>
2468
+ Removes all source port lists from the specified firewall rules.
2469
+
2470
+ </documentation>
2471
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2472
+ <input>
2473
+ <soap:body
2474
+ use="encoded"
2475
+ namespace="urn:iControl:Security/FirewallRuleList"
2476
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2477
+ </input>
2478
+ <output>
2479
+ <soap:body
2480
+ use="encoded"
2481
+ namespace="urn:iControl:Security/FirewallRuleList"
2482
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2483
+ </output>
2484
+ </operation>
2485
+
2486
+ <operation name="get_fw_rule_source_port">
2487
+ <documentation>
2488
+ Gets (inlined) source ports for the specified firewall rules.
2489
+
2490
+ </documentation>
2491
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2492
+ <input>
2493
+ <soap:body
2494
+ use="encoded"
2495
+ namespace="urn:iControl:Security/FirewallRuleList"
2496
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2497
+ </input>
2498
+ <output>
2499
+ <soap:body
2500
+ use="encoded"
2501
+ namespace="urn:iControl:Security/FirewallRuleList"
2502
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2503
+ </output>
2504
+ </operation>
2505
+
2506
+ <operation name="add_fw_rule_source_port">
2507
+ <documentation>
2508
+ Adds (inlined) source ports to the specified firewall rules.
2509
+
2510
+ </documentation>
2511
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2512
+ <input>
2513
+ <soap:body
2514
+ use="encoded"
2515
+ namespace="urn:iControl:Security/FirewallRuleList"
2516
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2517
+ </input>
2518
+ <output>
2519
+ <soap:body
2520
+ use="encoded"
2521
+ namespace="urn:iControl:Security/FirewallRuleList"
2522
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2523
+ </output>
2524
+ </operation>
2525
+
2526
+ <operation name="remove_fw_rule_source_port">
2527
+ <documentation>
2528
+ Removes (inlined) source ports from the specified firewall rules.
2529
+
2530
+ </documentation>
2531
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2532
+ <input>
2533
+ <soap:body
2534
+ use="encoded"
2535
+ namespace="urn:iControl:Security/FirewallRuleList"
2536
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2537
+ </input>
2538
+ <output>
2539
+ <soap:body
2540
+ use="encoded"
2541
+ namespace="urn:iControl:Security/FirewallRuleList"
2542
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2543
+ </output>
2544
+ </operation>
2545
+
2546
+ <operation name="remove_all_fw_rule_source_ports">
2547
+ <documentation>
2548
+ Removes all (inlined) source ports from the specified firewall rules.
2549
+
2550
+ </documentation>
2551
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2552
+ <input>
2553
+ <soap:body
2554
+ use="encoded"
2555
+ namespace="urn:iControl:Security/FirewallRuleList"
2556
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2557
+ </input>
2558
+ <output>
2559
+ <soap:body
2560
+ use="encoded"
2561
+ namespace="urn:iControl:Security/FirewallRuleList"
2562
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2563
+ </output>
2564
+ </operation>
2565
+
2566
+ <operation name="set_fw_rule_source_port_description">
2567
+ <documentation>
2568
+ Sets the description for the specified firewall rules' (inlined) source ports.
2569
+
2570
+ This is an arbitrary field which can be used for any purpose.
2571
+
2572
+ </documentation>
2573
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2574
+ <input>
2575
+ <soap:body
2576
+ use="encoded"
2577
+ namespace="urn:iControl:Security/FirewallRuleList"
2578
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2579
+ </input>
2580
+ <output>
2581
+ <soap:body
2582
+ use="encoded"
2583
+ namespace="urn:iControl:Security/FirewallRuleList"
2584
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2585
+ </output>
2586
+ </operation>
2587
+
2588
+ <operation name="get_fw_rule_source_port_description">
2589
+ <documentation>
2590
+ Gets the descriptions for the specified firewall rules' (inlined) source ports.
2591
+
2592
+ </documentation>
2593
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2594
+ <input>
2595
+ <soap:body
2596
+ use="encoded"
2597
+ namespace="urn:iControl:Security/FirewallRuleList"
2598
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2599
+ </input>
2600
+ <output>
2601
+ <soap:body
2602
+ use="encoded"
2603
+ namespace="urn:iControl:Security/FirewallRuleList"
2604
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2605
+ </output>
2606
+ </operation>
2607
+
2608
+ <operation name="get_fw_rule_destination_port_list">
2609
+ <documentation>
2610
+ Gets destination port lists for the specified firewall rules.
2611
+
2612
+ </documentation>
2613
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2614
+ <input>
2615
+ <soap:body
2616
+ use="encoded"
2617
+ namespace="urn:iControl:Security/FirewallRuleList"
2618
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2619
+ </input>
2620
+ <output>
2621
+ <soap:body
2622
+ use="encoded"
2623
+ namespace="urn:iControl:Security/FirewallRuleList"
2624
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2625
+ </output>
2626
+ </operation>
2627
+
2628
+ <operation name="add_fw_rule_destination_port_list">
2629
+ <documentation>
2630
+ Adds destination port lists to the specified firewall rules.
2631
+
2632
+ </documentation>
2633
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2634
+ <input>
2635
+ <soap:body
2636
+ use="encoded"
2637
+ namespace="urn:iControl:Security/FirewallRuleList"
2638
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2639
+ </input>
2640
+ <output>
2641
+ <soap:body
2642
+ use="encoded"
2643
+ namespace="urn:iControl:Security/FirewallRuleList"
2644
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2645
+ </output>
2646
+ </operation>
2647
+
2648
+ <operation name="remove_fw_rule_destination_port_list">
2649
+ <documentation>
2650
+ Removes destination port lists from the specified firewall rules.
2651
+
2652
+ </documentation>
2653
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2654
+ <input>
2655
+ <soap:body
2656
+ use="encoded"
2657
+ namespace="urn:iControl:Security/FirewallRuleList"
2658
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2659
+ </input>
2660
+ <output>
2661
+ <soap:body
2662
+ use="encoded"
2663
+ namespace="urn:iControl:Security/FirewallRuleList"
2664
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2665
+ </output>
2666
+ </operation>
2667
+
2668
+ <operation name="remove_all_fw_rule_destination_port_lists">
2669
+ <documentation>
2670
+ Removes all destination port lists from the specified firewall rules.
2671
+
2672
+ </documentation>
2673
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2674
+ <input>
2675
+ <soap:body
2676
+ use="encoded"
2677
+ namespace="urn:iControl:Security/FirewallRuleList"
2678
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2679
+ </input>
2680
+ <output>
2681
+ <soap:body
2682
+ use="encoded"
2683
+ namespace="urn:iControl:Security/FirewallRuleList"
2684
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2685
+ </output>
2686
+ </operation>
2687
+
2688
+ <operation name="get_fw_rule_destination_port">
2689
+ <documentation>
2690
+ Gets (inlined) destination ports for the specified firewall rules.
2691
+
2692
+ </documentation>
2693
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2694
+ <input>
2695
+ <soap:body
2696
+ use="encoded"
2697
+ namespace="urn:iControl:Security/FirewallRuleList"
2698
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2699
+ </input>
2700
+ <output>
2701
+ <soap:body
2702
+ use="encoded"
2703
+ namespace="urn:iControl:Security/FirewallRuleList"
2704
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2705
+ </output>
2706
+ </operation>
2707
+
2708
+ <operation name="add_fw_rule_destination_port">
2709
+ <documentation>
2710
+ Adds (inlined) destination ports to the specified firewall rules.
2711
+
2712
+ </documentation>
2713
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2714
+ <input>
2715
+ <soap:body
2716
+ use="encoded"
2717
+ namespace="urn:iControl:Security/FirewallRuleList"
2718
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2719
+ </input>
2720
+ <output>
2721
+ <soap:body
2722
+ use="encoded"
2723
+ namespace="urn:iControl:Security/FirewallRuleList"
2724
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2725
+ </output>
2726
+ </operation>
2727
+
2728
+ <operation name="remove_fw_rule_destination_port">
2729
+ <documentation>
2730
+ Removes (inlined) destination ports from the specified firewall rules.
2731
+
2732
+ </documentation>
2733
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2734
+ <input>
2735
+ <soap:body
2736
+ use="encoded"
2737
+ namespace="urn:iControl:Security/FirewallRuleList"
2738
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2739
+ </input>
2740
+ <output>
2741
+ <soap:body
2742
+ use="encoded"
2743
+ namespace="urn:iControl:Security/FirewallRuleList"
2744
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2745
+ </output>
2746
+ </operation>
2747
+
2748
+ <operation name="remove_all_fw_rule_destination_ports">
2749
+ <documentation>
2750
+ Removes all (inlined) destination ports from the specified firewall rules.
2751
+
2752
+ </documentation>
2753
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2754
+ <input>
2755
+ <soap:body
2756
+ use="encoded"
2757
+ namespace="urn:iControl:Security/FirewallRuleList"
2758
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2759
+ </input>
2760
+ <output>
2761
+ <soap:body
2762
+ use="encoded"
2763
+ namespace="urn:iControl:Security/FirewallRuleList"
2764
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2765
+ </output>
2766
+ </operation>
2767
+
2768
+ <operation name="set_fw_rule_destination_port_description">
2769
+ <documentation>
2770
+ Sets the description for the specified firewall rules' (inlined) destination ports.
2771
+
2772
+ This is an arbitrary field which can be used for any purpose.
2773
+
2774
+ </documentation>
2775
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2776
+ <input>
2777
+ <soap:body
2778
+ use="encoded"
2779
+ namespace="urn:iControl:Security/FirewallRuleList"
2780
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2781
+ </input>
2782
+ <output>
2783
+ <soap:body
2784
+ use="encoded"
2785
+ namespace="urn:iControl:Security/FirewallRuleList"
2786
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2787
+ </output>
2788
+ </operation>
2789
+
2790
+ <operation name="get_fw_rule_destination_port_description">
2791
+ <documentation>
2792
+ Gets the descriptions for the specified firewall rules' (inlined) destination ports.
2793
+
2794
+ </documentation>
2795
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2796
+ <input>
2797
+ <soap:body
2798
+ use="encoded"
2799
+ namespace="urn:iControl:Security/FirewallRuleList"
2800
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2801
+ </input>
2802
+ <output>
2803
+ <soap:body
2804
+ use="encoded"
2805
+ namespace="urn:iControl:Security/FirewallRuleList"
2806
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2807
+ </output>
2808
+ </operation>
2809
+
2810
+ <operation name="get_fw_rule_icmp_typecode">
2811
+ <documentation>
2812
+ Gets (inlined) ICMP type/code values for the specified firewall rules.
2813
+ A value of 255 for either ICMP type or code is a wildcard value.
2814
+
2815
+ </documentation>
2816
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2817
+ <input>
2818
+ <soap:body
2819
+ use="encoded"
2820
+ namespace="urn:iControl:Security/FirewallRuleList"
2821
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2822
+ </input>
2823
+ <output>
2824
+ <soap:body
2825
+ use="encoded"
2826
+ namespace="urn:iControl:Security/FirewallRuleList"
2827
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2828
+ </output>
2829
+ </operation>
2830
+
2831
+ <operation name="add_fw_rule_icmp_typecode">
2832
+ <documentation>
2833
+ Adds (inlined) ICMP type/code values to the specified firewall rules.
2834
+
2835
+ </documentation>
2836
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2837
+ <input>
2838
+ <soap:body
2839
+ use="encoded"
2840
+ namespace="urn:iControl:Security/FirewallRuleList"
2841
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2842
+ </input>
2843
+ <output>
2844
+ <soap:body
2845
+ use="encoded"
2846
+ namespace="urn:iControl:Security/FirewallRuleList"
2847
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2848
+ </output>
2849
+ </operation>
2850
+
2851
+ <operation name="remove_fw_rule_icmp_typecode">
2852
+ <documentation>
2853
+ Removes (inlined) ICMP type/code values from the specified firewall rules.
2854
+
2855
+ </documentation>
2856
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2857
+ <input>
2858
+ <soap:body
2859
+ use="encoded"
2860
+ namespace="urn:iControl:Security/FirewallRuleList"
2861
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2862
+ </input>
2863
+ <output>
2864
+ <soap:body
2865
+ use="encoded"
2866
+ namespace="urn:iControl:Security/FirewallRuleList"
2867
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2868
+ </output>
2869
+ </operation>
2870
+
2871
+ <operation name="remove_all_fw_rule_icmp_typecodes">
2872
+ <documentation>
2873
+ Removes all (inlined) ICMP type/code values from the specified firewall rules.
2874
+
2875
+ </documentation>
2876
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2877
+ <input>
2878
+ <soap:body
2879
+ use="encoded"
2880
+ namespace="urn:iControl:Security/FirewallRuleList"
2881
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2882
+ </input>
2883
+ <output>
2884
+ <soap:body
2885
+ use="encoded"
2886
+ namespace="urn:iControl:Security/FirewallRuleList"
2887
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2888
+ </output>
2889
+ </operation>
2890
+
2891
+ <operation name="set_fw_rule_icmp_typecode_description">
2892
+ <documentation>
2893
+ Sets the description for the specified firewall rules' (inlined) ICMP type/code values.
2894
+
2895
+ This is an arbitrary field which can be used for any purpose.
2896
+
2897
+ </documentation>
2898
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2899
+ <input>
2900
+ <soap:body
2901
+ use="encoded"
2902
+ namespace="urn:iControl:Security/FirewallRuleList"
2903
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2904
+ </input>
2905
+ <output>
2906
+ <soap:body
2907
+ use="encoded"
2908
+ namespace="urn:iControl:Security/FirewallRuleList"
2909
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2910
+ </output>
2911
+ </operation>
2912
+
2913
+ <operation name="get_fw_rule_icmp_typecode_description">
2914
+ <documentation>
2915
+ Gets the descriptions for the specified firewall rules' (inlined) ICMP type/code values.
2916
+
2917
+ </documentation>
2918
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2919
+ <input>
2920
+ <soap:body
2921
+ use="encoded"
2922
+ namespace="urn:iControl:Security/FirewallRuleList"
2923
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2924
+ </input>
2925
+ <output>
2926
+ <soap:body
2927
+ use="encoded"
2928
+ namespace="urn:iControl:Security/FirewallRuleList"
2929
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2930
+ </output>
2931
+ </operation>
2932
+
2933
+ <operation name="get_fw_rule_source_vlan">
2934
+ <documentation>
2935
+ Gets source VLANs for the specified firewall rules.
2936
+
2937
+ </documentation>
2938
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2939
+ <input>
2940
+ <soap:body
2941
+ use="encoded"
2942
+ namespace="urn:iControl:Security/FirewallRuleList"
2943
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2944
+ </input>
2945
+ <output>
2946
+ <soap:body
2947
+ use="encoded"
2948
+ namespace="urn:iControl:Security/FirewallRuleList"
2949
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2950
+ </output>
2951
+ </operation>
2952
+
2953
+ <operation name="add_fw_rule_source_vlan">
2954
+ <documentation>
2955
+ Adds source VLANs to the specified firewall rules.
2956
+
2957
+ </documentation>
2958
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2959
+ <input>
2960
+ <soap:body
2961
+ use="encoded"
2962
+ namespace="urn:iControl:Security/FirewallRuleList"
2963
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2964
+ </input>
2965
+ <output>
2966
+ <soap:body
2967
+ use="encoded"
2968
+ namespace="urn:iControl:Security/FirewallRuleList"
2969
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2970
+ </output>
2971
+ </operation>
2972
+
2973
+ <operation name="remove_fw_rule_source_vlan">
2974
+ <documentation>
2975
+ Removes source VLANs from the specified firewall rules.
2976
+
2977
+ </documentation>
2978
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2979
+ <input>
2980
+ <soap:body
2981
+ use="encoded"
2982
+ namespace="urn:iControl:Security/FirewallRuleList"
2983
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2984
+ </input>
2985
+ <output>
2986
+ <soap:body
2987
+ use="encoded"
2988
+ namespace="urn:iControl:Security/FirewallRuleList"
2989
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2990
+ </output>
2991
+ </operation>
2992
+
2993
+ <operation name="remove_all_fw_rule_source_vlans">
2994
+ <documentation>
2995
+ Removes all source VLANs from the specified firewall rules.
2996
+
2997
+ </documentation>
2998
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
2999
+ <input>
3000
+ <soap:body
3001
+ use="encoded"
3002
+ namespace="urn:iControl:Security/FirewallRuleList"
3003
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3004
+ </input>
3005
+ <output>
3006
+ <soap:body
3007
+ use="encoded"
3008
+ namespace="urn:iControl:Security/FirewallRuleList"
3009
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3010
+ </output>
3011
+ </operation>
3012
+
3013
+ <operation name="set_fw_rule_weekly_schedule">
3014
+ <documentation>
3015
+ Sets a weekly schedule for the specified firewall rules.
3016
+ See Security::FirewallWeeklySchedule for how to create and
3017
+ manipulate weekly schedules.
3018
+
3019
+ </documentation>
3020
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3021
+ <input>
3022
+ <soap:body
3023
+ use="encoded"
3024
+ namespace="urn:iControl:Security/FirewallRuleList"
3025
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3026
+ </input>
3027
+ <output>
3028
+ <soap:body
3029
+ use="encoded"
3030
+ namespace="urn:iControl:Security/FirewallRuleList"
3031
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3032
+ </output>
3033
+ </operation>
3034
+
3035
+ <operation name="get_fw_rule_weekly_schedule">
3036
+ <documentation>
3037
+ Gets a weekly schedule for the specified firewall rules.
3038
+
3039
+ </documentation>
3040
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3041
+ <input>
3042
+ <soap:body
3043
+ use="encoded"
3044
+ namespace="urn:iControl:Security/FirewallRuleList"
3045
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3046
+ </input>
3047
+ <output>
3048
+ <soap:body
3049
+ use="encoded"
3050
+ namespace="urn:iControl:Security/FirewallRuleList"
3051
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3052
+ </output>
3053
+ </operation>
3054
+
3055
+ <operation name="set_fw_rule_protocol">
3056
+ <documentation>
3057
+ Sets the (IP) protocol for the specified firewall rules.
3058
+
3059
+ Note: if the protocol is not one of the supported standard
3060
+ protocols, use set_fw_rule_protocol_numeric.
3061
+
3062
+ </documentation>
3063
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3064
+ <input>
3065
+ <soap:body
3066
+ use="encoded"
3067
+ namespace="urn:iControl:Security/FirewallRuleList"
3068
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3069
+ </input>
3070
+ <output>
3071
+ <soap:body
3072
+ use="encoded"
3073
+ namespace="urn:iControl:Security/FirewallRuleList"
3074
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3075
+ </output>
3076
+ </operation>
3077
+
3078
+ <operation name="get_fw_rule_protocol">
3079
+ <documentation>
3080
+ Gets the (IP) protocol for the specified firewall rules.
3081
+
3082
+ </documentation>
3083
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3084
+ <input>
3085
+ <soap:body
3086
+ use="encoded"
3087
+ namespace="urn:iControl:Security/FirewallRuleList"
3088
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3089
+ </input>
3090
+ <output>
3091
+ <soap:body
3092
+ use="encoded"
3093
+ namespace="urn:iControl:Security/FirewallRuleList"
3094
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3095
+ </output>
3096
+ </operation>
3097
+
3098
+ <operation name="set_fw_rule_protocol_numeric">
3099
+ <documentation>
3100
+ Sets the IP protocol (numerically) for the specified firewall rules.
3101
+
3102
+ </documentation>
3103
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3104
+ <input>
3105
+ <soap:body
3106
+ use="encoded"
3107
+ namespace="urn:iControl:Security/FirewallRuleList"
3108
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3109
+ </input>
3110
+ <output>
3111
+ <soap:body
3112
+ use="encoded"
3113
+ namespace="urn:iControl:Security/FirewallRuleList"
3114
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3115
+ </output>
3116
+ </operation>
3117
+
3118
+ <operation name="get_fw_rule_protocol_numeric">
3119
+ <documentation>
3120
+ Gets the IP protocol (numerically) for the specified firewall rules.
3121
+
3122
+ </documentation>
3123
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3124
+ <input>
3125
+ <soap:body
3126
+ use="encoded"
3127
+ namespace="urn:iControl:Security/FirewallRuleList"
3128
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3129
+ </input>
3130
+ <output>
3131
+ <soap:body
3132
+ use="encoded"
3133
+ namespace="urn:iControl:Security/FirewallRuleList"
3134
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3135
+ </output>
3136
+ </operation>
3137
+
3138
+ <operation name="set_fw_rule_action">
3139
+ <documentation>
3140
+ Sets the action for the specified firewall rules.
3141
+
3142
+ </documentation>
3143
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3144
+ <input>
3145
+ <soap:body
3146
+ use="encoded"
3147
+ namespace="urn:iControl:Security/FirewallRuleList"
3148
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3149
+ </input>
3150
+ <output>
3151
+ <soap:body
3152
+ use="encoded"
3153
+ namespace="urn:iControl:Security/FirewallRuleList"
3154
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3155
+ </output>
3156
+ </operation>
3157
+
3158
+ <operation name="get_fw_rule_action">
3159
+ <documentation>
3160
+ Gets the action for the specified firewall rules.
3161
+
3162
+ </documentation>
3163
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3164
+ <input>
3165
+ <soap:body
3166
+ use="encoded"
3167
+ namespace="urn:iControl:Security/FirewallRuleList"
3168
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3169
+ </input>
3170
+ <output>
3171
+ <soap:body
3172
+ use="encoded"
3173
+ namespace="urn:iControl:Security/FirewallRuleList"
3174
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3175
+ </output>
3176
+ </operation>
3177
+
3178
+ <operation name="set_fw_rule_rule_list">
3179
+ <documentation>
3180
+ Sets the rule list for the specified firewall rules.
3181
+
3182
+ If a list is specified then the system will validate that
3183
+ no other properties were specified in the current
3184
+ transaction, and will clear all other match criteria fields
3185
+ (src, dst, ip protocol, et cetera).
3186
+
3187
+ The empty string means no rule list.
3188
+
3189
+ Note: this method is reserved for future use, and the
3190
+ functionality (rule list on firewall rule list rules) is
3191
+ unsupported by the system.
3192
+
3193
+ </documentation>
3194
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3195
+ <input>
3196
+ <soap:body
3197
+ use="encoded"
3198
+ namespace="urn:iControl:Security/FirewallRuleList"
3199
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3200
+ </input>
3201
+ <output>
3202
+ <soap:body
3203
+ use="encoded"
3204
+ namespace="urn:iControl:Security/FirewallRuleList"
3205
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3206
+ </output>
3207
+ </operation>
3208
+
3209
+ <operation name="get_fw_rule_rule_list">
3210
+ <documentation>
3211
+ Gets the rule list for the specified firewall rules.
3212
+
3213
+ Note: this method is reserved for future use, and the
3214
+ functionality (rule list on firewall rule list rules) is
3215
+ unsupported by the system.
3216
+
3217
+ </documentation>
3218
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3219
+ <input>
3220
+ <soap:body
3221
+ use="encoded"
3222
+ namespace="urn:iControl:Security/FirewallRuleList"
3223
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3224
+ </input>
3225
+ <output>
3226
+ <soap:body
3227
+ use="encoded"
3228
+ namespace="urn:iControl:Security/FirewallRuleList"
3229
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3230
+ </output>
3231
+ </operation>
3232
+
3233
+ <operation name="set_fw_rule_description">
3234
+ <documentation>
3235
+ Sets the description for the specified firewall rules.
3236
+
3237
+ This is an arbitrary field which can be used for any purpose.
3238
+
3239
+ </documentation>
3240
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3241
+ <input>
3242
+ <soap:body
3243
+ use="encoded"
3244
+ namespace="urn:iControl:Security/FirewallRuleList"
3245
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3246
+ </input>
3247
+ <output>
3248
+ <soap:body
3249
+ use="encoded"
3250
+ namespace="urn:iControl:Security/FirewallRuleList"
3251
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3252
+ </output>
3253
+ </operation>
3254
+
3255
+ <operation name="get_fw_rule_description">
3256
+ <documentation>
3257
+ Gets the descriptions for the specified firewall rules.
3258
+
3259
+ </documentation>
3260
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3261
+ <input>
3262
+ <soap:body
3263
+ use="encoded"
3264
+ namespace="urn:iControl:Security/FirewallRuleList"
3265
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3266
+ </input>
3267
+ <output>
3268
+ <soap:body
3269
+ use="encoded"
3270
+ namespace="urn:iControl:Security/FirewallRuleList"
3271
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3272
+ </output>
3273
+ </operation>
3274
+
3275
+ <operation name="set_fw_rule_log_state">
3276
+ <documentation>
3277
+ Sets the logging property for the specified firewall rules.
3278
+ Specifies whether the security software should write a log entry
3279
+ for all packets that match this rule. You must also enable network
3280
+ filter logging in the "security log profile" component for this
3281
+ option to have any effect. Note that the security software always
3282
+ increments the statistics counter when a packet matches a rule,
3283
+ no matter how you set this option.
3284
+
3285
+ </documentation>
3286
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3287
+ <input>
3288
+ <soap:body
3289
+ use="encoded"
3290
+ namespace="urn:iControl:Security/FirewallRuleList"
3291
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3292
+ </input>
3293
+ <output>
3294
+ <soap:body
3295
+ use="encoded"
3296
+ namespace="urn:iControl:Security/FirewallRuleList"
3297
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3298
+ </output>
3299
+ </operation>
3300
+
3301
+ <operation name="get_fw_rule_log_state">
3302
+ <documentation>
3303
+ Gets the logging property for the specified firewall rules.
3304
+
3305
+ </documentation>
3306
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3307
+ <input>
3308
+ <soap:body
3309
+ use="encoded"
3310
+ namespace="urn:iControl:Security/FirewallRuleList"
3311
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3312
+ </input>
3313
+ <output>
3314
+ <soap:body
3315
+ use="encoded"
3316
+ namespace="urn:iControl:Security/FirewallRuleList"
3317
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3318
+ </output>
3319
+ </operation>
3320
+
3321
+ <operation name="get_version">
3322
+ <documentation>
3323
+ Gets the version information for this interface.
3324
+
3325
+ </documentation>
3326
+ <soap:operation soapAction="urn:iControl:Security/FirewallRuleList"/>
3327
+ <input>
3328
+ <soap:body
3329
+ use="encoded"
3330
+ namespace="urn:iControl:Security/FirewallRuleList"
3331
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3332
+ </input>
3333
+ <output>
3334
+ <soap:body
3335
+ use="encoded"
3336
+ namespace="urn:iControl:Security/FirewallRuleList"
3337
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
3338
+ </output>
3339
+ </operation>
3340
+ </binding>
3341
+
3342
+ <!-- service -->
3343
+
3344
+ <service name="Security.FirewallRuleList">
3345
+ <documentation>
3346
+ The FirewallRuleList interface enables you to create and modify
3347
+ named collections of firewall rules. You can attach a rule list
3348
+ to rules for other objects, like virtual servers and self IPs.
3349
+
3350
+ Note that the source and destination addresses in the firewall
3351
+ methods (get_fw_rule and so on) are type Common::NetAddress, a
3352
+ type which allows one to specify a prefix length after the
3353
+ address, e.g., "10.1.1.0/24".
3354
+
3355
+ </documentation>
3356
+ <port name="Security.FirewallRuleListPort" binding="tns:Security.FirewallRuleListBinding">
3357
+ <soap:address location="https://url_to_service"/>
3358
+ </port>
3359
+ </service>
3360
+ </definitions>