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,1442 @@
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.Disk"
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="System.Disk.LogicalDiskSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.Disk.LogicalDisk[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:simpleType name="System.Disk.APPVOwner">
32
+ <xsd:restriction base="xsd:string">
33
+ <xsd:enumeration value="APPV_OWNER_UNKNOWN">
34
+ <xsd:annotation>
35
+ <xsd:documentation>APPV_OWNER_UNKNOWN</xsd:documentation>
36
+ </xsd:annotation>
37
+ </xsd:enumeration>
38
+ <xsd:enumeration value="APPV_OWNER_UNASSIGNED">
39
+ <xsd:annotation>
40
+ <xsd:documentation>APPV_OWNER_UNASSIGNED</xsd:documentation>
41
+ </xsd:annotation>
42
+ </xsd:enumeration>
43
+ <xsd:enumeration value="APPV_OWNER_DATASTOR">
44
+ <xsd:annotation>
45
+ <xsd:documentation>APPV_OWNER_DATASTOR</xsd:documentation>
46
+ </xsd:annotation>
47
+ </xsd:enumeration>
48
+ <xsd:enumeration value="APPV_OWNER_MYSQL">
49
+ <xsd:annotation>
50
+ <xsd:documentation>APPV_OWNER_MYSQL</xsd:documentation>
51
+ </xsd:annotation>
52
+ </xsd:enumeration>
53
+ <xsd:enumeration value="APPV_OWNER_VCMP">
54
+ <xsd:annotation>
55
+ <xsd:documentation>APPV_OWNER_VCMP</xsd:documentation>
56
+ </xsd:annotation>
57
+ </xsd:enumeration>
58
+ <xsd:enumeration value="APPV_OWNER_AVR">
59
+ <xsd:annotation>
60
+ <xsd:documentation>APPV_OWNER_AVR</xsd:documentation>
61
+ </xsd:annotation>
62
+ </xsd:enumeration>
63
+ <xsd:enumeration value="APPV_OWNER_AFM">
64
+ <xsd:annotation>
65
+ <xsd:documentation>APPV_OWNER_AFM</xsd:documentation>
66
+ </xsd:annotation>
67
+ </xsd:enumeration>
68
+ </xsd:restriction>
69
+ </xsd:simpleType>
70
+ <xsd:simpleType name="Common.EnabledState">
71
+ <xsd:restriction base="xsd:string">
72
+ <xsd:enumeration value="STATE_DISABLED">
73
+ <xsd:annotation>
74
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
75
+ </xsd:annotation>
76
+ </xsd:enumeration>
77
+ <xsd:enumeration value="STATE_ENABLED">
78
+ <xsd:annotation>
79
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
80
+ </xsd:annotation>
81
+ </xsd:enumeration>
82
+ </xsd:restriction>
83
+ </xsd:simpleType>
84
+ <xsd:complexType name="System.Disk.ApplicationVolumeStatusSequence">
85
+ <xsd:complexContent>
86
+ <xsd:restriction base='SOAP-ENC:Array'>
87
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.Disk.ApplicationVolumeStatus[]'/>
88
+ </xsd:restriction>
89
+ </xsd:complexContent>
90
+ </xsd:complexType>
91
+ <xsd:complexType name="System.Disk.LogicalDiskUserModeSequence">
92
+ <xsd:complexContent>
93
+ <xsd:restriction base='SOAP-ENC:Array'>
94
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.Disk.LogicalDiskUserMode[]'/>
95
+ </xsd:restriction>
96
+ </xsd:complexContent>
97
+ </xsd:complexType>
98
+ <xsd:complexType name="System.Disk.LogicalDisk">
99
+ <xsd:sequence>
100
+ <xsd:element name="slot_id" type="xsd:long"/>
101
+ <xsd:element name="name" type="xsd:string"/>
102
+ </xsd:sequence>
103
+ </xsd:complexType>
104
+ <xsd:complexType name="Common.StringSequence">
105
+ <xsd:complexContent>
106
+ <xsd:restriction base='SOAP-ENC:Array'>
107
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
108
+ </xsd:restriction>
109
+ </xsd:complexContent>
110
+ </xsd:complexType>
111
+ <xsd:complexType name="System.Disk.ApplicationVolume">
112
+ <xsd:sequence>
113
+ <xsd:element name="slot_id" type="xsd:long"/>
114
+ <xsd:element name="name" type="xsd:string"/>
115
+ </xsd:sequence>
116
+ </xsd:complexType>
117
+ <xsd:simpleType name="System.Disk.LogicalDiskUserMode">
118
+ <xsd:restriction base="xsd:string">
119
+ <xsd:enumeration value="LD_USER_MODE_UNKNOWN">
120
+ <xsd:annotation>
121
+ <xsd:documentation>LD_USER_MODE_UNKNOWN</xsd:documentation>
122
+ </xsd:annotation>
123
+ </xsd:enumeration>
124
+ <xsd:enumeration value="LD_USER_MODE_NONE">
125
+ <xsd:annotation>
126
+ <xsd:documentation>LD_USER_MODE_NONE</xsd:documentation>
127
+ </xsd:annotation>
128
+ </xsd:enumeration>
129
+ <xsd:enumeration value="LD_USER_MODE_MIXED">
130
+ <xsd:annotation>
131
+ <xsd:documentation>LD_USER_MODE_MIXED</xsd:documentation>
132
+ </xsd:annotation>
133
+ </xsd:enumeration>
134
+ <xsd:enumeration value="LD_USER_MODE_DATASTOR">
135
+ <xsd:annotation>
136
+ <xsd:documentation>LD_USER_MODE_DATASTOR</xsd:documentation>
137
+ </xsd:annotation>
138
+ </xsd:enumeration>
139
+ <xsd:enumeration value="LD_USER_MODE_CONTROL">
140
+ <xsd:annotation>
141
+ <xsd:documentation>LD_USER_MODE_CONTROL</xsd:documentation>
142
+ </xsd:annotation>
143
+ </xsd:enumeration>
144
+ </xsd:restriction>
145
+ </xsd:simpleType>
146
+ <xsd:complexType name="System.Disk.ApplicationVolumeSequence">
147
+ <xsd:complexContent>
148
+ <xsd:restriction base='SOAP-ENC:Array'>
149
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.Disk.ApplicationVolume[]'/>
150
+ </xsd:restriction>
151
+ </xsd:complexContent>
152
+ </xsd:complexType>
153
+ <xsd:complexType name="Common.BooleanSequence">
154
+ <xsd:complexContent>
155
+ <xsd:restriction base='SOAP-ENC:Array'>
156
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:boolean[]'/>
157
+ </xsd:restriction>
158
+ </xsd:complexContent>
159
+ </xsd:complexType>
160
+ <xsd:complexType name="Common.ULongSequence">
161
+ <xsd:complexContent>
162
+ <xsd:restriction base='SOAP-ENC:Array'>
163
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
164
+ </xsd:restriction>
165
+ </xsd:complexContent>
166
+ </xsd:complexType>
167
+ <xsd:simpleType name="System.Disk.RAIDStatus">
168
+ <xsd:restriction base="xsd:string">
169
+ <xsd:enumeration value="RAID_STATUS_UNDEFINED">
170
+ <xsd:annotation>
171
+ <xsd:documentation>RAID_STATUS_UNDEFINED</xsd:documentation>
172
+ </xsd:annotation>
173
+ </xsd:enumeration>
174
+ <xsd:enumeration value="RAID_STATUS_SYNCHRONIZED">
175
+ <xsd:annotation>
176
+ <xsd:documentation>RAID_STATUS_SYNCHRONIZED</xsd:documentation>
177
+ </xsd:annotation>
178
+ </xsd:enumeration>
179
+ <xsd:enumeration value="RAID_STATUS_REPLICATING">
180
+ <xsd:annotation>
181
+ <xsd:documentation>RAID_STATUS_REPLICATING</xsd:documentation>
182
+ </xsd:annotation>
183
+ </xsd:enumeration>
184
+ <xsd:enumeration value="RAID_STATUS_MISSING">
185
+ <xsd:annotation>
186
+ <xsd:documentation>RAID_STATUS_MISSING</xsd:documentation>
187
+ </xsd:annotation>
188
+ </xsd:enumeration>
189
+ <xsd:enumeration value="RAID_STATUS_FAILED">
190
+ <xsd:annotation>
191
+ <xsd:documentation>RAID_STATUS_FAILED</xsd:documentation>
192
+ </xsd:annotation>
193
+ </xsd:enumeration>
194
+ </xsd:restriction>
195
+ </xsd:simpleType>
196
+ <xsd:complexType name="Common.StringSequenceSequence">
197
+ <xsd:complexContent>
198
+ <xsd:restriction base='SOAP-ENC:Array'>
199
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
200
+ </xsd:restriction>
201
+ </xsd:complexContent>
202
+ </xsd:complexType>
203
+ <xsd:simpleType name="System.Disk.APPVPreservabilityMode">
204
+ <xsd:restriction base="xsd:string">
205
+ <xsd:enumeration value="APPV_MODE_UNKNOWN">
206
+ <xsd:annotation>
207
+ <xsd:documentation>APPV_MODE_UNKNOWN</xsd:documentation>
208
+ </xsd:annotation>
209
+ </xsd:enumeration>
210
+ <xsd:enumeration value="APPV_MODE_DISCARDABLE">
211
+ <xsd:annotation>
212
+ <xsd:documentation>APPV_MODE_DISCARDABLE</xsd:documentation>
213
+ </xsd:annotation>
214
+ </xsd:enumeration>
215
+ <xsd:enumeration value="APPV_MODE_PRECIOUS">
216
+ <xsd:annotation>
217
+ <xsd:documentation>APPV_MODE_PRECIOUS</xsd:documentation>
218
+ </xsd:annotation>
219
+ </xsd:enumeration>
220
+ </xsd:restriction>
221
+ </xsd:simpleType>
222
+ <xsd:complexType name="System.Disk.LogicalDiskSequenceSequence">
223
+ <xsd:complexContent>
224
+ <xsd:restriction base='SOAP-ENC:Array'>
225
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.Disk.LogicalDiskSequence[]'/>
226
+ </xsd:restriction>
227
+ </xsd:complexContent>
228
+ </xsd:complexType>
229
+ <xsd:complexType name="System.Disk.RAIDStatusSequence">
230
+ <xsd:complexContent>
231
+ <xsd:restriction base='SOAP-ENC:Array'>
232
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:System.Disk.RAIDStatus[]'/>
233
+ </xsd:restriction>
234
+ </xsd:complexContent>
235
+ </xsd:complexType>
236
+ <xsd:complexType name="System.Disk.ApplicationVolumeStatus">
237
+ <xsd:sequence>
238
+ <xsd:element name="logical_disk" type="xsd:string"/>
239
+ <xsd:element name="visibility" type="xsd:string"/>
240
+ <xsd:element name="size" type="xsd:long"/>
241
+ <xsd:element name="owner" type="tns:System.Disk.APPVOwner"/>
242
+ <xsd:element name="resizeable" type="tns:Common.EnabledState"/>
243
+ <xsd:element name="preservability" type="tns:System.Disk.APPVPreservabilityMode"/>
244
+ </xsd:sequence>
245
+ </xsd:complexType>
246
+ </xsd:schema>
247
+ </types>
248
+
249
+ <!-- message -->
250
+
251
+ <message name="System.Disk.is_raid_capableRequest">
252
+ </message>
253
+ <message name="System.Disk.is_raid_capableResponse">
254
+ <part name="return" type="xsd:boolean"/>
255
+ </message>
256
+
257
+ <message name="System.Disk.get_listRequest">
258
+ </message>
259
+ <message name="System.Disk.get_listResponse">
260
+ <part name="return" type="tns:Common.StringSequence"/>
261
+ </message>
262
+
263
+ <message name="System.Disk.get_slot_idRequest">
264
+ <part name="serial_numbers" type="tns:Common.StringSequence"/>
265
+ </message>
266
+ <message name="System.Disk.get_slot_idResponse">
267
+ <part name="return" type="tns:Common.ULongSequence"/>
268
+ </message>
269
+
270
+ <message name="System.Disk.get_nameRequest">
271
+ <part name="serial_numbers" type="tns:Common.StringSequence"/>
272
+ </message>
273
+ <message name="System.Disk.get_nameResponse">
274
+ <part name="return" type="tns:Common.StringSequence"/>
275
+ </message>
276
+
277
+ <message name="System.Disk.is_array_memberRequest">
278
+ <part name="serial_numbers" type="tns:Common.StringSequence"/>
279
+ </message>
280
+ <message name="System.Disk.is_array_memberResponse">
281
+ <part name="return" type="tns:Common.BooleanSequence"/>
282
+ </message>
283
+
284
+ <message name="System.Disk.get_array_statusRequest">
285
+ <part name="serial_numbers" type="tns:Common.StringSequence"/>
286
+ </message>
287
+ <message name="System.Disk.get_array_statusResponse">
288
+ <part name="return" type="tns:System.Disk.RAIDStatusSequence"/>
289
+ </message>
290
+
291
+ <message name="System.Disk.get_list_of_baysRequest">
292
+ </message>
293
+ <message name="System.Disk.get_list_of_baysResponse">
294
+ <part name="return" type="tns:Common.ULongSequence"/>
295
+ </message>
296
+
297
+ <message name="System.Disk.get_bay_disk_serial_numberRequest">
298
+ <part name="ids" type="tns:Common.ULongSequence"/>
299
+ </message>
300
+ <message name="System.Disk.get_bay_disk_serial_numberResponse">
301
+ <part name="return" type="tns:Common.StringSequence"/>
302
+ </message>
303
+
304
+ <message name="System.Disk.get_application_volume_listRequest">
305
+ </message>
306
+ <message name="System.Disk.get_application_volume_listResponse">
307
+ <part name="return" type="tns:System.Disk.ApplicationVolumeSequence"/>
308
+ </message>
309
+
310
+ <message name="System.Disk.get_application_volume_statusRequest">
311
+ <part name="appvols" type="tns:System.Disk.ApplicationVolumeSequence"/>
312
+ </message>
313
+ <message name="System.Disk.get_application_volume_statusResponse">
314
+ <part name="return" type="tns:System.Disk.ApplicationVolumeStatusSequence"/>
315
+ </message>
316
+
317
+ <message name="System.Disk.delete_application_volumeRequest">
318
+ <part name="appvols" type="tns:System.Disk.ApplicationVolumeSequence"/>
319
+ </message>
320
+ <message name="System.Disk.delete_application_volumeResponse">
321
+ </message>
322
+
323
+ <message name="System.Disk.delete_all_application_volumesRequest">
324
+ </message>
325
+ <message name="System.Disk.delete_all_application_volumesResponse">
326
+ </message>
327
+
328
+ <message name="System.Disk.get_list_of_logical_disksRequest">
329
+ </message>
330
+ <message name="System.Disk.get_list_of_logical_disksResponse">
331
+ <part name="return" type="tns:System.Disk.LogicalDiskSequence"/>
332
+ </message>
333
+
334
+ <message name="System.Disk.get_logical_disk_device_nameRequest">
335
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
336
+ </message>
337
+ <message name="System.Disk.get_logical_disk_device_nameResponse">
338
+ <part name="return" type="tns:Common.StringSequence"/>
339
+ </message>
340
+
341
+ <message name="System.Disk.get_logical_disk_mediaRequest">
342
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
343
+ </message>
344
+ <message name="System.Disk.get_logical_disk_mediaResponse">
345
+ <part name="return" type="tns:Common.StringSequence"/>
346
+ </message>
347
+
348
+ <message name="System.Disk.get_logical_disk_sizeRequest">
349
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
350
+ </message>
351
+ <message name="System.Disk.get_logical_disk_sizeResponse">
352
+ <part name="return" type="tns:Common.ULongSequence"/>
353
+ </message>
354
+
355
+ <message name="System.Disk.get_logical_disk_formatRequest">
356
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
357
+ </message>
358
+ <message name="System.Disk.get_logical_disk_formatResponse">
359
+ <part name="return" type="tns:Common.StringSequence"/>
360
+ </message>
361
+
362
+ <message name="System.Disk.get_logical_disk_space_in_useRequest">
363
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
364
+ </message>
365
+ <message name="System.Disk.get_logical_disk_space_in_useResponse">
366
+ <part name="return" type="tns:Common.ULongSequence"/>
367
+ </message>
368
+
369
+ <message name="System.Disk.get_logical_disk_space_freeRequest">
370
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
371
+ </message>
372
+ <message name="System.Disk.get_logical_disk_space_freeResponse">
373
+ <part name="return" type="tns:Common.ULongSequence"/>
374
+ </message>
375
+
376
+ <message name="System.Disk.get_logical_disk_user_modeRequest">
377
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
378
+ </message>
379
+ <message name="System.Disk.get_logical_disk_user_modeResponse">
380
+ <part name="return" type="tns:System.Disk.LogicalDiskUserModeSequence"/>
381
+ </message>
382
+
383
+ <message name="System.Disk.set_logical_disk_user_modeRequest">
384
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
385
+ <part name="modes" type="tns:System.Disk.LogicalDiskUserModeSequence"/>
386
+ </message>
387
+ <message name="System.Disk.set_logical_disk_user_modeResponse">
388
+ </message>
389
+
390
+ <message name="System.Disk.get_logical_disk_space_reservedRequest">
391
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
392
+ </message>
393
+ <message name="System.Disk.get_logical_disk_space_reservedResponse">
394
+ <part name="return" type="tns:Common.ULongSequence"/>
395
+ </message>
396
+
397
+ <message name="System.Disk.set_logical_disk_space_reservedRequest">
398
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
399
+ <part name="values" type="tns:Common.ULongSequence"/>
400
+ </message>
401
+ <message name="System.Disk.set_logical_disk_space_reservedResponse">
402
+ </message>
403
+
404
+ <message name="System.Disk.get_array_memberRequest">
405
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
406
+ </message>
407
+ <message name="System.Disk.get_array_memberResponse">
408
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
409
+ </message>
410
+
411
+ <message name="System.Disk.add_array_memberRequest">
412
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
413
+ <part name="serial_numbers" type="tns:Common.StringSequenceSequence"/>
414
+ </message>
415
+ <message name="System.Disk.add_array_memberResponse">
416
+ </message>
417
+
418
+ <message name="System.Disk.add_array_member_by_logical_idRequest">
419
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
420
+ <part name="names" type="tns:System.Disk.LogicalDiskSequenceSequence"/>
421
+ </message>
422
+ <message name="System.Disk.add_array_member_by_logical_idResponse">
423
+ </message>
424
+
425
+ <message name="System.Disk.remove_array_memberRequest">
426
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
427
+ <part name="serial_numbers" type="tns:Common.StringSequenceSequence"/>
428
+ </message>
429
+ <message name="System.Disk.remove_array_memberResponse">
430
+ </message>
431
+
432
+ <message name="System.Disk.remove_array_member_by_logical_idRequest">
433
+ <part name="disks" type="tns:System.Disk.LogicalDiskSequence"/>
434
+ <part name="names" type="tns:System.Disk.LogicalDiskSequenceSequence"/>
435
+ </message>
436
+ <message name="System.Disk.remove_array_member_by_logical_idResponse">
437
+ </message>
438
+
439
+ <message name="System.Disk.get_versionRequest">
440
+ </message>
441
+ <message name="System.Disk.get_versionResponse">
442
+ <part name="return" type="xsd:string"/>
443
+ </message>
444
+
445
+ <!-- portType -->
446
+
447
+ <portType name="System.DiskPortType">
448
+ <operation name="is_raid_capable">
449
+ <documentation>
450
+ Gets an indication of whether the system is capable of
451
+ RAID operations.
452
+
453
+ </documentation>
454
+ <input message="tns:System.Disk.is_raid_capableRequest"/>
455
+ <output message="tns:System.Disk.is_raid_capableResponse"/>
456
+ </operation>
457
+ <operation name="get_list">
458
+ <documentation>
459
+ Gets a list of physical disks in the system, identified by
460
+ serial number.
461
+
462
+ </documentation>
463
+ <input message="tns:System.Disk.get_listRequest"/>
464
+ <output message="tns:System.Disk.get_listResponse"/>
465
+ </operation>
466
+ <operation name="get_slot_id">
467
+ <documentation>
468
+ Gets slot identifiers for a set of physical disks. The slot
469
+ identifier is part of the physical disk's LogicalDisk identifer.
470
+
471
+ </documentation>
472
+ <input message="tns:System.Disk.get_slot_idRequest"/>
473
+ <output message="tns:System.Disk.get_slot_idResponse"/>
474
+ </operation>
475
+ <operation name="get_name">
476
+ <documentation>
477
+ Gets names for a set of physical disks. This name is part of the
478
+ physical disk's LogicalDisk identifier.
479
+
480
+ </documentation>
481
+ <input message="tns:System.Disk.get_nameRequest"/>
482
+ <output message="tns:System.Disk.get_nameResponse"/>
483
+ </operation>
484
+ <operation name="is_array_member">
485
+ <documentation>
486
+ Gets states indicating whether a disk is a member of a RAID disk
487
+ array for a set of physical disks.
488
+
489
+ </documentation>
490
+ <input message="tns:System.Disk.is_array_memberRequest"/>
491
+ <output message="tns:System.Disk.is_array_memberResponse"/>
492
+ </operation>
493
+ <operation name="get_array_status">
494
+ <documentation>
495
+ Gets RAID disk array statuses for a set of physical disks.
496
+
497
+ Note: RAID status will be RAID_STATUS_UNDEFINED if the disk
498
+ is not a member of a RAID disk array (see
499
+ get_physical_disk_is_array_member).
500
+
501
+ </documentation>
502
+ <input message="tns:System.Disk.get_array_statusRequest"/>
503
+ <output message="tns:System.Disk.get_array_statusResponse"/>
504
+ </operation>
505
+ <operation name="get_list_of_bays">
506
+ <documentation>
507
+ Gets a list of disk bays in the system.
508
+
509
+ </documentation>
510
+ <input message="tns:System.Disk.get_list_of_baysRequest"/>
511
+ <output message="tns:System.Disk.get_list_of_baysResponse"/>
512
+ </operation>
513
+ <operation name="get_bay_disk_serial_number">
514
+ <documentation>
515
+ Gets a list of serial numbers of disks installed for a set
516
+ of disk bays.
517
+
518
+ </documentation>
519
+ <input message="tns:System.Disk.get_bay_disk_serial_numberRequest"/>
520
+ <output message="tns:System.Disk.get_bay_disk_serial_numberResponse"/>
521
+ </operation>
522
+ <operation name="get_application_volume_list">
523
+ <documentation>
524
+ Gets the list of application volumes in the system.
525
+
526
+ </documentation>
527
+ <input message="tns:System.Disk.get_application_volume_listRequest"/>
528
+ <output message="tns:System.Disk.get_application_volume_listResponse"/>
529
+ </operation>
530
+ <operation name="get_application_volume_status">
531
+ <documentation>
532
+ Gets the status for a set of application volumes.
533
+
534
+ This provides details about the requested application volumes status.
535
+
536
+ </documentation>
537
+ <input message="tns:System.Disk.get_application_volume_statusRequest"/>
538
+ <output message="tns:System.Disk.get_application_volume_statusResponse"/>
539
+ </operation>
540
+ <operation name="delete_application_volume">
541
+ <documentation>
542
+ Deletes a set of application volumes.
543
+
544
+ </documentation>
545
+ <input message="tns:System.Disk.delete_application_volumeRequest"/>
546
+ <output message="tns:System.Disk.delete_application_volumeResponse"/>
547
+ </operation>
548
+ <operation name="delete_all_application_volumes">
549
+ <documentation>
550
+ Deletes all application volumes.
551
+
552
+ </documentation>
553
+ <input message="tns:System.Disk.delete_all_application_volumesRequest"/>
554
+ <output message="tns:System.Disk.delete_all_application_volumesResponse"/>
555
+ </operation>
556
+ <operation name="get_list_of_logical_disks">
557
+ <documentation>
558
+ Gets a list of logical disks in the system.
559
+
560
+ </documentation>
561
+ <input message="tns:System.Disk.get_list_of_logical_disksRequest"/>
562
+ <output message="tns:System.Disk.get_list_of_logical_disksResponse"/>
563
+ </operation>
564
+ <operation name="get_logical_disk_device_name">
565
+ <documentation>
566
+ Gets device names for a set of logical disks.
567
+ These are names like hda, hdb, etc.
568
+ (Note: Currently, the strings are for descriptive
569
+ purposes and are subject to change).
570
+
571
+ </documentation>
572
+ <input message="tns:System.Disk.get_logical_disk_device_nameRequest"/>
573
+ <output message="tns:System.Disk.get_logical_disk_device_nameResponse"/>
574
+ </operation>
575
+ <operation name="get_logical_disk_media">
576
+ <documentation>
577
+ Gets media types for a set of logical disks.
578
+ These are strings like hd, cf, cft, etc.
579
+ (Note: Currently, the strings are for descriptive
580
+ purposes and are subject to change).
581
+
582
+ </documentation>
583
+ <input message="tns:System.Disk.get_logical_disk_mediaRequest"/>
584
+ <output message="tns:System.Disk.get_logical_disk_mediaResponse"/>
585
+ </operation>
586
+ <operation name="get_logical_disk_size">
587
+ <documentation>
588
+ Gets sizes (in MiB) for a set of logical disks.
589
+
590
+ </documentation>
591
+ <input message="tns:System.Disk.get_logical_disk_sizeRequest"/>
592
+ <output message="tns:System.Disk.get_logical_disk_sizeResponse"/>
593
+ </operation>
594
+ <operation name="get_logical_disk_format">
595
+ <documentation>
596
+ Gets the formats for a set of logical disks.
597
+ These are strings like multiboot, lvm, etc.
598
+ (Note: Currently, the strings are for descriptive
599
+ purposes and are subject to change).
600
+
601
+ </documentation>
602
+ <input message="tns:System.Disk.get_logical_disk_formatRequest"/>
603
+ <output message="tns:System.Disk.get_logical_disk_formatResponse"/>
604
+ </operation>
605
+ <operation name="get_logical_disk_space_in_use">
606
+ <documentation>
607
+ Gets the disk space in use (in MiB) for a set of logical disks.
608
+
609
+ </documentation>
610
+ <input message="tns:System.Disk.get_logical_disk_space_in_useRequest"/>
611
+ <output message="tns:System.Disk.get_logical_disk_space_in_useResponse"/>
612
+ </operation>
613
+ <operation name="get_logical_disk_space_free">
614
+ <documentation>
615
+ Gets the free disk space available (in MiB) for a set of logical disks.
616
+
617
+ </documentation>
618
+ <input message="tns:System.Disk.get_logical_disk_space_freeRequest"/>
619
+ <output message="tns:System.Disk.get_logical_disk_space_freeResponse"/>
620
+ </operation>
621
+ <operation name="get_logical_disk_user_mode">
622
+ <documentation>
623
+ Gets the user mode for a set of logical disks.
624
+ The user mode defines how the logical disk will be consumed.
625
+
626
+ </documentation>
627
+ <input message="tns:System.Disk.get_logical_disk_user_modeRequest"/>
628
+ <output message="tns:System.Disk.get_logical_disk_user_modeResponse"/>
629
+ </operation>
630
+ <operation name="set_logical_disk_user_mode">
631
+ <documentation>
632
+ Sets the user mode for a set of logical disks.
633
+
634
+ </documentation>
635
+ <input message="tns:System.Disk.set_logical_disk_user_modeRequest"/>
636
+ <output message="tns:System.Disk.set_logical_disk_user_modeResponse"/>
637
+ </operation>
638
+ <operation name="get_logical_disk_space_reserved">
639
+ <documentation>
640
+ Gets the volume group reserved sizes (MiB) for a set of logical disks.
641
+ Reserved disk space (MiB) is the value set in accordance to the safety
642
+ policy goal for a disk. If the free disk space available is at or
643
+ below this number, no provision changes are allowed that would reduce
644
+ the free space any further.
645
+
646
+ </documentation>
647
+ <input message="tns:System.Disk.get_logical_disk_space_reservedRequest"/>
648
+ <output message="tns:System.Disk.get_logical_disk_space_reservedResponse"/>
649
+ </operation>
650
+ <operation name="set_logical_disk_space_reserved">
651
+ <documentation>
652
+ Sets volume group reserved sizes (in MiB) for a set of logical disks.
653
+
654
+ </documentation>
655
+ <input message="tns:System.Disk.set_logical_disk_space_reservedRequest"/>
656
+ <output message="tns:System.Disk.set_logical_disk_space_reservedResponse"/>
657
+ </operation>
658
+ <operation name="get_array_member">
659
+ <documentation>
660
+ Gets a list of physical disks that are members of a logical disk.
661
+
662
+ Note that this can be used for any type of logical disk -- single
663
+ disk drives or disk arrays. However, it may not work for all
664
+ physical disk logical identifiers.
665
+
666
+ </documentation>
667
+ <input message="tns:System.Disk.get_array_memberRequest"/>
668
+ <output message="tns:System.Disk.get_array_memberResponse"/>
669
+ </operation>
670
+ <operation name="add_array_member">
671
+ <documentation>
672
+ Adds physical disks to a set of logical disk arrays.
673
+
674
+ For a clustered system, this must be run on the chassis slot
675
+ holding the disk array.
676
+
677
+ This only works for logical disks which represent disk arrays.
678
+
679
+ </documentation>
680
+ <input message="tns:System.Disk.add_array_memberRequest"/>
681
+ <output message="tns:System.Disk.add_array_memberResponse"/>
682
+ </operation>
683
+ <operation name="add_array_member_by_logical_id">
684
+ <documentation>
685
+ Adds physical disks to a set of logical disk arrays.
686
+
687
+ For a clustered system, this must be run on the chassis slot
688
+ holding the disk array.
689
+
690
+ This only works for logical disks which represent disk arrays.
691
+
692
+ This method does exactly the same thing as "add_array_member",
693
+ except that the added physical disks are specified by their
694
+ LogicalDisk identifiers, more convenient for user input than the
695
+ serial numbers used in "remove_array_member". It is supplied for
696
+ convenience purposes only.
697
+
698
+ </documentation>
699
+ <input message="tns:System.Disk.add_array_member_by_logical_idRequest"/>
700
+ <output message="tns:System.Disk.add_array_member_by_logical_idResponse"/>
701
+ </operation>
702
+ <operation name="remove_array_member">
703
+ <documentation>
704
+ Removes phyiscal disks from a set of logical disk arrays.
705
+
706
+ For a clustered system, this must be run on the chassis slot
707
+ holding the disk array.
708
+
709
+ This only works for logical disks which represent disk arrays.
710
+
711
+ </documentation>
712
+ <input message="tns:System.Disk.remove_array_memberRequest"/>
713
+ <output message="tns:System.Disk.remove_array_memberResponse"/>
714
+ </operation>
715
+ <operation name="remove_array_member_by_logical_id">
716
+ <documentation>
717
+ Removes physical disks from a set of logical disk arrays.
718
+
719
+ For a clustered system, this must be run on the chassis slot
720
+ holding the disk array.
721
+
722
+ This only works for logical disks which represent disk arrays.
723
+
724
+ This method does exactly the same thing as "remove_array_member",
725
+ except that the removed physical disks are specified by their
726
+ LogicalDisk identifiers, more convenient for user input than the
727
+ serial numbers used in "remove_array_member". It is supplied for
728
+ convenience purposes only.
729
+
730
+ </documentation>
731
+ <input message="tns:System.Disk.remove_array_member_by_logical_idRequest"/>
732
+ <output message="tns:System.Disk.remove_array_member_by_logical_idResponse"/>
733
+ </operation>
734
+ <operation name="get_version">
735
+ <documentation>
736
+ Gets the version information for this interface.
737
+
738
+ </documentation>
739
+ <input message="tns:System.Disk.get_versionRequest"/>
740
+ <output message="tns:System.Disk.get_versionResponse"/>
741
+ </operation>
742
+ </portType>
743
+
744
+ <!-- binding -->
745
+
746
+ <binding name="System.DiskBinding" type="tns:System.DiskPortType">
747
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
748
+ <operation name="is_raid_capable">
749
+ <documentation>
750
+ Gets an indication of whether the system is capable of
751
+ RAID operations.
752
+
753
+ </documentation>
754
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
755
+ <input>
756
+ <soap:body
757
+ use="encoded"
758
+ namespace="urn:iControl:System/Disk"
759
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
760
+ </input>
761
+ <output>
762
+ <soap:body
763
+ use="encoded"
764
+ namespace="urn:iControl:System/Disk"
765
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
766
+ </output>
767
+ </operation>
768
+
769
+ <operation name="get_list">
770
+ <documentation>
771
+ Gets a list of physical disks in the system, identified by
772
+ serial number.
773
+
774
+ </documentation>
775
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
776
+ <input>
777
+ <soap:body
778
+ use="encoded"
779
+ namespace="urn:iControl:System/Disk"
780
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
781
+ </input>
782
+ <output>
783
+ <soap:body
784
+ use="encoded"
785
+ namespace="urn:iControl:System/Disk"
786
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
787
+ </output>
788
+ </operation>
789
+
790
+ <operation name="get_slot_id">
791
+ <documentation>
792
+ Gets slot identifiers for a set of physical disks. The slot
793
+ identifier is part of the physical disk's LogicalDisk identifer.
794
+
795
+ </documentation>
796
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
797
+ <input>
798
+ <soap:body
799
+ use="encoded"
800
+ namespace="urn:iControl:System/Disk"
801
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
802
+ </input>
803
+ <output>
804
+ <soap:body
805
+ use="encoded"
806
+ namespace="urn:iControl:System/Disk"
807
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
808
+ </output>
809
+ </operation>
810
+
811
+ <operation name="get_name">
812
+ <documentation>
813
+ Gets names for a set of physical disks. This name is part of the
814
+ physical disk's LogicalDisk identifier.
815
+
816
+ </documentation>
817
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
818
+ <input>
819
+ <soap:body
820
+ use="encoded"
821
+ namespace="urn:iControl:System/Disk"
822
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
823
+ </input>
824
+ <output>
825
+ <soap:body
826
+ use="encoded"
827
+ namespace="urn:iControl:System/Disk"
828
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
829
+ </output>
830
+ </operation>
831
+
832
+ <operation name="is_array_member">
833
+ <documentation>
834
+ Gets states indicating whether a disk is a member of a RAID disk
835
+ array for a set of physical disks.
836
+
837
+ </documentation>
838
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
839
+ <input>
840
+ <soap:body
841
+ use="encoded"
842
+ namespace="urn:iControl:System/Disk"
843
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
844
+ </input>
845
+ <output>
846
+ <soap:body
847
+ use="encoded"
848
+ namespace="urn:iControl:System/Disk"
849
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
850
+ </output>
851
+ </operation>
852
+
853
+ <operation name="get_array_status">
854
+ <documentation>
855
+ Gets RAID disk array statuses for a set of physical disks.
856
+
857
+ Note: RAID status will be RAID_STATUS_UNDEFINED if the disk
858
+ is not a member of a RAID disk array (see
859
+ get_physical_disk_is_array_member).
860
+
861
+ </documentation>
862
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
863
+ <input>
864
+ <soap:body
865
+ use="encoded"
866
+ namespace="urn:iControl:System/Disk"
867
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
868
+ </input>
869
+ <output>
870
+ <soap:body
871
+ use="encoded"
872
+ namespace="urn:iControl:System/Disk"
873
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
874
+ </output>
875
+ </operation>
876
+
877
+ <operation name="get_list_of_bays">
878
+ <documentation>
879
+ Gets a list of disk bays in the system.
880
+
881
+ </documentation>
882
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
883
+ <input>
884
+ <soap:body
885
+ use="encoded"
886
+ namespace="urn:iControl:System/Disk"
887
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
888
+ </input>
889
+ <output>
890
+ <soap:body
891
+ use="encoded"
892
+ namespace="urn:iControl:System/Disk"
893
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
894
+ </output>
895
+ </operation>
896
+
897
+ <operation name="get_bay_disk_serial_number">
898
+ <documentation>
899
+ Gets a list of serial numbers of disks installed for a set
900
+ of disk bays.
901
+
902
+ </documentation>
903
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
904
+ <input>
905
+ <soap:body
906
+ use="encoded"
907
+ namespace="urn:iControl:System/Disk"
908
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
909
+ </input>
910
+ <output>
911
+ <soap:body
912
+ use="encoded"
913
+ namespace="urn:iControl:System/Disk"
914
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
915
+ </output>
916
+ </operation>
917
+
918
+ <operation name="get_application_volume_list">
919
+ <documentation>
920
+ Gets the list of application volumes in the system.
921
+
922
+ </documentation>
923
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
924
+ <input>
925
+ <soap:body
926
+ use="encoded"
927
+ namespace="urn:iControl:System/Disk"
928
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
929
+ </input>
930
+ <output>
931
+ <soap:body
932
+ use="encoded"
933
+ namespace="urn:iControl:System/Disk"
934
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
935
+ </output>
936
+ </operation>
937
+
938
+ <operation name="get_application_volume_status">
939
+ <documentation>
940
+ Gets the status for a set of application volumes.
941
+
942
+ This provides details about the requested application volumes status.
943
+
944
+ </documentation>
945
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
946
+ <input>
947
+ <soap:body
948
+ use="encoded"
949
+ namespace="urn:iControl:System/Disk"
950
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
951
+ </input>
952
+ <output>
953
+ <soap:body
954
+ use="encoded"
955
+ namespace="urn:iControl:System/Disk"
956
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
957
+ </output>
958
+ </operation>
959
+
960
+ <operation name="delete_application_volume">
961
+ <documentation>
962
+ Deletes a set of application volumes.
963
+
964
+ </documentation>
965
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
966
+ <input>
967
+ <soap:body
968
+ use="encoded"
969
+ namespace="urn:iControl:System/Disk"
970
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
971
+ </input>
972
+ <output>
973
+ <soap:body
974
+ use="encoded"
975
+ namespace="urn:iControl:System/Disk"
976
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
977
+ </output>
978
+ </operation>
979
+
980
+ <operation name="delete_all_application_volumes">
981
+ <documentation>
982
+ Deletes all application volumes.
983
+
984
+ </documentation>
985
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
986
+ <input>
987
+ <soap:body
988
+ use="encoded"
989
+ namespace="urn:iControl:System/Disk"
990
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
991
+ </input>
992
+ <output>
993
+ <soap:body
994
+ use="encoded"
995
+ namespace="urn:iControl:System/Disk"
996
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
997
+ </output>
998
+ </operation>
999
+
1000
+ <operation name="get_list_of_logical_disks">
1001
+ <documentation>
1002
+ Gets a list of logical disks in the system.
1003
+
1004
+ </documentation>
1005
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1006
+ <input>
1007
+ <soap:body
1008
+ use="encoded"
1009
+ namespace="urn:iControl:System/Disk"
1010
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1011
+ </input>
1012
+ <output>
1013
+ <soap:body
1014
+ use="encoded"
1015
+ namespace="urn:iControl:System/Disk"
1016
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1017
+ </output>
1018
+ </operation>
1019
+
1020
+ <operation name="get_logical_disk_device_name">
1021
+ <documentation>
1022
+ Gets device names for a set of logical disks.
1023
+ These are names like hda, hdb, etc.
1024
+ (Note: Currently, the strings are for descriptive
1025
+ purposes and are subject to change).
1026
+
1027
+ </documentation>
1028
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1029
+ <input>
1030
+ <soap:body
1031
+ use="encoded"
1032
+ namespace="urn:iControl:System/Disk"
1033
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1034
+ </input>
1035
+ <output>
1036
+ <soap:body
1037
+ use="encoded"
1038
+ namespace="urn:iControl:System/Disk"
1039
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1040
+ </output>
1041
+ </operation>
1042
+
1043
+ <operation name="get_logical_disk_media">
1044
+ <documentation>
1045
+ Gets media types for a set of logical disks.
1046
+ These are strings like hd, cf, cft, etc.
1047
+ (Note: Currently, the strings are for descriptive
1048
+ purposes and are subject to change).
1049
+
1050
+ </documentation>
1051
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1052
+ <input>
1053
+ <soap:body
1054
+ use="encoded"
1055
+ namespace="urn:iControl:System/Disk"
1056
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1057
+ </input>
1058
+ <output>
1059
+ <soap:body
1060
+ use="encoded"
1061
+ namespace="urn:iControl:System/Disk"
1062
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1063
+ </output>
1064
+ </operation>
1065
+
1066
+ <operation name="get_logical_disk_size">
1067
+ <documentation>
1068
+ Gets sizes (in MiB) for a set of logical disks.
1069
+
1070
+ </documentation>
1071
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1072
+ <input>
1073
+ <soap:body
1074
+ use="encoded"
1075
+ namespace="urn:iControl:System/Disk"
1076
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1077
+ </input>
1078
+ <output>
1079
+ <soap:body
1080
+ use="encoded"
1081
+ namespace="urn:iControl:System/Disk"
1082
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1083
+ </output>
1084
+ </operation>
1085
+
1086
+ <operation name="get_logical_disk_format">
1087
+ <documentation>
1088
+ Gets the formats for a set of logical disks.
1089
+ These are strings like multiboot, lvm, etc.
1090
+ (Note: Currently, the strings are for descriptive
1091
+ purposes and are subject to change).
1092
+
1093
+ </documentation>
1094
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1095
+ <input>
1096
+ <soap:body
1097
+ use="encoded"
1098
+ namespace="urn:iControl:System/Disk"
1099
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1100
+ </input>
1101
+ <output>
1102
+ <soap:body
1103
+ use="encoded"
1104
+ namespace="urn:iControl:System/Disk"
1105
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1106
+ </output>
1107
+ </operation>
1108
+
1109
+ <operation name="get_logical_disk_space_in_use">
1110
+ <documentation>
1111
+ Gets the disk space in use (in MiB) for a set of logical disks.
1112
+
1113
+ </documentation>
1114
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1115
+ <input>
1116
+ <soap:body
1117
+ use="encoded"
1118
+ namespace="urn:iControl:System/Disk"
1119
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1120
+ </input>
1121
+ <output>
1122
+ <soap:body
1123
+ use="encoded"
1124
+ namespace="urn:iControl:System/Disk"
1125
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1126
+ </output>
1127
+ </operation>
1128
+
1129
+ <operation name="get_logical_disk_space_free">
1130
+ <documentation>
1131
+ Gets the free disk space available (in MiB) for a set of logical disks.
1132
+
1133
+ </documentation>
1134
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1135
+ <input>
1136
+ <soap:body
1137
+ use="encoded"
1138
+ namespace="urn:iControl:System/Disk"
1139
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1140
+ </input>
1141
+ <output>
1142
+ <soap:body
1143
+ use="encoded"
1144
+ namespace="urn:iControl:System/Disk"
1145
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1146
+ </output>
1147
+ </operation>
1148
+
1149
+ <operation name="get_logical_disk_user_mode">
1150
+ <documentation>
1151
+ Gets the user mode for a set of logical disks.
1152
+ The user mode defines how the logical disk will be consumed.
1153
+
1154
+ </documentation>
1155
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1156
+ <input>
1157
+ <soap:body
1158
+ use="encoded"
1159
+ namespace="urn:iControl:System/Disk"
1160
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1161
+ </input>
1162
+ <output>
1163
+ <soap:body
1164
+ use="encoded"
1165
+ namespace="urn:iControl:System/Disk"
1166
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1167
+ </output>
1168
+ </operation>
1169
+
1170
+ <operation name="set_logical_disk_user_mode">
1171
+ <documentation>
1172
+ Sets the user mode for a set of logical disks.
1173
+
1174
+ </documentation>
1175
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1176
+ <input>
1177
+ <soap:body
1178
+ use="encoded"
1179
+ namespace="urn:iControl:System/Disk"
1180
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1181
+ </input>
1182
+ <output>
1183
+ <soap:body
1184
+ use="encoded"
1185
+ namespace="urn:iControl:System/Disk"
1186
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1187
+ </output>
1188
+ </operation>
1189
+
1190
+ <operation name="get_logical_disk_space_reserved">
1191
+ <documentation>
1192
+ Gets the volume group reserved sizes (MiB) for a set of logical disks.
1193
+ Reserved disk space (MiB) is the value set in accordance to the safety
1194
+ policy goal for a disk. If the free disk space available is at or
1195
+ below this number, no provision changes are allowed that would reduce
1196
+ the free space any further.
1197
+
1198
+ </documentation>
1199
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1200
+ <input>
1201
+ <soap:body
1202
+ use="encoded"
1203
+ namespace="urn:iControl:System/Disk"
1204
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1205
+ </input>
1206
+ <output>
1207
+ <soap:body
1208
+ use="encoded"
1209
+ namespace="urn:iControl:System/Disk"
1210
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1211
+ </output>
1212
+ </operation>
1213
+
1214
+ <operation name="set_logical_disk_space_reserved">
1215
+ <documentation>
1216
+ Sets volume group reserved sizes (in MiB) for a set of logical disks.
1217
+
1218
+ </documentation>
1219
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1220
+ <input>
1221
+ <soap:body
1222
+ use="encoded"
1223
+ namespace="urn:iControl:System/Disk"
1224
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1225
+ </input>
1226
+ <output>
1227
+ <soap:body
1228
+ use="encoded"
1229
+ namespace="urn:iControl:System/Disk"
1230
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1231
+ </output>
1232
+ </operation>
1233
+
1234
+ <operation name="get_array_member">
1235
+ <documentation>
1236
+ Gets a list of physical disks that are members of a logical disk.
1237
+
1238
+ Note that this can be used for any type of logical disk -- single
1239
+ disk drives or disk arrays. However, it may not work for all
1240
+ physical disk logical identifiers.
1241
+
1242
+ </documentation>
1243
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1244
+ <input>
1245
+ <soap:body
1246
+ use="encoded"
1247
+ namespace="urn:iControl:System/Disk"
1248
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1249
+ </input>
1250
+ <output>
1251
+ <soap:body
1252
+ use="encoded"
1253
+ namespace="urn:iControl:System/Disk"
1254
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1255
+ </output>
1256
+ </operation>
1257
+
1258
+ <operation name="add_array_member">
1259
+ <documentation>
1260
+ Adds physical disks to a set of logical disk arrays.
1261
+
1262
+ For a clustered system, this must be run on the chassis slot
1263
+ holding the disk array.
1264
+
1265
+ This only works for logical disks which represent disk arrays.
1266
+
1267
+ </documentation>
1268
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1269
+ <input>
1270
+ <soap:body
1271
+ use="encoded"
1272
+ namespace="urn:iControl:System/Disk"
1273
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1274
+ </input>
1275
+ <output>
1276
+ <soap:body
1277
+ use="encoded"
1278
+ namespace="urn:iControl:System/Disk"
1279
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1280
+ </output>
1281
+ </operation>
1282
+
1283
+ <operation name="add_array_member_by_logical_id">
1284
+ <documentation>
1285
+ Adds physical disks to a set of logical disk arrays.
1286
+
1287
+ For a clustered system, this must be run on the chassis slot
1288
+ holding the disk array.
1289
+
1290
+ This only works for logical disks which represent disk arrays.
1291
+
1292
+ This method does exactly the same thing as "add_array_member",
1293
+ except that the added physical disks are specified by their
1294
+ LogicalDisk identifiers, more convenient for user input than the
1295
+ serial numbers used in "remove_array_member". It is supplied for
1296
+ convenience purposes only.
1297
+
1298
+ </documentation>
1299
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1300
+ <input>
1301
+ <soap:body
1302
+ use="encoded"
1303
+ namespace="urn:iControl:System/Disk"
1304
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1305
+ </input>
1306
+ <output>
1307
+ <soap:body
1308
+ use="encoded"
1309
+ namespace="urn:iControl:System/Disk"
1310
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1311
+ </output>
1312
+ </operation>
1313
+
1314
+ <operation name="remove_array_member">
1315
+ <documentation>
1316
+ Removes phyiscal disks from a set of logical disk arrays.
1317
+
1318
+ For a clustered system, this must be run on the chassis slot
1319
+ holding the disk array.
1320
+
1321
+ This only works for logical disks which represent disk arrays.
1322
+
1323
+ </documentation>
1324
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1325
+ <input>
1326
+ <soap:body
1327
+ use="encoded"
1328
+ namespace="urn:iControl:System/Disk"
1329
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1330
+ </input>
1331
+ <output>
1332
+ <soap:body
1333
+ use="encoded"
1334
+ namespace="urn:iControl:System/Disk"
1335
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1336
+ </output>
1337
+ </operation>
1338
+
1339
+ <operation name="remove_array_member_by_logical_id">
1340
+ <documentation>
1341
+ Removes physical disks from a set of logical disk arrays.
1342
+
1343
+ For a clustered system, this must be run on the chassis slot
1344
+ holding the disk array.
1345
+
1346
+ This only works for logical disks which represent disk arrays.
1347
+
1348
+ This method does exactly the same thing as "remove_array_member",
1349
+ except that the removed physical disks are specified by their
1350
+ LogicalDisk identifiers, more convenient for user input than the
1351
+ serial numbers used in "remove_array_member". It is supplied for
1352
+ convenience purposes only.
1353
+
1354
+ </documentation>
1355
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1356
+ <input>
1357
+ <soap:body
1358
+ use="encoded"
1359
+ namespace="urn:iControl:System/Disk"
1360
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1361
+ </input>
1362
+ <output>
1363
+ <soap:body
1364
+ use="encoded"
1365
+ namespace="urn:iControl:System/Disk"
1366
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1367
+ </output>
1368
+ </operation>
1369
+
1370
+ <operation name="get_version">
1371
+ <documentation>
1372
+ Gets the version information for this interface.
1373
+
1374
+ </documentation>
1375
+ <soap:operation soapAction="urn:iControl:System/Disk"/>
1376
+ <input>
1377
+ <soap:body
1378
+ use="encoded"
1379
+ namespace="urn:iControl:System/Disk"
1380
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1381
+ </input>
1382
+ <output>
1383
+ <soap:body
1384
+ use="encoded"
1385
+ namespace="urn:iControl:System/Disk"
1386
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1387
+ </output>
1388
+ </operation>
1389
+ </binding>
1390
+
1391
+ <!-- service -->
1392
+
1393
+ <service name="System.Disk">
1394
+ <documentation>
1395
+ The Disk interface enables you to manage the disks in the system.
1396
+
1397
+ The disk objects come in two flavors. "Physical disks" are the actual
1398
+ hardware disk drives, which can be anything from a true hard disk to a
1399
+ compact flash drive to a USB flash drive. Physical disks are addressed
1400
+ by their serial numbers. "Logical disks" are the view of the disk
1401
+ drives from the system's point of view, abstracting the disk itself,
1402
+ making all disk drives look the same whether they are a true hard disk,
1403
+ a flash drive, or a full disk array. In other words, a logical disk
1404
+ can hold one or more physical disks. Logical disks are addressed by
1405
+ the LogicalDisk identifier, which includes their logical name (e.g.,
1406
+ "HD2", "CF1", "MD1") and their chassis slot identifier.
1407
+
1408
+ It is important to note the potentially confusing relationship between
1409
+ logical and physical disks and their identifiers. All physical disks
1410
+ can be addressed by a LogicalDisk identifier, though it is not
1411
+ guaranteed that all physical disks have an entry in the logical disk
1412
+ table. The logical disk
1413
+ identifier for a physical disk is dependent on the connection of the
1414
+ disk drive to the system, so can change if the system's disk drive
1415
+ configuration changes. On the other hand, all logical disks hold one
1416
+ or more physical disks, which can have a direct one-to-one mapping for a
1417
+ single disk drive or a one-to-many mapping for a disk array. To avoid
1418
+ problems, physical disks should be ideally addressed only by their
1419
+ serial numbers and logical disks only by their LogicalDisk identifiers.
1420
+ Addressing physical disks by their LogicalDisk identifier is supported
1421
+ as a convenience for any user-generated input. Be careful with these
1422
+ distinctions as you use this interface.
1423
+
1424
+ The application volume component provides better granularity for managing
1425
+ disks. A logical disk can be logically segmented into several application
1426
+ volumes. An application volume belongs to only one logical disk and can
1427
+ never be shared. The visibility of the application volume can be confined
1428
+ to a particular software volume set or it can be made global to make it
1429
+ visible across all control planes. Once set, the volume set visibility
1430
+ property cannot be modified.
1431
+
1432
+ Application volumes are created during the provisioning of disk-using
1433
+ application modules (e.g., "DATASTOR", "VCMP" etc.). The application
1434
+ volumes may be discarded by the software(e.g. during module provisioning)
1435
+ unless its preservability property is changed to precious.
1436
+
1437
+ </documentation>
1438
+ <port name="System.DiskPort" binding="tns:System.DiskBinding">
1439
+ <soap:address location="https://url_to_service"/>
1440
+ </port>
1441
+ </service>
1442
+ </definitions>