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,825 @@
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.FirewallWeeklySchedule"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:complexType name="Common.TimeStampSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.TimeStamp[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:complexType name="Common.TimeStamp">
32
+ <xsd:sequence>
33
+ <xsd:element name="year" type="xsd:long"/>
34
+ <xsd:element name="month" type="xsd:long"/>
35
+ <xsd:element name="day" type="xsd:long"/>
36
+ <xsd:element name="hour" type="xsd:long"/>
37
+ <xsd:element name="minute" type="xsd:long"/>
38
+ <xsd:element name="second" type="xsd:long"/>
39
+ </xsd:sequence>
40
+ </xsd:complexType>
41
+ <xsd:complexType name="Common.StringSequence">
42
+ <xsd:complexContent>
43
+ <xsd:restriction base='SOAP-ENC:Array'>
44
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
45
+ </xsd:restriction>
46
+ </xsd:complexContent>
47
+ </xsd:complexType>
48
+ <xsd:complexType name="Security.FirewallWeeklySchedule.DailyTimeSequence">
49
+ <xsd:complexContent>
50
+ <xsd:restriction base='SOAP-ENC:Array'>
51
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Security.FirewallWeeklySchedule.DailyTime[]'/>
52
+ </xsd:restriction>
53
+ </xsd:complexContent>
54
+ </xsd:complexType>
55
+ <xsd:simpleType name="Security.FirewallWeeklySchedule.FWWeekDay">
56
+ <xsd:restriction base="xsd:string">
57
+ <xsd:enumeration value="FW_UNKNOWN">
58
+ <xsd:annotation>
59
+ <xsd:documentation>FW_UNKNOWN</xsd:documentation>
60
+ </xsd:annotation>
61
+ </xsd:enumeration>
62
+ <xsd:enumeration value="FW_SUNDAY">
63
+ <xsd:annotation>
64
+ <xsd:documentation>FW_SUNDAY</xsd:documentation>
65
+ </xsd:annotation>
66
+ </xsd:enumeration>
67
+ <xsd:enumeration value="FW_MONDAY">
68
+ <xsd:annotation>
69
+ <xsd:documentation>FW_MONDAY</xsd:documentation>
70
+ </xsd:annotation>
71
+ </xsd:enumeration>
72
+ <xsd:enumeration value="FW_TUESDAY">
73
+ <xsd:annotation>
74
+ <xsd:documentation>FW_TUESDAY</xsd:documentation>
75
+ </xsd:annotation>
76
+ </xsd:enumeration>
77
+ <xsd:enumeration value="FW_WEDNESDAY">
78
+ <xsd:annotation>
79
+ <xsd:documentation>FW_WEDNESDAY</xsd:documentation>
80
+ </xsd:annotation>
81
+ </xsd:enumeration>
82
+ <xsd:enumeration value="FW_THURSDAY">
83
+ <xsd:annotation>
84
+ <xsd:documentation>FW_THURSDAY</xsd:documentation>
85
+ </xsd:annotation>
86
+ </xsd:enumeration>
87
+ <xsd:enumeration value="FW_FRIDAY">
88
+ <xsd:annotation>
89
+ <xsd:documentation>FW_FRIDAY</xsd:documentation>
90
+ </xsd:annotation>
91
+ </xsd:enumeration>
92
+ <xsd:enumeration value="FW_SATURDAY">
93
+ <xsd:annotation>
94
+ <xsd:documentation>FW_SATURDAY</xsd:documentation>
95
+ </xsd:annotation>
96
+ </xsd:enumeration>
97
+ <xsd:enumeration value="FW_ALL_DAYS">
98
+ <xsd:annotation>
99
+ <xsd:documentation>FW_ALL_DAYS</xsd:documentation>
100
+ </xsd:annotation>
101
+ </xsd:enumeration>
102
+ </xsd:restriction>
103
+ </xsd:simpleType>
104
+ <xsd:complexType name="Common.TimeStampExpirySequence">
105
+ <xsd:complexContent>
106
+ <xsd:restriction base='SOAP-ENC:Array'>
107
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.TimeStampExpiry[]'/>
108
+ </xsd:restriction>
109
+ </xsd:complexContent>
110
+ </xsd:complexType>
111
+ <xsd:complexType name="Security.FirewallWeeklySchedule.FWWeekDaySequenceSequence">
112
+ <xsd:complexContent>
113
+ <xsd:restriction base='SOAP-ENC:Array'>
114
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Security.FirewallWeeklySchedule.FWWeekDaySequence[]'/>
115
+ </xsd:restriction>
116
+ </xsd:complexContent>
117
+ </xsd:complexType>
118
+ <xsd:complexType name="Common.TimeStampExpiry">
119
+ <xsd:sequence>
120
+ <xsd:element name="expires" type="xsd:boolean"/>
121
+ <xsd:element name="expiry_time" type="tns:Common.TimeStamp"/>
122
+ </xsd:sequence>
123
+ </xsd:complexType>
124
+ <xsd:complexType name="Security.FirewallWeeklySchedule.FWWeekDaySequence">
125
+ <xsd:complexContent>
126
+ <xsd:restriction base='SOAP-ENC:Array'>
127
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Security.FirewallWeeklySchedule.FWWeekDay[]'/>
128
+ </xsd:restriction>
129
+ </xsd:complexContent>
130
+ </xsd:complexType>
131
+ <xsd:complexType name="Security.FirewallWeeklySchedule.DailyTime">
132
+ <xsd:sequence>
133
+ <xsd:element name="hour" type="xsd:long"/>
134
+ <xsd:element name="minute" type="xsd:long"/>
135
+ </xsd:sequence>
136
+ </xsd:complexType>
137
+ </xsd:schema>
138
+ </types>
139
+
140
+ <!-- message -->
141
+
142
+ <message name="Security.FirewallWeeklySchedule.get_listRequest">
143
+ </message>
144
+ <message name="Security.FirewallWeeklySchedule.get_listResponse">
145
+ <part name="return" type="tns:Common.StringSequence"/>
146
+ </message>
147
+
148
+ <message name="Security.FirewallWeeklySchedule.createRequest">
149
+ <part name="schedules" type="tns:Common.StringSequence"/>
150
+ </message>
151
+ <message name="Security.FirewallWeeklySchedule.createResponse">
152
+ </message>
153
+
154
+ <message name="Security.FirewallWeeklySchedule.delete_weekly_scheduleRequest">
155
+ <part name="schedules" type="tns:Common.StringSequence"/>
156
+ </message>
157
+ <message name="Security.FirewallWeeklySchedule.delete_weekly_scheduleResponse">
158
+ </message>
159
+
160
+ <message name="Security.FirewallWeeklySchedule.delete_all_weekly_schedulesRequest">
161
+ </message>
162
+ <message name="Security.FirewallWeeklySchedule.delete_all_weekly_schedulesResponse">
163
+ </message>
164
+
165
+ <message name="Security.FirewallWeeklySchedule.set_date_valid_startRequest">
166
+ <part name="schedules" type="tns:Common.StringSequence"/>
167
+ <part name="dates" type="tns:Common.TimeStampSequence"/>
168
+ </message>
169
+ <message name="Security.FirewallWeeklySchedule.set_date_valid_startResponse">
170
+ </message>
171
+
172
+ <message name="Security.FirewallWeeklySchedule.get_date_valid_startRequest">
173
+ <part name="schedules" type="tns:Common.StringSequence"/>
174
+ </message>
175
+ <message name="Security.FirewallWeeklySchedule.get_date_valid_startResponse">
176
+ <part name="return" type="tns:Common.TimeStampSequence"/>
177
+ </message>
178
+
179
+ <message name="Security.FirewallWeeklySchedule.set_date_valid_endRequest">
180
+ <part name="schedules" type="tns:Common.StringSequence"/>
181
+ <part name="dates" type="tns:Common.TimeStampExpirySequence"/>
182
+ </message>
183
+ <message name="Security.FirewallWeeklySchedule.set_date_valid_endResponse">
184
+ </message>
185
+
186
+ <message name="Security.FirewallWeeklySchedule.get_date_valid_endRequest">
187
+ <part name="schedules" type="tns:Common.StringSequence"/>
188
+ </message>
189
+ <message name="Security.FirewallWeeklySchedule.get_date_valid_endResponse">
190
+ <part name="return" type="tns:Common.TimeStampExpirySequence"/>
191
+ </message>
192
+
193
+ <message name="Security.FirewallWeeklySchedule.set_daily_hour_startRequest">
194
+ <part name="schedules" type="tns:Common.StringSequence"/>
195
+ <part name="times" type="tns:Security.FirewallWeeklySchedule.DailyTimeSequence"/>
196
+ </message>
197
+ <message name="Security.FirewallWeeklySchedule.set_daily_hour_startResponse">
198
+ </message>
199
+
200
+ <message name="Security.FirewallWeeklySchedule.get_daily_hour_startRequest">
201
+ <part name="schedules" type="tns:Common.StringSequence"/>
202
+ </message>
203
+ <message name="Security.FirewallWeeklySchedule.get_daily_hour_startResponse">
204
+ <part name="return" type="tns:Security.FirewallWeeklySchedule.DailyTimeSequence"/>
205
+ </message>
206
+
207
+ <message name="Security.FirewallWeeklySchedule.set_daily_hour_endRequest">
208
+ <part name="schedules" type="tns:Common.StringSequence"/>
209
+ <part name="times" type="tns:Security.FirewallWeeklySchedule.DailyTimeSequence"/>
210
+ </message>
211
+ <message name="Security.FirewallWeeklySchedule.set_daily_hour_endResponse">
212
+ </message>
213
+
214
+ <message name="Security.FirewallWeeklySchedule.get_daily_hour_endRequest">
215
+ <part name="schedules" type="tns:Common.StringSequence"/>
216
+ </message>
217
+ <message name="Security.FirewallWeeklySchedule.get_daily_hour_endResponse">
218
+ <part name="return" type="tns:Security.FirewallWeeklySchedule.DailyTimeSequence"/>
219
+ </message>
220
+
221
+ <message name="Security.FirewallWeeklySchedule.set_days_of_weekRequest">
222
+ <part name="schedules" type="tns:Common.StringSequence"/>
223
+ <part name="days" type="tns:Security.FirewallWeeklySchedule.FWWeekDaySequenceSequence"/>
224
+ </message>
225
+ <message name="Security.FirewallWeeklySchedule.set_days_of_weekResponse">
226
+ </message>
227
+
228
+ <message name="Security.FirewallWeeklySchedule.get_days_of_weekRequest">
229
+ <part name="schedules" type="tns:Common.StringSequence"/>
230
+ </message>
231
+ <message name="Security.FirewallWeeklySchedule.get_days_of_weekResponse">
232
+ <part name="return" type="tns:Security.FirewallWeeklySchedule.FWWeekDaySequenceSequence"/>
233
+ </message>
234
+
235
+ <message name="Security.FirewallWeeklySchedule.set_descriptionRequest">
236
+ <part name="schedules" type="tns:Common.StringSequence"/>
237
+ <part name="descriptions" type="tns:Common.StringSequence"/>
238
+ </message>
239
+ <message name="Security.FirewallWeeklySchedule.set_descriptionResponse">
240
+ </message>
241
+
242
+ <message name="Security.FirewallWeeklySchedule.get_descriptionRequest">
243
+ <part name="schedules" type="tns:Common.StringSequence"/>
244
+ </message>
245
+ <message name="Security.FirewallWeeklySchedule.get_descriptionResponse">
246
+ <part name="return" type="tns:Common.StringSequence"/>
247
+ </message>
248
+
249
+ <message name="Security.FirewallWeeklySchedule.get_versionRequest">
250
+ </message>
251
+ <message name="Security.FirewallWeeklySchedule.get_versionResponse">
252
+ <part name="return" type="xsd:string"/>
253
+ </message>
254
+
255
+ <!-- portType -->
256
+
257
+ <portType name="Security.FirewallWeeklySchedulePortType">
258
+ <operation name="get_list">
259
+ <documentation>
260
+ Gets the list of firewall weekly schedules on this device.
261
+
262
+ </documentation>
263
+ <input message="tns:Security.FirewallWeeklySchedule.get_listRequest"/>
264
+ <output message="tns:Security.FirewallWeeklySchedule.get_listResponse"/>
265
+ </operation>
266
+ <operation name="create">
267
+ <documentation>
268
+ Creates a firewall weekly schedule.
269
+
270
+ </documentation>
271
+ <input message="tns:Security.FirewallWeeklySchedule.createRequest"/>
272
+ <output message="tns:Security.FirewallWeeklySchedule.createResponse"/>
273
+ </operation>
274
+ <operation name="delete_weekly_schedule">
275
+ <documentation>
276
+ Deletes a set of firewall weekly schedules.
277
+
278
+ </documentation>
279
+ <input message="tns:Security.FirewallWeeklySchedule.delete_weekly_scheduleRequest"/>
280
+ <output message="tns:Security.FirewallWeeklySchedule.delete_weekly_scheduleResponse"/>
281
+ </operation>
282
+ <operation name="delete_all_weekly_schedules">
283
+ <documentation>
284
+ Deletes all firewall weekly schedules on this device.
285
+
286
+ </documentation>
287
+ <input message="tns:Security.FirewallWeeklySchedule.delete_all_weekly_schedulesRequest"/>
288
+ <output message="tns:Security.FirewallWeeklySchedule.delete_all_weekly_schedulesResponse"/>
289
+ </operation>
290
+ <operation name="set_date_valid_start">
291
+ <documentation>
292
+ Sets the start dates at which the specified firewall weekly
293
+ schedules are valid, as a TimeStamp. This is the date and
294
+ time at which the specified wekly schedule will begin to be
295
+ valid.
296
+
297
+ </documentation>
298
+ <input message="tns:Security.FirewallWeeklySchedule.set_date_valid_startRequest"/>
299
+ <output message="tns:Security.FirewallWeeklySchedule.set_date_valid_startResponse"/>
300
+ </operation>
301
+ <operation name="get_date_valid_start">
302
+ <documentation>
303
+ Gets the start dates at which the specified firewall weekly
304
+ schedules are valid.
305
+
306
+ </documentation>
307
+ <input message="tns:Security.FirewallWeeklySchedule.get_date_valid_startRequest"/>
308
+ <output message="tns:Security.FirewallWeeklySchedule.get_date_valid_startResponse"/>
309
+ </operation>
310
+ <operation name="set_date_valid_end">
311
+ <documentation>
312
+ Sets the dates at which the specified firewall weekly
313
+ schedules are no longer valid, as a TimeStampExpiry.
314
+ If the expires flag in the TimeStampExpiry is set to false,
315
+ the weekly schedule does not expire. Otherwise, the
316
+ expiry_time field specifies the date and time at which the
317
+ specified weekly schedules will cease to be valid.
318
+ Note that if expires is set to false, any value held in
319
+ expiry_time will be lost.
320
+
321
+ </documentation>
322
+ <input message="tns:Security.FirewallWeeklySchedule.set_date_valid_endRequest"/>
323
+ <output message="tns:Security.FirewallWeeklySchedule.set_date_valid_endResponse"/>
324
+ </operation>
325
+ <operation name="get_date_valid_end">
326
+ <documentation>
327
+ Gets the dates at which the specified firewall weekly
328
+ schedules are no longer valid.
329
+
330
+ </documentation>
331
+ <input message="tns:Security.FirewallWeeklySchedule.get_date_valid_endRequest"/>
332
+ <output message="tns:Security.FirewallWeeklySchedule.get_date_valid_endResponse"/>
333
+ </operation>
334
+ <operation name="set_daily_hour_start">
335
+ <documentation>
336
+ Sets the time of day, in hours and minutes, that the
337
+ specified firewall weekly schedules begin to be active. It
338
+ becomes active at this time on all days of the week
339
+ specified in get/set_days_of_week; if you would like to
340
+ have certain days active at different times than others, you will need
341
+ to create a separate weekly schedule.
342
+ Note that daily_hour_start cannot be set to later than
343
+ daily_hour_end, so daily_hour_end must be set first.
344
+
345
+ </documentation>
346
+ <input message="tns:Security.FirewallWeeklySchedule.set_daily_hour_startRequest"/>
347
+ <output message="tns:Security.FirewallWeeklySchedule.set_daily_hour_startResponse"/>
348
+ </operation>
349
+ <operation name="get_daily_hour_start">
350
+ <documentation>
351
+ Gets the time of day, in hours and minutes, that the
352
+ specified firewall weekly schedules begin to be active.
353
+
354
+ </documentation>
355
+ <input message="tns:Security.FirewallWeeklySchedule.get_daily_hour_startRequest"/>
356
+ <output message="tns:Security.FirewallWeeklySchedule.get_daily_hour_startResponse"/>
357
+ </operation>
358
+ <operation name="set_daily_hour_end">
359
+ <documentation>
360
+ Sets the time of day, in hours and minutes, that the
361
+ specified firewall weekly schedules cease to be active. It
362
+ ceases to be active at this time on all days of the week
363
+ specified in get/set_days_of_week; if you would like to
364
+ have certain days active at different times, you will need
365
+ to create a separate weekly schedule.
366
+
367
+ </documentation>
368
+ <input message="tns:Security.FirewallWeeklySchedule.set_daily_hour_endRequest"/>
369
+ <output message="tns:Security.FirewallWeeklySchedule.set_daily_hour_endResponse"/>
370
+ </operation>
371
+ <operation name="get_daily_hour_end">
372
+ <documentation>
373
+ Gets the time of day, in hours and minutes, that the
374
+ specified firewall weekly schedules cease to be active.
375
+
376
+ </documentation>
377
+ <input message="tns:Security.FirewallWeeklySchedule.get_daily_hour_endRequest"/>
378
+ <output message="tns:Security.FirewallWeeklySchedule.get_daily_hour_endResponse"/>
379
+ </operation>
380
+ <operation name="set_days_of_week">
381
+ <documentation>
382
+ Sets the days of the week that the specified firewall
383
+ weekly schedules are active. If a sequence of FWWeekDays
384
+ contains duplicates (eg. ['FW_SUNDAY', 'FW_SUNDAY']) these
385
+ will be deduplicated. You must set at least one weekday for
386
+ the schedule to be valid; 'none' or no days is not acceptable.
387
+ Note also that if setting FW_ALL_DAYS, a subsequent query
388
+ will return all seven days, rather than one FW_ALL_DAYS value.
389
+
390
+ </documentation>
391
+ <input message="tns:Security.FirewallWeeklySchedule.set_days_of_weekRequest"/>
392
+ <output message="tns:Security.FirewallWeeklySchedule.set_days_of_weekResponse"/>
393
+ </operation>
394
+ <operation name="get_days_of_week">
395
+ <documentation>
396
+ Gets the days of the week that the specified firewall
397
+ weekly schedules are active.
398
+
399
+ </documentation>
400
+ <input message="tns:Security.FirewallWeeklySchedule.get_days_of_weekRequest"/>
401
+ <output message="tns:Security.FirewallWeeklySchedule.get_days_of_weekResponse"/>
402
+ </operation>
403
+ <operation name="set_description">
404
+ <documentation>
405
+ Sets the description for a set of firewall weekly schedules.
406
+
407
+ This is an arbitrary field which can be used for any purpose.
408
+
409
+ </documentation>
410
+ <input message="tns:Security.FirewallWeeklySchedule.set_descriptionRequest"/>
411
+ <output message="tns:Security.FirewallWeeklySchedule.set_descriptionResponse"/>
412
+ </operation>
413
+ <operation name="get_description">
414
+ <documentation>
415
+ Gets the descriptions for a set of firewall weekly schedules.
416
+
417
+ </documentation>
418
+ <input message="tns:Security.FirewallWeeklySchedule.get_descriptionRequest"/>
419
+ <output message="tns:Security.FirewallWeeklySchedule.get_descriptionResponse"/>
420
+ </operation>
421
+ <operation name="get_version">
422
+ <documentation>
423
+ Gets the version information for this interface.
424
+
425
+ </documentation>
426
+ <input message="tns:Security.FirewallWeeklySchedule.get_versionRequest"/>
427
+ <output message="tns:Security.FirewallWeeklySchedule.get_versionResponse"/>
428
+ </operation>
429
+ </portType>
430
+
431
+ <!-- binding -->
432
+
433
+ <binding name="Security.FirewallWeeklyScheduleBinding" type="tns:Security.FirewallWeeklySchedulePortType">
434
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
435
+ <operation name="get_list">
436
+ <documentation>
437
+ Gets the list of firewall weekly schedules on this device.
438
+
439
+ </documentation>
440
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
441
+ <input>
442
+ <soap:body
443
+ use="encoded"
444
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
445
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
446
+ </input>
447
+ <output>
448
+ <soap:body
449
+ use="encoded"
450
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
451
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
452
+ </output>
453
+ </operation>
454
+
455
+ <operation name="create">
456
+ <documentation>
457
+ Creates a firewall weekly schedule.
458
+
459
+ </documentation>
460
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
461
+ <input>
462
+ <soap:body
463
+ use="encoded"
464
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
465
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
466
+ </input>
467
+ <output>
468
+ <soap:body
469
+ use="encoded"
470
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
471
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
472
+ </output>
473
+ </operation>
474
+
475
+ <operation name="delete_weekly_schedule">
476
+ <documentation>
477
+ Deletes a set of firewall weekly schedules.
478
+
479
+ </documentation>
480
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
481
+ <input>
482
+ <soap:body
483
+ use="encoded"
484
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
485
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
486
+ </input>
487
+ <output>
488
+ <soap:body
489
+ use="encoded"
490
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
491
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
492
+ </output>
493
+ </operation>
494
+
495
+ <operation name="delete_all_weekly_schedules">
496
+ <documentation>
497
+ Deletes all firewall weekly schedules on this device.
498
+
499
+ </documentation>
500
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
501
+ <input>
502
+ <soap:body
503
+ use="encoded"
504
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
505
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
506
+ </input>
507
+ <output>
508
+ <soap:body
509
+ use="encoded"
510
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
511
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
512
+ </output>
513
+ </operation>
514
+
515
+ <operation name="set_date_valid_start">
516
+ <documentation>
517
+ Sets the start dates at which the specified firewall weekly
518
+ schedules are valid, as a TimeStamp. This is the date and
519
+ time at which the specified wekly schedule will begin to be
520
+ valid.
521
+
522
+ </documentation>
523
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
524
+ <input>
525
+ <soap:body
526
+ use="encoded"
527
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
528
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
529
+ </input>
530
+ <output>
531
+ <soap:body
532
+ use="encoded"
533
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
534
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
535
+ </output>
536
+ </operation>
537
+
538
+ <operation name="get_date_valid_start">
539
+ <documentation>
540
+ Gets the start dates at which the specified firewall weekly
541
+ schedules are valid.
542
+
543
+ </documentation>
544
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
545
+ <input>
546
+ <soap:body
547
+ use="encoded"
548
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
549
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
550
+ </input>
551
+ <output>
552
+ <soap:body
553
+ use="encoded"
554
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
555
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
556
+ </output>
557
+ </operation>
558
+
559
+ <operation name="set_date_valid_end">
560
+ <documentation>
561
+ Sets the dates at which the specified firewall weekly
562
+ schedules are no longer valid, as a TimeStampExpiry.
563
+ If the expires flag in the TimeStampExpiry is set to false,
564
+ the weekly schedule does not expire. Otherwise, the
565
+ expiry_time field specifies the date and time at which the
566
+ specified weekly schedules will cease to be valid.
567
+ Note that if expires is set to false, any value held in
568
+ expiry_time will be lost.
569
+
570
+ </documentation>
571
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
572
+ <input>
573
+ <soap:body
574
+ use="encoded"
575
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
576
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
577
+ </input>
578
+ <output>
579
+ <soap:body
580
+ use="encoded"
581
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
582
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
583
+ </output>
584
+ </operation>
585
+
586
+ <operation name="get_date_valid_end">
587
+ <documentation>
588
+ Gets the dates at which the specified firewall weekly
589
+ schedules are no longer valid.
590
+
591
+ </documentation>
592
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
593
+ <input>
594
+ <soap:body
595
+ use="encoded"
596
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
597
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
598
+ </input>
599
+ <output>
600
+ <soap:body
601
+ use="encoded"
602
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
603
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
604
+ </output>
605
+ </operation>
606
+
607
+ <operation name="set_daily_hour_start">
608
+ <documentation>
609
+ Sets the time of day, in hours and minutes, that the
610
+ specified firewall weekly schedules begin to be active. It
611
+ becomes active at this time on all days of the week
612
+ specified in get/set_days_of_week; if you would like to
613
+ have certain days active at different times than others, you will need
614
+ to create a separate weekly schedule.
615
+ Note that daily_hour_start cannot be set to later than
616
+ daily_hour_end, so daily_hour_end must be set first.
617
+
618
+ </documentation>
619
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
620
+ <input>
621
+ <soap:body
622
+ use="encoded"
623
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
624
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
625
+ </input>
626
+ <output>
627
+ <soap:body
628
+ use="encoded"
629
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
630
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
631
+ </output>
632
+ </operation>
633
+
634
+ <operation name="get_daily_hour_start">
635
+ <documentation>
636
+ Gets the time of day, in hours and minutes, that the
637
+ specified firewall weekly schedules begin to be active.
638
+
639
+ </documentation>
640
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
641
+ <input>
642
+ <soap:body
643
+ use="encoded"
644
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
645
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
646
+ </input>
647
+ <output>
648
+ <soap:body
649
+ use="encoded"
650
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
651
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
652
+ </output>
653
+ </operation>
654
+
655
+ <operation name="set_daily_hour_end">
656
+ <documentation>
657
+ Sets the time of day, in hours and minutes, that the
658
+ specified firewall weekly schedules cease to be active. It
659
+ ceases to be active at this time on all days of the week
660
+ specified in get/set_days_of_week; if you would like to
661
+ have certain days active at different times, you will need
662
+ to create a separate weekly schedule.
663
+
664
+ </documentation>
665
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
666
+ <input>
667
+ <soap:body
668
+ use="encoded"
669
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
670
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
671
+ </input>
672
+ <output>
673
+ <soap:body
674
+ use="encoded"
675
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
676
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
677
+ </output>
678
+ </operation>
679
+
680
+ <operation name="get_daily_hour_end">
681
+ <documentation>
682
+ Gets the time of day, in hours and minutes, that the
683
+ specified firewall weekly schedules cease to be active.
684
+
685
+ </documentation>
686
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
687
+ <input>
688
+ <soap:body
689
+ use="encoded"
690
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
691
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
692
+ </input>
693
+ <output>
694
+ <soap:body
695
+ use="encoded"
696
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
697
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
698
+ </output>
699
+ </operation>
700
+
701
+ <operation name="set_days_of_week">
702
+ <documentation>
703
+ Sets the days of the week that the specified firewall
704
+ weekly schedules are active. If a sequence of FWWeekDays
705
+ contains duplicates (eg. ['FW_SUNDAY', 'FW_SUNDAY']) these
706
+ will be deduplicated. You must set at least one weekday for
707
+ the schedule to be valid; 'none' or no days is not acceptable.
708
+ Note also that if setting FW_ALL_DAYS, a subsequent query
709
+ will return all seven days, rather than one FW_ALL_DAYS value.
710
+
711
+ </documentation>
712
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
713
+ <input>
714
+ <soap:body
715
+ use="encoded"
716
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
717
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
718
+ </input>
719
+ <output>
720
+ <soap:body
721
+ use="encoded"
722
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
723
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
724
+ </output>
725
+ </operation>
726
+
727
+ <operation name="get_days_of_week">
728
+ <documentation>
729
+ Gets the days of the week that the specified firewall
730
+ weekly schedules are active.
731
+
732
+ </documentation>
733
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
734
+ <input>
735
+ <soap:body
736
+ use="encoded"
737
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
738
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
739
+ </input>
740
+ <output>
741
+ <soap:body
742
+ use="encoded"
743
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
744
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
745
+ </output>
746
+ </operation>
747
+
748
+ <operation name="set_description">
749
+ <documentation>
750
+ Sets the description for a set of firewall weekly schedules.
751
+
752
+ This is an arbitrary field which can be used for any purpose.
753
+
754
+ </documentation>
755
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
756
+ <input>
757
+ <soap:body
758
+ use="encoded"
759
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
760
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
761
+ </input>
762
+ <output>
763
+ <soap:body
764
+ use="encoded"
765
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
766
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
767
+ </output>
768
+ </operation>
769
+
770
+ <operation name="get_description">
771
+ <documentation>
772
+ Gets the descriptions for a set of firewall weekly schedules.
773
+
774
+ </documentation>
775
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
776
+ <input>
777
+ <soap:body
778
+ use="encoded"
779
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
780
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
781
+ </input>
782
+ <output>
783
+ <soap:body
784
+ use="encoded"
785
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
786
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
787
+ </output>
788
+ </operation>
789
+
790
+ <operation name="get_version">
791
+ <documentation>
792
+ Gets the version information for this interface.
793
+
794
+ </documentation>
795
+ <soap:operation soapAction="urn:iControl:Security/FirewallWeeklySchedule"/>
796
+ <input>
797
+ <soap:body
798
+ use="encoded"
799
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
800
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
801
+ </input>
802
+ <output>
803
+ <soap:body
804
+ use="encoded"
805
+ namespace="urn:iControl:Security/FirewallWeeklySchedule"
806
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
807
+ </output>
808
+ </operation>
809
+ </binding>
810
+
811
+ <!-- service -->
812
+
813
+ <service name="Security.FirewallWeeklySchedule">
814
+ <documentation>
815
+ The FirewallWeeklySchedule interface enables you to set a
816
+ schedule at which firewall rules are active, based on days of
817
+ the week as well as times of day. You can also set a date and
818
+ time at which the schedule begins and ceases to be valid.
819
+
820
+ </documentation>
821
+ <port name="Security.FirewallWeeklySchedulePort" binding="tns:Security.FirewallWeeklyScheduleBinding">
822
+ <soap:address location="https://url_to_service"/>
823
+ </port>
824
+ </service>
825
+ </definitions>