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,834 @@
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="System.ExternalMonitorFile"
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.ULong64">
32
+ <xsd:sequence>
33
+ <xsd:element name="high" type="xsd:long"/>
34
+ <xsd:element name="low" type="xsd:long"/>
35
+ </xsd:sequence>
36
+ </xsd:complexType>
37
+ <xsd:simpleType name="Common.EnabledState">
38
+ <xsd:restriction base="xsd:string">
39
+ <xsd:enumeration value="STATE_DISABLED">
40
+ <xsd:annotation>
41
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
42
+ </xsd:annotation>
43
+ </xsd:enumeration>
44
+ <xsd:enumeration value="STATE_ENABLED">
45
+ <xsd:annotation>
46
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
47
+ </xsd:annotation>
48
+ </xsd:enumeration>
49
+ </xsd:restriction>
50
+ </xsd:simpleType>
51
+ <xsd:complexType name="Common.TimeStamp">
52
+ <xsd:sequence>
53
+ <xsd:element name="year" type="xsd:long"/>
54
+ <xsd:element name="month" type="xsd:long"/>
55
+ <xsd:element name="day" type="xsd:long"/>
56
+ <xsd:element name="hour" type="xsd:long"/>
57
+ <xsd:element name="minute" type="xsd:long"/>
58
+ <xsd:element name="second" type="xsd:long"/>
59
+ </xsd:sequence>
60
+ </xsd:complexType>
61
+ <xsd:complexType name="Common.StringSequence">
62
+ <xsd:complexContent>
63
+ <xsd:restriction base='SOAP-ENC:Array'>
64
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
65
+ </xsd:restriction>
66
+ </xsd:complexContent>
67
+ </xsd:complexType>
68
+ <xsd:complexType name="Common.ULong64Sequence">
69
+ <xsd:complexContent>
70
+ <xsd:restriction base='SOAP-ENC:Array'>
71
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ULong64[]'/>
72
+ </xsd:restriction>
73
+ </xsd:complexContent>
74
+ </xsd:complexType>
75
+ <xsd:complexType name="Common.ULongSequence">
76
+ <xsd:complexContent>
77
+ <xsd:restriction base='SOAP-ENC:Array'>
78
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
79
+ </xsd:restriction>
80
+ </xsd:complexContent>
81
+ </xsd:complexType>
82
+ <xsd:complexType name="Common.EnabledStateSequence">
83
+ <xsd:complexContent>
84
+ <xsd:restriction base='SOAP-ENC:Array'>
85
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
86
+ </xsd:restriction>
87
+ </xsd:complexContent>
88
+ </xsd:complexType>
89
+ </xsd:schema>
90
+ </types>
91
+
92
+ <!-- message -->
93
+
94
+ <message name="System.ExternalMonitorFile.get_listRequest">
95
+ </message>
96
+ <message name="System.ExternalMonitorFile.get_listResponse">
97
+ <part name="return" type="tns:Common.StringSequence"/>
98
+ </message>
99
+
100
+ <message name="System.ExternalMonitorFile.createRequest">
101
+ <part name="files" type="tns:Common.StringSequence"/>
102
+ <part name="paths" type="tns:Common.StringSequence"/>
103
+ </message>
104
+ <message name="System.ExternalMonitorFile.createResponse">
105
+ </message>
106
+
107
+ <message name="System.ExternalMonitorFile.delete_external_monitor_fileRequest">
108
+ <part name="files" type="tns:Common.StringSequence"/>
109
+ </message>
110
+ <message name="System.ExternalMonitorFile.delete_external_monitor_fileResponse">
111
+ </message>
112
+
113
+ <message name="System.ExternalMonitorFile.delete_all_external_monitor_filesRequest">
114
+ </message>
115
+ <message name="System.ExternalMonitorFile.delete_all_external_monitor_filesResponse">
116
+ </message>
117
+
118
+ <message name="System.ExternalMonitorFile.get_cache_pathRequest">
119
+ <part name="files" type="tns:Common.StringSequence"/>
120
+ </message>
121
+ <message name="System.ExternalMonitorFile.get_cache_pathResponse">
122
+ <part name="return" type="tns:Common.StringSequence"/>
123
+ </message>
124
+
125
+ <message name="System.ExternalMonitorFile.get_checksumRequest">
126
+ <part name="files" type="tns:Common.StringSequence"/>
127
+ </message>
128
+ <message name="System.ExternalMonitorFile.get_checksumResponse">
129
+ <part name="return" type="tns:Common.StringSequence"/>
130
+ </message>
131
+
132
+ <message name="System.ExternalMonitorFile.get_creation_timeRequest">
133
+ <part name="files" type="tns:Common.StringSequence"/>
134
+ </message>
135
+ <message name="System.ExternalMonitorFile.get_creation_timeResponse">
136
+ <part name="return" type="tns:Common.TimeStampSequence"/>
137
+ </message>
138
+
139
+ <message name="System.ExternalMonitorFile.get_creatorRequest">
140
+ <part name="files" type="tns:Common.StringSequence"/>
141
+ </message>
142
+ <message name="System.ExternalMonitorFile.get_creatorResponse">
143
+ <part name="return" type="tns:Common.StringSequence"/>
144
+ </message>
145
+
146
+ <message name="System.ExternalMonitorFile.get_dynamic_stateRequest">
147
+ <part name="files" type="tns:Common.StringSequence"/>
148
+ </message>
149
+ <message name="System.ExternalMonitorFile.get_dynamic_stateResponse">
150
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
151
+ </message>
152
+
153
+ <message name="System.ExternalMonitorFile.set_local_pathRequest">
154
+ <part name="files" type="tns:Common.StringSequence"/>
155
+ <part name="paths" type="tns:Common.StringSequence"/>
156
+ </message>
157
+ <message name="System.ExternalMonitorFile.set_local_pathResponse">
158
+ </message>
159
+
160
+ <message name="System.ExternalMonitorFile.get_modification_timeRequest">
161
+ <part name="files" type="tns:Common.StringSequence"/>
162
+ </message>
163
+ <message name="System.ExternalMonitorFile.get_modification_timeResponse">
164
+ <part name="return" type="tns:Common.TimeStampSequence"/>
165
+ </message>
166
+
167
+ <message name="System.ExternalMonitorFile.get_modifierRequest">
168
+ <part name="files" type="tns:Common.StringSequence"/>
169
+ </message>
170
+ <message name="System.ExternalMonitorFile.get_modifierResponse">
171
+ <part name="return" type="tns:Common.StringSequence"/>
172
+ </message>
173
+
174
+ <message name="System.ExternalMonitorFile.get_modeRequest">
175
+ <part name="files" type="tns:Common.StringSequence"/>
176
+ </message>
177
+ <message name="System.ExternalMonitorFile.get_modeResponse">
178
+ <part name="return" type="tns:Common.ULongSequence"/>
179
+ </message>
180
+
181
+ <message name="System.ExternalMonitorFile.get_revisionRequest">
182
+ <part name="files" type="tns:Common.StringSequence"/>
183
+ </message>
184
+ <message name="System.ExternalMonitorFile.get_revisionResponse">
185
+ <part name="return" type="tns:Common.ULongSequence"/>
186
+ </message>
187
+
188
+ <message name="System.ExternalMonitorFile.get_sizeRequest">
189
+ <part name="files" type="tns:Common.StringSequence"/>
190
+ </message>
191
+ <message name="System.ExternalMonitorFile.get_sizeResponse">
192
+ <part name="return" type="tns:Common.ULong64Sequence"/>
193
+ </message>
194
+
195
+ <message name="System.ExternalMonitorFile.get_source_pathRequest">
196
+ <part name="files" type="tns:Common.StringSequence"/>
197
+ </message>
198
+ <message name="System.ExternalMonitorFile.get_source_pathResponse">
199
+ <part name="return" type="tns:Common.StringSequence"/>
200
+ </message>
201
+
202
+ <message name="System.ExternalMonitorFile.get_system_pathRequest">
203
+ <part name="files" type="tns:Common.StringSequence"/>
204
+ </message>
205
+ <message name="System.ExternalMonitorFile.get_system_pathResponse">
206
+ <part name="return" type="tns:Common.StringSequence"/>
207
+ </message>
208
+
209
+ <message name="System.ExternalMonitorFile.get_system_stateRequest">
210
+ <part name="files" type="tns:Common.StringSequence"/>
211
+ </message>
212
+ <message name="System.ExternalMonitorFile.get_system_stateResponse">
213
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
214
+ </message>
215
+
216
+ <message name="System.ExternalMonitorFile.get_versionRequest">
217
+ </message>
218
+ <message name="System.ExternalMonitorFile.get_versionResponse">
219
+ <part name="return" type="xsd:string"/>
220
+ </message>
221
+
222
+ <!-- portType -->
223
+
224
+ <portType name="System.ExternalMonitorFilePortType">
225
+ <operation name="get_list">
226
+ <documentation>
227
+ Gets the identifiers of all external monitor file objects.
228
+
229
+ </documentation>
230
+ <input message="tns:System.ExternalMonitorFile.get_listRequest"/>
231
+ <output message="tns:System.ExternalMonitorFile.get_listResponse"/>
232
+ </operation>
233
+ <operation name="create">
234
+ <documentation>
235
+ Creates a set of external monitor file objects.
236
+
237
+ Once the file is imported into the file cache, it is deleted.
238
+
239
+ </documentation>
240
+ <input message="tns:System.ExternalMonitorFile.createRequest"/>
241
+ <output message="tns:System.ExternalMonitorFile.createResponse"/>
242
+ </operation>
243
+ <operation name="delete_external_monitor_file">
244
+ <documentation>
245
+ Deletes a set of external monitor file objects.
246
+
247
+ </documentation>
248
+ <input message="tns:System.ExternalMonitorFile.delete_external_monitor_fileRequest"/>
249
+ <output message="tns:System.ExternalMonitorFile.delete_external_monitor_fileResponse"/>
250
+ </operation>
251
+ <operation name="delete_all_external_monitor_files">
252
+ <documentation>
253
+ Deletes all external monitor file objects.
254
+
255
+ </documentation>
256
+ <input message="tns:System.ExternalMonitorFile.delete_all_external_monitor_filesRequest"/>
257
+ <output message="tns:System.ExternalMonitorFile.delete_all_external_monitor_filesResponse"/>
258
+ </operation>
259
+ <operation name="get_cache_path">
260
+ <documentation>
261
+ Gets the full path to the file inside the file cache for a set of
262
+ external monitor file objects. For system files outside the cache,
263
+ like ZebOS.conf, the cached path holds a soft link to the external
264
+ file.
265
+
266
+ </documentation>
267
+ <input message="tns:System.ExternalMonitorFile.get_cache_pathRequest"/>
268
+ <output message="tns:System.ExternalMonitorFile.get_cache_pathResponse"/>
269
+ </operation>
270
+ <operation name="get_checksum">
271
+ <documentation>
272
+ Gets the file checksum, a unique signature used for validation and
273
+ verification for a set of external monitor file objects.
274
+
275
+ </documentation>
276
+ <input message="tns:System.ExternalMonitorFile.get_checksumRequest"/>
277
+ <output message="tns:System.ExternalMonitorFile.get_checksumResponse"/>
278
+ </operation>
279
+ <operation name="get_creation_time">
280
+ <documentation>
281
+ Gets the file creation date/time for a set of external monitor file
282
+ objects.
283
+
284
+ </documentation>
285
+ <input message="tns:System.ExternalMonitorFile.get_creation_timeRequest"/>
286
+ <output message="tns:System.ExternalMonitorFile.get_creation_timeResponse"/>
287
+ </operation>
288
+ <operation name="get_creator">
289
+ <documentation>
290
+ Gets the name of the user who originally created the file for a set
291
+ of external monitor file objects.
292
+
293
+ </documentation>
294
+ <input message="tns:System.ExternalMonitorFile.get_creatorRequest"/>
295
+ <output message="tns:System.ExternalMonitorFile.get_creatorResponse"/>
296
+ </operation>
297
+ <operation name="get_dynamic_state">
298
+ <documentation>
299
+ Gets the state for whether this file can be modified by an external
300
+ process during runtime for a set of external monitor file objects.
301
+ Setting this allows validation to skip certain steps, such as
302
+ checksum verification.
303
+
304
+ </documentation>
305
+ <input message="tns:System.ExternalMonitorFile.get_dynamic_stateRequest"/>
306
+ <output message="tns:System.ExternalMonitorFile.get_dynamic_stateResponse"/>
307
+ </operation>
308
+ <operation name="set_local_path">
309
+ <documentation>
310
+ Sets the name of the file to be imported into the configuration
311
+ file cache for a set of external monitor file objects. Specifying
312
+ this attribute for an existing file object triggers importing the
313
+ specified file into the configuration file cache, replacing the
314
+ existing file in the file object. Once the file is imported into
315
+ the file cache, it is deleted. This name must either be a full file
316
+ path or a path relative to /usr/bin/monitors, /usr/share/monitors,
317
+ or /config/monitors.
318
+
319
+ </documentation>
320
+ <input message="tns:System.ExternalMonitorFile.set_local_pathRequest"/>
321
+ <output message="tns:System.ExternalMonitorFile.set_local_pathResponse"/>
322
+ </operation>
323
+ <operation name="get_modification_time">
324
+ <documentation>
325
+ Gets the date/time of the last file modification for a set of
326
+ external monitor file objects.
327
+
328
+ </documentation>
329
+ <input message="tns:System.ExternalMonitorFile.get_modification_timeRequest"/>
330
+ <output message="tns:System.ExternalMonitorFile.get_modification_timeResponse"/>
331
+ </operation>
332
+ <operation name="get_modifier">
333
+ <documentation>
334
+ Gets the name of the user who last modified the file for a set of
335
+ external monitor file objects.
336
+
337
+ </documentation>
338
+ <input message="tns:System.ExternalMonitorFile.get_modifierRequest"/>
339
+ <output message="tns:System.ExternalMonitorFile.get_modifierResponse"/>
340
+ </operation>
341
+ <operation name="get_mode">
342
+ <documentation>
343
+ Gets the bit field holding the file type and permissions, as in the
344
+ Unix "stat" information for a set of external monitor file objects.
345
+
346
+ </documentation>
347
+ <input message="tns:System.ExternalMonitorFile.get_modeRequest"/>
348
+ <output message="tns:System.ExternalMonitorFile.get_modeResponse"/>
349
+ </operation>
350
+ <operation name="get_revision">
351
+ <documentation>
352
+ Gets the running count of file modifications for a set of external
353
+ monitor file objects.
354
+
355
+ </documentation>
356
+ <input message="tns:System.ExternalMonitorFile.get_revisionRequest"/>
357
+ <output message="tns:System.ExternalMonitorFile.get_revisionResponse"/>
358
+ </operation>
359
+ <operation name="get_size">
360
+ <documentation>
361
+ Gets the file size for a set of external monitor file objects.
362
+
363
+ </documentation>
364
+ <input message="tns:System.ExternalMonitorFile.get_sizeRequest"/>
365
+ <output message="tns:System.ExternalMonitorFile.get_sizeResponse"/>
366
+ </operation>
367
+ <operation name="get_source_path">
368
+ <documentation>
369
+ Gets the the original source path of the file for a set of external
370
+ monitor file objects.
371
+
372
+ </documentation>
373
+ <input message="tns:System.ExternalMonitorFile.get_source_pathRequest"/>
374
+ <output message="tns:System.ExternalMonitorFile.get_source_pathResponse"/>
375
+ </operation>
376
+ <operation name="get_system_path">
377
+ <documentation>
378
+ Gets the full path to system files that exist outside the file
379
+ cache for a set of external monitor file objects. The cached file
380
+ is simply a soft link to this file.
381
+
382
+ </documentation>
383
+ <input message="tns:System.ExternalMonitorFile.get_system_pathRequest"/>
384
+ <output message="tns:System.ExternalMonitorFile.get_system_pathResponse"/>
385
+ </operation>
386
+ <operation name="get_system_state">
387
+ <documentation>
388
+ Gets the state for whether this is a system file for a set of
389
+ external monitor file objects. System files cannot be created,
390
+ deleted, or modified by users, and file objects holding them cannot
391
+ be deleted.
392
+
393
+ </documentation>
394
+ <input message="tns:System.ExternalMonitorFile.get_system_stateRequest"/>
395
+ <output message="tns:System.ExternalMonitorFile.get_system_stateResponse"/>
396
+ </operation>
397
+ <operation name="get_version">
398
+ <documentation>
399
+ Gets the version information for this interface.
400
+
401
+ </documentation>
402
+ <input message="tns:System.ExternalMonitorFile.get_versionRequest"/>
403
+ <output message="tns:System.ExternalMonitorFile.get_versionResponse"/>
404
+ </operation>
405
+ </portType>
406
+
407
+ <!-- binding -->
408
+
409
+ <binding name="System.ExternalMonitorFileBinding" type="tns:System.ExternalMonitorFilePortType">
410
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
411
+ <operation name="get_list">
412
+ <documentation>
413
+ Gets the identifiers of all external monitor file objects.
414
+
415
+ </documentation>
416
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
417
+ <input>
418
+ <soap:body
419
+ use="encoded"
420
+ namespace="urn:iControl:System/ExternalMonitorFile"
421
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
422
+ </input>
423
+ <output>
424
+ <soap:body
425
+ use="encoded"
426
+ namespace="urn:iControl:System/ExternalMonitorFile"
427
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
428
+ </output>
429
+ </operation>
430
+
431
+ <operation name="create">
432
+ <documentation>
433
+ Creates a set of external monitor file objects.
434
+
435
+ Once the file is imported into the file cache, it is deleted.
436
+
437
+ </documentation>
438
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
439
+ <input>
440
+ <soap:body
441
+ use="encoded"
442
+ namespace="urn:iControl:System/ExternalMonitorFile"
443
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
444
+ </input>
445
+ <output>
446
+ <soap:body
447
+ use="encoded"
448
+ namespace="urn:iControl:System/ExternalMonitorFile"
449
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
450
+ </output>
451
+ </operation>
452
+
453
+ <operation name="delete_external_monitor_file">
454
+ <documentation>
455
+ Deletes a set of external monitor file objects.
456
+
457
+ </documentation>
458
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
459
+ <input>
460
+ <soap:body
461
+ use="encoded"
462
+ namespace="urn:iControl:System/ExternalMonitorFile"
463
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
464
+ </input>
465
+ <output>
466
+ <soap:body
467
+ use="encoded"
468
+ namespace="urn:iControl:System/ExternalMonitorFile"
469
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
470
+ </output>
471
+ </operation>
472
+
473
+ <operation name="delete_all_external_monitor_files">
474
+ <documentation>
475
+ Deletes all external monitor file objects.
476
+
477
+ </documentation>
478
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
479
+ <input>
480
+ <soap:body
481
+ use="encoded"
482
+ namespace="urn:iControl:System/ExternalMonitorFile"
483
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
484
+ </input>
485
+ <output>
486
+ <soap:body
487
+ use="encoded"
488
+ namespace="urn:iControl:System/ExternalMonitorFile"
489
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
490
+ </output>
491
+ </operation>
492
+
493
+ <operation name="get_cache_path">
494
+ <documentation>
495
+ Gets the full path to the file inside the file cache for a set of
496
+ external monitor file objects. For system files outside the cache,
497
+ like ZebOS.conf, the cached path holds a soft link to the external
498
+ file.
499
+
500
+ </documentation>
501
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
502
+ <input>
503
+ <soap:body
504
+ use="encoded"
505
+ namespace="urn:iControl:System/ExternalMonitorFile"
506
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
507
+ </input>
508
+ <output>
509
+ <soap:body
510
+ use="encoded"
511
+ namespace="urn:iControl:System/ExternalMonitorFile"
512
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
513
+ </output>
514
+ </operation>
515
+
516
+ <operation name="get_checksum">
517
+ <documentation>
518
+ Gets the file checksum, a unique signature used for validation and
519
+ verification for a set of external monitor file objects.
520
+
521
+ </documentation>
522
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
523
+ <input>
524
+ <soap:body
525
+ use="encoded"
526
+ namespace="urn:iControl:System/ExternalMonitorFile"
527
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
528
+ </input>
529
+ <output>
530
+ <soap:body
531
+ use="encoded"
532
+ namespace="urn:iControl:System/ExternalMonitorFile"
533
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
534
+ </output>
535
+ </operation>
536
+
537
+ <operation name="get_creation_time">
538
+ <documentation>
539
+ Gets the file creation date/time for a set of external monitor file
540
+ objects.
541
+
542
+ </documentation>
543
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
544
+ <input>
545
+ <soap:body
546
+ use="encoded"
547
+ namespace="urn:iControl:System/ExternalMonitorFile"
548
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
549
+ </input>
550
+ <output>
551
+ <soap:body
552
+ use="encoded"
553
+ namespace="urn:iControl:System/ExternalMonitorFile"
554
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
555
+ </output>
556
+ </operation>
557
+
558
+ <operation name="get_creator">
559
+ <documentation>
560
+ Gets the name of the user who originally created the file for a set
561
+ of external monitor file objects.
562
+
563
+ </documentation>
564
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
565
+ <input>
566
+ <soap:body
567
+ use="encoded"
568
+ namespace="urn:iControl:System/ExternalMonitorFile"
569
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
570
+ </input>
571
+ <output>
572
+ <soap:body
573
+ use="encoded"
574
+ namespace="urn:iControl:System/ExternalMonitorFile"
575
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
576
+ </output>
577
+ </operation>
578
+
579
+ <operation name="get_dynamic_state">
580
+ <documentation>
581
+ Gets the state for whether this file can be modified by an external
582
+ process during runtime for a set of external monitor file objects.
583
+ Setting this allows validation to skip certain steps, such as
584
+ checksum verification.
585
+
586
+ </documentation>
587
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
588
+ <input>
589
+ <soap:body
590
+ use="encoded"
591
+ namespace="urn:iControl:System/ExternalMonitorFile"
592
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
593
+ </input>
594
+ <output>
595
+ <soap:body
596
+ use="encoded"
597
+ namespace="urn:iControl:System/ExternalMonitorFile"
598
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
599
+ </output>
600
+ </operation>
601
+
602
+ <operation name="set_local_path">
603
+ <documentation>
604
+ Sets the name of the file to be imported into the configuration
605
+ file cache for a set of external monitor file objects. Specifying
606
+ this attribute for an existing file object triggers importing the
607
+ specified file into the configuration file cache, replacing the
608
+ existing file in the file object. Once the file is imported into
609
+ the file cache, it is deleted. This name must either be a full file
610
+ path or a path relative to /usr/bin/monitors, /usr/share/monitors,
611
+ or /config/monitors.
612
+
613
+ </documentation>
614
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
615
+ <input>
616
+ <soap:body
617
+ use="encoded"
618
+ namespace="urn:iControl:System/ExternalMonitorFile"
619
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
620
+ </input>
621
+ <output>
622
+ <soap:body
623
+ use="encoded"
624
+ namespace="urn:iControl:System/ExternalMonitorFile"
625
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
626
+ </output>
627
+ </operation>
628
+
629
+ <operation name="get_modification_time">
630
+ <documentation>
631
+ Gets the date/time of the last file modification for a set of
632
+ external monitor file objects.
633
+
634
+ </documentation>
635
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
636
+ <input>
637
+ <soap:body
638
+ use="encoded"
639
+ namespace="urn:iControl:System/ExternalMonitorFile"
640
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
641
+ </input>
642
+ <output>
643
+ <soap:body
644
+ use="encoded"
645
+ namespace="urn:iControl:System/ExternalMonitorFile"
646
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
647
+ </output>
648
+ </operation>
649
+
650
+ <operation name="get_modifier">
651
+ <documentation>
652
+ Gets the name of the user who last modified the file for a set of
653
+ external monitor file objects.
654
+
655
+ </documentation>
656
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
657
+ <input>
658
+ <soap:body
659
+ use="encoded"
660
+ namespace="urn:iControl:System/ExternalMonitorFile"
661
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
662
+ </input>
663
+ <output>
664
+ <soap:body
665
+ use="encoded"
666
+ namespace="urn:iControl:System/ExternalMonitorFile"
667
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
668
+ </output>
669
+ </operation>
670
+
671
+ <operation name="get_mode">
672
+ <documentation>
673
+ Gets the bit field holding the file type and permissions, as in the
674
+ Unix "stat" information for a set of external monitor file objects.
675
+
676
+ </documentation>
677
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
678
+ <input>
679
+ <soap:body
680
+ use="encoded"
681
+ namespace="urn:iControl:System/ExternalMonitorFile"
682
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
683
+ </input>
684
+ <output>
685
+ <soap:body
686
+ use="encoded"
687
+ namespace="urn:iControl:System/ExternalMonitorFile"
688
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
689
+ </output>
690
+ </operation>
691
+
692
+ <operation name="get_revision">
693
+ <documentation>
694
+ Gets the running count of file modifications for a set of external
695
+ monitor file objects.
696
+
697
+ </documentation>
698
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
699
+ <input>
700
+ <soap:body
701
+ use="encoded"
702
+ namespace="urn:iControl:System/ExternalMonitorFile"
703
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
704
+ </input>
705
+ <output>
706
+ <soap:body
707
+ use="encoded"
708
+ namespace="urn:iControl:System/ExternalMonitorFile"
709
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
710
+ </output>
711
+ </operation>
712
+
713
+ <operation name="get_size">
714
+ <documentation>
715
+ Gets the file size for a set of external monitor file objects.
716
+
717
+ </documentation>
718
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
719
+ <input>
720
+ <soap:body
721
+ use="encoded"
722
+ namespace="urn:iControl:System/ExternalMonitorFile"
723
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
724
+ </input>
725
+ <output>
726
+ <soap:body
727
+ use="encoded"
728
+ namespace="urn:iControl:System/ExternalMonitorFile"
729
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
730
+ </output>
731
+ </operation>
732
+
733
+ <operation name="get_source_path">
734
+ <documentation>
735
+ Gets the the original source path of the file for a set of external
736
+ monitor file objects.
737
+
738
+ </documentation>
739
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
740
+ <input>
741
+ <soap:body
742
+ use="encoded"
743
+ namespace="urn:iControl:System/ExternalMonitorFile"
744
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
745
+ </input>
746
+ <output>
747
+ <soap:body
748
+ use="encoded"
749
+ namespace="urn:iControl:System/ExternalMonitorFile"
750
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
751
+ </output>
752
+ </operation>
753
+
754
+ <operation name="get_system_path">
755
+ <documentation>
756
+ Gets the full path to system files that exist outside the file
757
+ cache for a set of external monitor file objects. The cached file
758
+ is simply a soft link to this file.
759
+
760
+ </documentation>
761
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
762
+ <input>
763
+ <soap:body
764
+ use="encoded"
765
+ namespace="urn:iControl:System/ExternalMonitorFile"
766
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
767
+ </input>
768
+ <output>
769
+ <soap:body
770
+ use="encoded"
771
+ namespace="urn:iControl:System/ExternalMonitorFile"
772
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
773
+ </output>
774
+ </operation>
775
+
776
+ <operation name="get_system_state">
777
+ <documentation>
778
+ Gets the state for whether this is a system file for a set of
779
+ external monitor file objects. System files cannot be created,
780
+ deleted, or modified by users, and file objects holding them cannot
781
+ be deleted.
782
+
783
+ </documentation>
784
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
785
+ <input>
786
+ <soap:body
787
+ use="encoded"
788
+ namespace="urn:iControl:System/ExternalMonitorFile"
789
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
790
+ </input>
791
+ <output>
792
+ <soap:body
793
+ use="encoded"
794
+ namespace="urn:iControl:System/ExternalMonitorFile"
795
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
796
+ </output>
797
+ </operation>
798
+
799
+ <operation name="get_version">
800
+ <documentation>
801
+ Gets the version information for this interface.
802
+
803
+ </documentation>
804
+ <soap:operation soapAction="urn:iControl:System/ExternalMonitorFile"/>
805
+ <input>
806
+ <soap:body
807
+ use="encoded"
808
+ namespace="urn:iControl:System/ExternalMonitorFile"
809
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
810
+ </input>
811
+ <output>
812
+ <soap:body
813
+ use="encoded"
814
+ namespace="urn:iControl:System/ExternalMonitorFile"
815
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
816
+ </output>
817
+ </operation>
818
+ </binding>
819
+
820
+ <!-- service -->
821
+
822
+ <service name="System.ExternalMonitorFile">
823
+ <documentation>
824
+ External monitor executeable configuration file. These files are
825
+ intimately tied into the configuration, such that any change to the
826
+ file itself is treated as a change to the configuration. Such files are
827
+ also integrated into a file cache for more complete control.
828
+
829
+ </documentation>
830
+ <port name="System.ExternalMonitorFilePort" binding="tns:System.ExternalMonitorFileBinding">
831
+ <soap:address location="https://url_to_service"/>
832
+ </port>
833
+ </service>
834
+ </definitions>