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,166 @@
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="Management.Globals"
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.StringSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ </xsd:schema>
32
+ </types>
33
+
34
+ <!-- message -->
35
+
36
+ <message name="Management.Globals.set_local_file_path_prefixesRequest">
37
+ <part name="prefixes" type="tns:Common.StringSequence"/>
38
+ </message>
39
+ <message name="Management.Globals.set_local_file_path_prefixesResponse">
40
+ </message>
41
+
42
+ <message name="Management.Globals.get_local_file_path_prefixesRequest">
43
+ </message>
44
+ <message name="Management.Globals.get_local_file_path_prefixesResponse">
45
+ <part name="return" type="tns:Common.StringSequence"/>
46
+ </message>
47
+
48
+ <message name="Management.Globals.get_versionRequest">
49
+ </message>
50
+ <message name="Management.Globals.get_versionResponse">
51
+ <part name="return" type="xsd:string"/>
52
+ </message>
53
+
54
+ <!-- portType -->
55
+
56
+ <portType name="Management.GlobalsPortType">
57
+ <operation name="set_local_file_path_prefixes">
58
+ <documentation>
59
+ Sets the set of folders that are permitted for use by less
60
+ privileged users when creating file objects. Each of the folders
61
+ as well as sub-folders beneath the folders are allowed.
62
+
63
+ </documentation>
64
+ <input message="tns:Management.Globals.set_local_file_path_prefixesRequest"/>
65
+ <output message="tns:Management.Globals.set_local_file_path_prefixesResponse"/>
66
+ </operation>
67
+ <operation name="get_local_file_path_prefixes">
68
+ <documentation>
69
+ Gets all the local folders that are permitted for use by less
70
+ privileged users when creating file objects.
71
+
72
+ </documentation>
73
+ <input message="tns:Management.Globals.get_local_file_path_prefixesRequest"/>
74
+ <output message="tns:Management.Globals.get_local_file_path_prefixesResponse"/>
75
+ </operation>
76
+ <operation name="get_version">
77
+ <documentation>
78
+ Gets the version information for this interface.
79
+
80
+ </documentation>
81
+ <input message="tns:Management.Globals.get_versionRequest"/>
82
+ <output message="tns:Management.Globals.get_versionResponse"/>
83
+ </operation>
84
+ </portType>
85
+
86
+ <!-- binding -->
87
+
88
+ <binding name="Management.GlobalsBinding" type="tns:Management.GlobalsPortType">
89
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
90
+ <operation name="set_local_file_path_prefixes">
91
+ <documentation>
92
+ Sets the set of folders that are permitted for use by less
93
+ privileged users when creating file objects. Each of the folders
94
+ as well as sub-folders beneath the folders are allowed.
95
+
96
+ </documentation>
97
+ <soap:operation soapAction="urn:iControl:Management/Globals"/>
98
+ <input>
99
+ <soap:body
100
+ use="encoded"
101
+ namespace="urn:iControl:Management/Globals"
102
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
103
+ </input>
104
+ <output>
105
+ <soap:body
106
+ use="encoded"
107
+ namespace="urn:iControl:Management/Globals"
108
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
109
+ </output>
110
+ </operation>
111
+
112
+ <operation name="get_local_file_path_prefixes">
113
+ <documentation>
114
+ Gets all the local folders that are permitted for use by less
115
+ privileged users when creating file objects.
116
+
117
+ </documentation>
118
+ <soap:operation soapAction="urn:iControl:Management/Globals"/>
119
+ <input>
120
+ <soap:body
121
+ use="encoded"
122
+ namespace="urn:iControl:Management/Globals"
123
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
124
+ </input>
125
+ <output>
126
+ <soap:body
127
+ use="encoded"
128
+ namespace="urn:iControl:Management/Globals"
129
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
130
+ </output>
131
+ </operation>
132
+
133
+ <operation name="get_version">
134
+ <documentation>
135
+ Gets the version information for this interface.
136
+
137
+ </documentation>
138
+ <soap:operation soapAction="urn:iControl:Management/Globals"/>
139
+ <input>
140
+ <soap:body
141
+ use="encoded"
142
+ namespace="urn:iControl:Management/Globals"
143
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
144
+ </input>
145
+ <output>
146
+ <soap:body
147
+ use="encoded"
148
+ namespace="urn:iControl:Management/Globals"
149
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
150
+ </output>
151
+ </operation>
152
+ </binding>
153
+
154
+ <!-- service -->
155
+
156
+ <service name="Management.Globals">
157
+ <documentation>
158
+ The Globals interface is used for managing the global settings
159
+ of the system.
160
+
161
+ </documentation>
162
+ <port name="Management.GlobalsPort" binding="tns:Management.GlobalsBinding">
163
+ <soap:address location="https://url_to_service"/>
164
+ </port>
165
+ </service>
166
+ </definitions>
@@ -0,0 +1,2027 @@
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="Management.KeyCertificate"
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="Management.KeyCertificate.CertificateSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.KeyCertificate.Certificate[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:simpleType name="Common.OctetSequence">
32
+ <xsd:restriction base="xsd:base64Binary"/>
33
+ </xsd:simpleType>
34
+ <xsd:simpleType name="Management.KeyCertificate.ValidityType">
35
+ <xsd:restriction base="xsd:string">
36
+ <xsd:enumeration value="VTYPE_CERTIFICATE_VALID">
37
+ <xsd:annotation>
38
+ <xsd:documentation>VTYPE_CERTIFICATE_VALID</xsd:documentation>
39
+ </xsd:annotation>
40
+ </xsd:enumeration>
41
+ <xsd:enumeration value="VTYPE_CERTIFICATE_EXPIRED">
42
+ <xsd:annotation>
43
+ <xsd:documentation>VTYPE_CERTIFICATE_EXPIRED</xsd:documentation>
44
+ </xsd:annotation>
45
+ </xsd:enumeration>
46
+ <xsd:enumeration value="VTYPE_CERTIFICATE_WILL_EXPIRE">
47
+ <xsd:annotation>
48
+ <xsd:documentation>VTYPE_CERTIFICATE_WILL_EXPIRE</xsd:documentation>
49
+ </xsd:annotation>
50
+ </xsd:enumeration>
51
+ <xsd:enumeration value="VTYPE_CERTIFICATE_INVALID">
52
+ <xsd:annotation>
53
+ <xsd:documentation>VTYPE_CERTIFICATE_INVALID</xsd:documentation>
54
+ </xsd:annotation>
55
+ </xsd:enumeration>
56
+ </xsd:restriction>
57
+ </xsd:simpleType>
58
+ <xsd:complexType name="Management.KeyCertificate.CertificateRequestInformation">
59
+ <xsd:sequence>
60
+ <xsd:element name="csr_info" type="tns:Management.KeyCertificate.CertificateRequest"/>
61
+ <xsd:element name="title" type="xsd:string"/>
62
+ <xsd:element name="serial_number" type="xsd:string"/>
63
+ <xsd:element name="file_name" type="xsd:string"/>
64
+ <xsd:element name="key_type" type="tns:Management.KeyCertificate.KeyType"/>
65
+ <xsd:element name="bit_length" type="xsd:long"/>
66
+ <xsd:element name="subject" type="tns:Management.KeyCertificate.X509Data"/>
67
+ </xsd:sequence>
68
+ </xsd:complexType>
69
+ <xsd:complexType name="Common.ULongSequenceSequence">
70
+ <xsd:complexContent>
71
+ <xsd:restriction base='SOAP-ENC:Array'>
72
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ULongSequence[]'/>
73
+ </xsd:restriction>
74
+ </xsd:complexContent>
75
+ </xsd:complexType>
76
+ <xsd:complexType name="Management.KeyCertificate.CertificateDetailSequenceSequence">
77
+ <xsd:complexContent>
78
+ <xsd:restriction base='SOAP-ENC:Array'>
79
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.KeyCertificate.CertificateDetailSequence[]'/>
80
+ </xsd:restriction>
81
+ </xsd:complexContent>
82
+ </xsd:complexType>
83
+ <xsd:complexType name="Management.KeyCertificate.CertificateDetailSequence">
84
+ <xsd:complexContent>
85
+ <xsd:restriction base='SOAP-ENC:Array'>
86
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.KeyCertificate.CertificateDetail[]'/>
87
+ </xsd:restriction>
88
+ </xsd:complexContent>
89
+ </xsd:complexType>
90
+ <xsd:complexType name="Management.KeyCertificate.KeyTypeSequence">
91
+ <xsd:complexContent>
92
+ <xsd:restriction base='SOAP-ENC:Array'>
93
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.KeyCertificate.KeyType[]'/>
94
+ </xsd:restriction>
95
+ </xsd:complexContent>
96
+ </xsd:complexType>
97
+ <xsd:complexType name="Management.KeyCertificate.KeyInformationSequence">
98
+ <xsd:complexContent>
99
+ <xsd:restriction base='SOAP-ENC:Array'>
100
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.KeyCertificate.KeyInformation[]'/>
101
+ </xsd:restriction>
102
+ </xsd:complexContent>
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="Management.KeyCertificate.CertificateRequest">
112
+ <xsd:sequence>
113
+ <xsd:element name="id" type="xsd:string"/>
114
+ <xsd:element name="email" type="xsd:string"/>
115
+ <xsd:element name="challenge_password" type="xsd:string"/>
116
+ </xsd:sequence>
117
+ </xsd:complexType>
118
+ <xsd:complexType name="Common.BooleanSequence">
119
+ <xsd:complexContent>
120
+ <xsd:restriction base='SOAP-ENC:Array'>
121
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:boolean[]'/>
122
+ </xsd:restriction>
123
+ </xsd:complexContent>
124
+ </xsd:complexType>
125
+ <xsd:complexType name="Management.KeyCertificate.KeySequence">
126
+ <xsd:complexContent>
127
+ <xsd:restriction base='SOAP-ENC:Array'>
128
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.KeyCertificate.Key[]'/>
129
+ </xsd:restriction>
130
+ </xsd:complexContent>
131
+ </xsd:complexType>
132
+ <xsd:complexType name="Common.ULongSequence">
133
+ <xsd:complexContent>
134
+ <xsd:restriction base='SOAP-ENC:Array'>
135
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
136
+ </xsd:restriction>
137
+ </xsd:complexContent>
138
+ </xsd:complexType>
139
+ <xsd:simpleType name="Management.KeyCertificate.ManagementModeType">
140
+ <xsd:restriction base="xsd:string">
141
+ <xsd:enumeration value="MANAGEMENT_MODE_DEFAULT">
142
+ <xsd:annotation>
143
+ <xsd:documentation>MANAGEMENT_MODE_DEFAULT</xsd:documentation>
144
+ </xsd:annotation>
145
+ </xsd:enumeration>
146
+ <xsd:enumeration value="MANAGEMENT_MODE_WEBSERVER">
147
+ <xsd:annotation>
148
+ <xsd:documentation>MANAGEMENT_MODE_WEBSERVER</xsd:documentation>
149
+ </xsd:annotation>
150
+ </xsd:enumeration>
151
+ <xsd:enumeration value="MANAGEMENT_MODE_EM">
152
+ <xsd:annotation>
153
+ <xsd:documentation>MANAGEMENT_MODE_EM</xsd:documentation>
154
+ </xsd:annotation>
155
+ </xsd:enumeration>
156
+ <xsd:enumeration value="MANAGEMENT_MODE_IQUERY">
157
+ <xsd:annotation>
158
+ <xsd:documentation>MANAGEMENT_MODE_IQUERY</xsd:documentation>
159
+ </xsd:annotation>
160
+ </xsd:enumeration>
161
+ <xsd:enumeration value="MANAGEMENT_MODE_IQUERY_BIG3D">
162
+ <xsd:annotation>
163
+ <xsd:documentation>MANAGEMENT_MODE_IQUERY_BIG3D</xsd:documentation>
164
+ </xsd:annotation>
165
+ </xsd:enumeration>
166
+ <xsd:enumeration value="MANAGEMENT_MODE_APACHE">
167
+ <xsd:annotation>
168
+ <xsd:documentation>MANAGEMENT_MODE_APACHE</xsd:documentation>
169
+ </xsd:annotation>
170
+ </xsd:enumeration>
171
+ </xsd:restriction>
172
+ </xsd:simpleType>
173
+ <xsd:complexType name="Management.KeyCertificate.CertificateInformationSequence">
174
+ <xsd:complexContent>
175
+ <xsd:restriction base='SOAP-ENC:Array'>
176
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.KeyCertificate.CertificateInformation[]'/>
177
+ </xsd:restriction>
178
+ </xsd:complexContent>
179
+ </xsd:complexType>
180
+ <xsd:complexType name="Management.KeyCertificate.X509DataSequence">
181
+ <xsd:complexContent>
182
+ <xsd:restriction base='SOAP-ENC:Array'>
183
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.KeyCertificate.X509Data[]'/>
184
+ </xsd:restriction>
185
+ </xsd:complexContent>
186
+ </xsd:complexType>
187
+ <xsd:simpleType name="Management.KeyCertificate.SecurityType">
188
+ <xsd:restriction base="xsd:string">
189
+ <xsd:enumeration value="STYPE_NORMAL">
190
+ <xsd:annotation>
191
+ <xsd:documentation>STYPE_NORMAL</xsd:documentation>
192
+ </xsd:annotation>
193
+ </xsd:enumeration>
194
+ <xsd:enumeration value="STYPE_FIPS">
195
+ <xsd:annotation>
196
+ <xsd:documentation>STYPE_FIPS</xsd:documentation>
197
+ </xsd:annotation>
198
+ </xsd:enumeration>
199
+ <xsd:enumeration value="STYPE_PASSWORD">
200
+ <xsd:annotation>
201
+ <xsd:documentation>STYPE_PASSWORD</xsd:documentation>
202
+ </xsd:annotation>
203
+ </xsd:enumeration>
204
+ <xsd:enumeration value="STYPE_NETHSM">
205
+ <xsd:annotation>
206
+ <xsd:documentation>STYPE_NETHSM</xsd:documentation>
207
+ </xsd:annotation>
208
+ </xsd:enumeration>
209
+ </xsd:restriction>
210
+ </xsd:simpleType>
211
+ <xsd:complexType name="Management.KeyCertificate.CertificateDetail">
212
+ <xsd:sequence>
213
+ <xsd:element name="cert_info" type="tns:Management.KeyCertificate.Certificate"/>
214
+ <xsd:element name="cert_type" type="tns:Management.KeyCertificate.CertificateType"/>
215
+ <xsd:element name="key_type" type="tns:Management.KeyCertificate.KeyType"/>
216
+ <xsd:element name="bit_length" type="xsd:long"/>
217
+ <xsd:element name="version" type="xsd:long"/>
218
+ <xsd:element name="serial_number" type="xsd:string"/>
219
+ <xsd:element name="expiration_string" type="xsd:string"/>
220
+ <xsd:element name="expiration_date" type="xsd:long"/>
221
+ <xsd:element name="subject" type="tns:Management.KeyCertificate.X509Data"/>
222
+ <xsd:element name="issuer" type="tns:Management.KeyCertificate.X509Data"/>
223
+ </xsd:sequence>
224
+ </xsd:complexType>
225
+ <xsd:complexType name="Management.KeyCertificate.CertificateInformation">
226
+ <xsd:sequence>
227
+ <xsd:element name="is_bundled" type="xsd:boolean"/>
228
+ <xsd:element name="file_name" type="xsd:string"/>
229
+ <xsd:element name="certificate" type="tns:Management.KeyCertificate.CertificateDetail"/>
230
+ </xsd:sequence>
231
+ </xsd:complexType>
232
+ <xsd:complexType name="Management.KeyCertificate.CertificateRequestSequence">
233
+ <xsd:complexContent>
234
+ <xsd:restriction base='SOAP-ENC:Array'>
235
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.KeyCertificate.CertificateRequest[]'/>
236
+ </xsd:restriction>
237
+ </xsd:complexContent>
238
+ </xsd:complexType>
239
+ <xsd:complexType name="Common.StringSequenceSequence">
240
+ <xsd:complexContent>
241
+ <xsd:restriction base='SOAP-ENC:Array'>
242
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
243
+ </xsd:restriction>
244
+ </xsd:complexContent>
245
+ </xsd:complexType>
246
+ <xsd:complexType name="Management.KeyCertificate.X509Data">
247
+ <xsd:sequence>
248
+ <xsd:element name="common_name" type="xsd:string"/>
249
+ <xsd:element name="country_name" type="xsd:string"/>
250
+ <xsd:element name="state_name" type="xsd:string"/>
251
+ <xsd:element name="locality_name" type="xsd:string"/>
252
+ <xsd:element name="organization_name" type="xsd:string"/>
253
+ <xsd:element name="division_name" type="xsd:string"/>
254
+ </xsd:sequence>
255
+ </xsd:complexType>
256
+ <xsd:simpleType name="Management.KeyCertificate.CertificateType">
257
+ <xsd:restriction base="xsd:string">
258
+ <xsd:enumeration value="CTYPE_CA_SIGNED_YES">
259
+ <xsd:annotation>
260
+ <xsd:documentation>CTYPE_CA_SIGNED_YES</xsd:documentation>
261
+ </xsd:annotation>
262
+ </xsd:enumeration>
263
+ <xsd:enumeration value="CTYPE_CA_SIGNED_NO">
264
+ <xsd:annotation>
265
+ <xsd:documentation>CTYPE_CA_SIGNED_NO</xsd:documentation>
266
+ </xsd:annotation>
267
+ </xsd:enumeration>
268
+ <xsd:enumeration value="CTYPE_CA_SIGNED_UNKNOWN">
269
+ <xsd:annotation>
270
+ <xsd:documentation>CTYPE_CA_SIGNED_UNKNOWN</xsd:documentation>
271
+ </xsd:annotation>
272
+ </xsd:enumeration>
273
+ </xsd:restriction>
274
+ </xsd:simpleType>
275
+ <xsd:simpleType name="Management.KeyCertificate.KeyType">
276
+ <xsd:restriction base="xsd:string">
277
+ <xsd:enumeration value="KTYPE_RSA_PRIVATE">
278
+ <xsd:annotation>
279
+ <xsd:documentation>KTYPE_RSA_PRIVATE</xsd:documentation>
280
+ </xsd:annotation>
281
+ </xsd:enumeration>
282
+ <xsd:enumeration value="KTYPE_RSA_PUBLIC">
283
+ <xsd:annotation>
284
+ <xsd:documentation>KTYPE_RSA_PUBLIC</xsd:documentation>
285
+ </xsd:annotation>
286
+ </xsd:enumeration>
287
+ <xsd:enumeration value="KTYPE_DSA_PRIVATE">
288
+ <xsd:annotation>
289
+ <xsd:documentation>KTYPE_DSA_PRIVATE</xsd:documentation>
290
+ </xsd:annotation>
291
+ </xsd:enumeration>
292
+ <xsd:enumeration value="KTYPE_DSA_PUBLIC">
293
+ <xsd:annotation>
294
+ <xsd:documentation>KTYPE_DSA_PUBLIC</xsd:documentation>
295
+ </xsd:annotation>
296
+ </xsd:enumeration>
297
+ </xsd:restriction>
298
+ </xsd:simpleType>
299
+ <xsd:complexType name="Management.KeyCertificate.CertificateRequestInformationSequence">
300
+ <xsd:complexContent>
301
+ <xsd:restriction base='SOAP-ENC:Array'>
302
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.KeyCertificate.CertificateRequestInformation[]'/>
303
+ </xsd:restriction>
304
+ </xsd:complexContent>
305
+ </xsd:complexType>
306
+ <xsd:complexType name="Management.KeyCertificate.Certificate">
307
+ <xsd:sequence>
308
+ <xsd:element name="id" type="xsd:string"/>
309
+ <xsd:element name="email" type="xsd:string"/>
310
+ </xsd:sequence>
311
+ </xsd:complexType>
312
+ <xsd:complexType name="Management.KeyCertificate.KeyInformation">
313
+ <xsd:sequence>
314
+ <xsd:element name="key_info" type="tns:Management.KeyCertificate.Key"/>
315
+ <xsd:element name="file_name" type="xsd:string"/>
316
+ <xsd:element name="flags" type="xsd:long"/>
317
+ </xsd:sequence>
318
+ </xsd:complexType>
319
+ <xsd:complexType name="Management.KeyCertificate.ValidityTypeSequence">
320
+ <xsd:complexContent>
321
+ <xsd:restriction base='SOAP-ENC:Array'>
322
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.KeyCertificate.ValidityType[]'/>
323
+ </xsd:restriction>
324
+ </xsd:complexContent>
325
+ </xsd:complexType>
326
+ <xsd:complexType name="Management.KeyCertificate.Key">
327
+ <xsd:sequence>
328
+ <xsd:element name="id" type="xsd:string"/>
329
+ <xsd:element name="key_type" type="tns:Management.KeyCertificate.KeyType"/>
330
+ <xsd:element name="bit_length" type="xsd:long"/>
331
+ <xsd:element name="security" type="tns:Management.KeyCertificate.SecurityType"/>
332
+ </xsd:sequence>
333
+ </xsd:complexType>
334
+ </xsd:schema>
335
+ </types>
336
+
337
+ <!-- message -->
338
+
339
+ <message name="Management.KeyCertificate.is_fips_availableRequest">
340
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
341
+ </message>
342
+ <message name="Management.KeyCertificate.is_fips_availableResponse">
343
+ <part name="return" type="xsd:boolean"/>
344
+ </message>
345
+
346
+ <message name="Management.KeyCertificate.get_key_listRequest">
347
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
348
+ </message>
349
+ <message name="Management.KeyCertificate.get_key_listResponse">
350
+ <part name="return" type="tns:Management.KeyCertificate.KeyInformationSequence"/>
351
+ </message>
352
+
353
+ <message name="Management.KeyCertificate.key_generateRequest">
354
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
355
+ <part name="keys" type="tns:Management.KeyCertificate.KeySequence"/>
356
+ <part name="x509_data" type="tns:Management.KeyCertificate.X509DataSequence"/>
357
+ <part name="create_optional_cert_csr" type="xsd:boolean"/>
358
+ <part name="overwrite" type="xsd:boolean"/>
359
+ </message>
360
+ <message name="Management.KeyCertificate.key_generateResponse">
361
+ </message>
362
+
363
+ <message name="Management.KeyCertificate.key_import_from_pemRequest">
364
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
365
+ <part name="key_ids" type="tns:Common.StringSequence"/>
366
+ <part name="pem_data" type="tns:Common.StringSequence"/>
367
+ <part name="overwrite" type="xsd:boolean"/>
368
+ </message>
369
+ <message name="Management.KeyCertificate.key_import_from_pemResponse">
370
+ </message>
371
+
372
+ <message name="Management.KeyCertificate.key_import_from_fileRequest">
373
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
374
+ <part name="key_ids" type="tns:Common.StringSequence"/>
375
+ <part name="file_names" type="tns:Common.StringSequence"/>
376
+ <part name="overwrite" type="xsd:boolean"/>
377
+ </message>
378
+ <message name="Management.KeyCertificate.key_import_from_fileResponse">
379
+ </message>
380
+
381
+ <message name="Management.KeyCertificate.key_export_to_pemRequest">
382
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
383
+ <part name="key_ids" type="tns:Common.StringSequence"/>
384
+ </message>
385
+ <message name="Management.KeyCertificate.key_export_to_pemResponse">
386
+ <part name="return" type="tns:Common.StringSequence"/>
387
+ </message>
388
+
389
+ <message name="Management.KeyCertificate.key_export_to_fileRequest">
390
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
391
+ <part name="key_ids" type="tns:Common.StringSequence"/>
392
+ <part name="file_names" type="tns:Common.StringSequence"/>
393
+ <part name="overwrite" type="xsd:boolean"/>
394
+ </message>
395
+ <message name="Management.KeyCertificate.key_export_to_fileResponse">
396
+ </message>
397
+
398
+ <message name="Management.KeyCertificate.key_deleteRequest">
399
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
400
+ <part name="key_ids" type="tns:Common.StringSequence"/>
401
+ </message>
402
+ <message name="Management.KeyCertificate.key_deleteResponse">
403
+ </message>
404
+
405
+ <message name="Management.KeyCertificate.key_to_fipsRequest">
406
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
407
+ <part name="key_ids" type="tns:Common.StringSequence"/>
408
+ </message>
409
+ <message name="Management.KeyCertificate.key_to_fipsResponse">
410
+ </message>
411
+
412
+ <message name="Management.KeyCertificate.get_certificate_listRequest">
413
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
414
+ </message>
415
+ <message name="Management.KeyCertificate.get_certificate_listResponse">
416
+ <part name="return" type="tns:Management.KeyCertificate.CertificateInformationSequence"/>
417
+ </message>
418
+
419
+ <message name="Management.KeyCertificate.get_certificate_bundleRequest">
420
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
421
+ <part name="file_names" type="tns:Common.StringSequence"/>
422
+ </message>
423
+ <message name="Management.KeyCertificate.get_certificate_bundleResponse">
424
+ <part name="return" type="tns:Management.KeyCertificate.CertificateDetailSequenceSequence"/>
425
+ </message>
426
+
427
+ <message name="Management.KeyCertificate.get_certificate_subject_alternative_nameRequest">
428
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
429
+ <part name="file_names" type="tns:Common.StringSequence"/>
430
+ </message>
431
+ <message name="Management.KeyCertificate.get_certificate_subject_alternative_nameResponse">
432
+ <part name="return" type="tns:Common.StringSequence"/>
433
+ </message>
434
+
435
+ <message name="Management.KeyCertificate.get_certificate_subject_alternative_name_bundleRequest">
436
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
437
+ <part name="file_names" type="tns:Common.StringSequence"/>
438
+ </message>
439
+ <message name="Management.KeyCertificate.get_certificate_subject_alternative_name_bundleResponse">
440
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
441
+ </message>
442
+
443
+ <message name="Management.KeyCertificate.certificate_add_pem_to_bundleRequest">
444
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
445
+ <part name="cert_ids" type="tns:Common.StringSequence"/>
446
+ <part name="pem_data" type="tns:Common.StringSequence"/>
447
+ </message>
448
+ <message name="Management.KeyCertificate.certificate_add_pem_to_bundleResponse">
449
+ </message>
450
+
451
+ <message name="Management.KeyCertificate.certificate_add_file_to_bundleRequest">
452
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
453
+ <part name="cert_ids" type="tns:Common.StringSequence"/>
454
+ <part name="certificate_files" type="tns:Common.StringSequence"/>
455
+ </message>
456
+ <message name="Management.KeyCertificate.certificate_add_file_to_bundleResponse">
457
+ </message>
458
+
459
+ <message name="Management.KeyCertificate.certificate_delete_from_bundleRequest">
460
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
461
+ <part name="cert_ids" type="tns:Common.StringSequence"/>
462
+ <part name="x509_data" type="tns:Management.KeyCertificate.X509DataSequence"/>
463
+ </message>
464
+ <message name="Management.KeyCertificate.certificate_delete_from_bundleResponse">
465
+ </message>
466
+
467
+ <message name="Management.KeyCertificate.certificate_delete_from_bundle_by_serial_numberRequest">
468
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
469
+ <part name="cert_ids" type="tns:Common.StringSequence"/>
470
+ <part name="serial_numbers" type="tns:Common.StringSequence"/>
471
+ <part name="x509_data" type="tns:Management.KeyCertificate.X509DataSequence"/>
472
+ </message>
473
+ <message name="Management.KeyCertificate.certificate_delete_from_bundle_by_serial_numberResponse">
474
+ </message>
475
+
476
+ <message name="Management.KeyCertificate.certificate_generateRequest">
477
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
478
+ <part name="certs" type="tns:Management.KeyCertificate.CertificateSequence"/>
479
+ <part name="x509_data" type="tns:Management.KeyCertificate.X509DataSequence"/>
480
+ <part name="lifetime_days" type="tns:Common.ULongSequence"/>
481
+ <part name="overwrite" type="xsd:boolean"/>
482
+ </message>
483
+ <message name="Management.KeyCertificate.certificate_generateResponse">
484
+ </message>
485
+
486
+ <message name="Management.KeyCertificate.certificate_import_from_pemRequest">
487
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
488
+ <part name="cert_ids" type="tns:Common.StringSequence"/>
489
+ <part name="pem_data" type="tns:Common.StringSequence"/>
490
+ <part name="overwrite" type="xsd:boolean"/>
491
+ </message>
492
+ <message name="Management.KeyCertificate.certificate_import_from_pemResponse">
493
+ </message>
494
+
495
+ <message name="Management.KeyCertificate.certificate_import_from_fileRequest">
496
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
497
+ <part name="cert_ids" type="tns:Common.StringSequence"/>
498
+ <part name="file_names" type="tns:Common.StringSequence"/>
499
+ <part name="overwrite" type="xsd:boolean"/>
500
+ </message>
501
+ <message name="Management.KeyCertificate.certificate_import_from_fileResponse">
502
+ </message>
503
+
504
+ <message name="Management.KeyCertificate.certificate_export_to_pemRequest">
505
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
506
+ <part name="cert_ids" type="tns:Common.StringSequence"/>
507
+ </message>
508
+ <message name="Management.KeyCertificate.certificate_export_to_pemResponse">
509
+ <part name="return" type="tns:Common.StringSequence"/>
510
+ </message>
511
+
512
+ <message name="Management.KeyCertificate.certificate_export_to_fileRequest">
513
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
514
+ <part name="cert_ids" type="tns:Common.StringSequence"/>
515
+ <part name="file_names" type="tns:Common.StringSequence"/>
516
+ <part name="overwrite" type="xsd:boolean"/>
517
+ </message>
518
+ <message name="Management.KeyCertificate.certificate_export_to_fileResponse">
519
+ </message>
520
+
521
+ <message name="Management.KeyCertificate.certificate_deleteRequest">
522
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
523
+ <part name="cert_ids" type="tns:Common.StringSequence"/>
524
+ </message>
525
+ <message name="Management.KeyCertificate.certificate_deleteResponse">
526
+ </message>
527
+
528
+ <message name="Management.KeyCertificate.certificate_check_validityRequest">
529
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
530
+ <part name="cert_ids" type="tns:Common.StringSequence"/>
531
+ <part name="watermark_days" type="tns:Common.ULongSequence"/>
532
+ </message>
533
+ <message name="Management.KeyCertificate.certificate_check_validityResponse">
534
+ <part name="return" type="tns:Management.KeyCertificate.ValidityTypeSequence"/>
535
+ </message>
536
+
537
+ <message name="Management.KeyCertificate.certificate_bindRequest">
538
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
539
+ <part name="cert_ids" type="tns:Common.StringSequence"/>
540
+ <part name="key_ids" type="tns:Common.StringSequence"/>
541
+ </message>
542
+ <message name="Management.KeyCertificate.certificate_bindResponse">
543
+ </message>
544
+
545
+ <message name="Management.KeyCertificate.get_certificate_request_listRequest">
546
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
547
+ </message>
548
+ <message name="Management.KeyCertificate.get_certificate_request_listResponse">
549
+ <part name="return" type="tns:Management.KeyCertificate.CertificateRequestInformationSequence"/>
550
+ </message>
551
+
552
+ <message name="Management.KeyCertificate.certificate_request_generateRequest">
553
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
554
+ <part name="csrs" type="tns:Management.KeyCertificate.CertificateRequestSequence"/>
555
+ <part name="x509_data" type="tns:Management.KeyCertificate.X509DataSequence"/>
556
+ <part name="overwrite" type="xsd:boolean"/>
557
+ </message>
558
+ <message name="Management.KeyCertificate.certificate_request_generateResponse">
559
+ </message>
560
+
561
+ <message name="Management.KeyCertificate.certificate_request_import_from_pemRequest">
562
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
563
+ <part name="csr_ids" type="tns:Common.StringSequence"/>
564
+ <part name="pem_data" type="tns:Common.StringSequence"/>
565
+ <part name="overwrite" type="xsd:boolean"/>
566
+ </message>
567
+ <message name="Management.KeyCertificate.certificate_request_import_from_pemResponse">
568
+ </message>
569
+
570
+ <message name="Management.KeyCertificate.certificate_request_import_from_fileRequest">
571
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
572
+ <part name="csr_ids" type="tns:Common.StringSequence"/>
573
+ <part name="file_names" type="tns:Common.StringSequence"/>
574
+ <part name="overwrite" type="xsd:boolean"/>
575
+ </message>
576
+ <message name="Management.KeyCertificate.certificate_request_import_from_fileResponse">
577
+ </message>
578
+
579
+ <message name="Management.KeyCertificate.certificate_request_export_to_pemRequest">
580
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
581
+ <part name="csr_ids" type="tns:Common.StringSequence"/>
582
+ </message>
583
+ <message name="Management.KeyCertificate.certificate_request_export_to_pemResponse">
584
+ <part name="return" type="tns:Common.StringSequence"/>
585
+ </message>
586
+
587
+ <message name="Management.KeyCertificate.certificate_request_export_to_fileRequest">
588
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
589
+ <part name="csr_ids" type="tns:Common.StringSequence"/>
590
+ <part name="file_names" type="tns:Common.StringSequence"/>
591
+ <part name="overwrite" type="xsd:boolean"/>
592
+ </message>
593
+ <message name="Management.KeyCertificate.certificate_request_export_to_fileResponse">
594
+ </message>
595
+
596
+ <message name="Management.KeyCertificate.certificate_request_deleteRequest">
597
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
598
+ <part name="csr_ids" type="tns:Common.StringSequence"/>
599
+ </message>
600
+ <message name="Management.KeyCertificate.certificate_request_deleteResponse">
601
+ </message>
602
+
603
+ <message name="Management.KeyCertificate.pkcs12_import_from_fileRequest">
604
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
605
+ <part name="ids" type="tns:Common.StringSequence"/>
606
+ <part name="file_names" type="tns:Common.StringSequence"/>
607
+ <part name="passwords" type="tns:Common.StringSequence"/>
608
+ <part name="overwrite" type="xsd:boolean"/>
609
+ </message>
610
+ <message name="Management.KeyCertificate.pkcs12_import_from_fileResponse">
611
+ </message>
612
+
613
+ <message name="Management.KeyCertificate.export_all_to_archive_fileRequest">
614
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
615
+ <part name="archive_location" type="xsd:string"/>
616
+ <part name="archive_name" type="xsd:string"/>
617
+ </message>
618
+ <message name="Management.KeyCertificate.export_all_to_archive_fileResponse">
619
+ </message>
620
+
621
+ <message name="Management.KeyCertificate.import_all_from_archive_fileRequest">
622
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
623
+ <part name="archive_location" type="xsd:string"/>
624
+ <part name="archive_name" type="xsd:string"/>
625
+ </message>
626
+ <message name="Management.KeyCertificate.import_all_from_archive_fileResponse">
627
+ </message>
628
+
629
+ <message name="Management.KeyCertificate.export_all_to_archive_streamRequest">
630
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
631
+ </message>
632
+ <message name="Management.KeyCertificate.export_all_to_archive_streamResponse">
633
+ <part name="return" type="tns:Common.OctetSequence"/>
634
+ </message>
635
+
636
+ <message name="Management.KeyCertificate.import_all_from_archive_streamRequest">
637
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
638
+ <part name="archive_stream" type="tns:Common.OctetSequence"/>
639
+ </message>
640
+ <message name="Management.KeyCertificate.import_all_from_archive_streamResponse">
641
+ </message>
642
+
643
+ <message name="Management.KeyCertificate.export_to_archive_fileRequest">
644
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
645
+ <part name="archive_location" type="xsd:string"/>
646
+ <part name="archive_name" type="xsd:string"/>
647
+ <part name="keys" type="tns:Common.StringSequence"/>
648
+ <part name="certs" type="tns:Common.StringSequence"/>
649
+ </message>
650
+ <message name="Management.KeyCertificate.export_to_archive_fileResponse">
651
+ </message>
652
+
653
+ <message name="Management.KeyCertificate.import_from_archive_fileRequest">
654
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
655
+ <part name="archive_location" type="xsd:string"/>
656
+ <part name="archive_name" type="xsd:string"/>
657
+ <part name="keys" type="tns:Common.StringSequence"/>
658
+ <part name="certs" type="tns:Common.StringSequence"/>
659
+ </message>
660
+ <message name="Management.KeyCertificate.import_from_archive_fileResponse">
661
+ </message>
662
+
663
+ <message name="Management.KeyCertificate.export_to_archive_streamRequest">
664
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
665
+ <part name="keys" type="tns:Common.StringSequence"/>
666
+ <part name="certs" type="tns:Common.StringSequence"/>
667
+ </message>
668
+ <message name="Management.KeyCertificate.export_to_archive_streamResponse">
669
+ <part name="return" type="tns:Common.OctetSequence"/>
670
+ </message>
671
+
672
+ <message name="Management.KeyCertificate.import_from_archive_streamRequest">
673
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
674
+ <part name="archive_stream" type="tns:Common.OctetSequence"/>
675
+ <part name="keys" type="tns:Common.StringSequence"/>
676
+ <part name="certs" type="tns:Common.StringSequence"/>
677
+ </message>
678
+ <message name="Management.KeyCertificate.import_from_archive_streamResponse">
679
+ </message>
680
+
681
+ <message name="Management.KeyCertificate.get_valid_key_sizesRequest">
682
+ <part name="mode" type="tns:Management.KeyCertificate.ManagementModeType"/>
683
+ <part name="key_types" type="tns:Management.KeyCertificate.KeyTypeSequence"/>
684
+ <part name="fips" type="tns:Common.BooleanSequence"/>
685
+ </message>
686
+ <message name="Management.KeyCertificate.get_valid_key_sizesResponse">
687
+ <part name="return" type="tns:Common.ULongSequenceSequence"/>
688
+ </message>
689
+
690
+ <message name="Management.KeyCertificate.get_versionRequest">
691
+ </message>
692
+ <message name="Management.KeyCertificate.get_versionResponse">
693
+ <part name="return" type="xsd:string"/>
694
+ </message>
695
+
696
+ <!-- portType -->
697
+
698
+ <portType name="Management.KeyCertificatePortType">
699
+ <operation name="is_fips_available">
700
+ <documentation>
701
+ Checks to see if the device supports FIPS security.
702
+
703
+ </documentation>
704
+ <input message="tns:Management.KeyCertificate.is_fips_availableRequest"/>
705
+ <output message="tns:Management.KeyCertificate.is_fips_availableResponse"/>
706
+ </operation>
707
+ <operation name="get_key_list">
708
+ <documentation>
709
+ Gets the list of all installed keys and their information.
710
+
711
+ </documentation>
712
+ <input message="tns:Management.KeyCertificate.get_key_listRequest"/>
713
+ <output message="tns:Management.KeyCertificate.get_key_listResponse"/>
714
+ </operation>
715
+ <operation name="key_generate">
716
+ <documentation>
717
+ Generates the specified keys.
718
+
719
+ </documentation>
720
+ <input message="tns:Management.KeyCertificate.key_generateRequest"/>
721
+ <output message="tns:Management.KeyCertificate.key_generateResponse"/>
722
+ </operation>
723
+ <operation name="key_import_from_pem">
724
+ <documentation>
725
+ Imports/installs the specified keys from the given PEM-formatted data.
726
+
727
+ </documentation>
728
+ <input message="tns:Management.KeyCertificate.key_import_from_pemRequest"/>
729
+ <output message="tns:Management.KeyCertificate.key_import_from_pemResponse"/>
730
+ </operation>
731
+ <operation name="key_import_from_file">
732
+ <documentation>
733
+ Imports/installs the specified keys from the given files.
734
+
735
+ </documentation>
736
+ <input message="tns:Management.KeyCertificate.key_import_from_fileRequest"/>
737
+ <output message="tns:Management.KeyCertificate.key_import_from_fileResponse"/>
738
+ </operation>
739
+ <operation name="key_export_to_pem">
740
+ <documentation>
741
+ Exports the specified keys to PEM-formatted data.
742
+
743
+ </documentation>
744
+ <input message="tns:Management.KeyCertificate.key_export_to_pemRequest"/>
745
+ <output message="tns:Management.KeyCertificate.key_export_to_pemResponse"/>
746
+ </operation>
747
+ <operation name="key_export_to_file">
748
+ <documentation>
749
+ Exports the specified keys to the given files.
750
+
751
+ </documentation>
752
+ <input message="tns:Management.KeyCertificate.key_export_to_fileRequest"/>
753
+ <output message="tns:Management.KeyCertificate.key_export_to_fileResponse"/>
754
+ </operation>
755
+ <operation name="key_delete">
756
+ <documentation>
757
+ Deletes/uninstalls the specified keys.
758
+
759
+ </documentation>
760
+ <input message="tns:Management.KeyCertificate.key_deleteRequest"/>
761
+ <output message="tns:Management.KeyCertificate.key_deleteResponse"/>
762
+ </operation>
763
+ <operation name="key_to_fips">
764
+ <documentation>
765
+ Converts the specified keys to FIPS-enabled keys.
766
+
767
+ </documentation>
768
+ <input message="tns:Management.KeyCertificate.key_to_fipsRequest"/>
769
+ <output message="tns:Management.KeyCertificate.key_to_fipsResponse"/>
770
+ </operation>
771
+ <operation name="get_certificate_list">
772
+ <documentation>
773
+ Gets the list of all installed certificates and their information. If there's
774
+ a certificate bundle, only the first certificate in the bundle is returned, and
775
+ and is_bundle flag will be set to true for the correponding bundle file name.
776
+
777
+ </documentation>
778
+ <input message="tns:Management.KeyCertificate.get_certificate_listRequest"/>
779
+ <output message="tns:Management.KeyCertificate.get_certificate_listResponse"/>
780
+ </operation>
781
+ <operation name="get_certificate_bundle">
782
+ <documentation>
783
+ Gets the list of all certificates bundled in the certificate files as
784
+ specified by the file_names. Each file_name will contain multiple certficates.
785
+ Note: only call this method when the results of get_certificate_list indicate
786
+ that there are multiple certificates bundled in a particular file.
787
+
788
+ </documentation>
789
+ <input message="tns:Management.KeyCertificate.get_certificate_bundleRequest"/>
790
+ <output message="tns:Management.KeyCertificate.get_certificate_bundleResponse"/>
791
+ </operation>
792
+ <operation name="get_certificate_subject_alternative_name">
793
+ <documentation>
794
+ Gets the list of all certificate subject alternative names in the certificate file objects
795
+ as specified by the file_names. This method is for non-bundled certificates. For certificate
796
+ bundles, use get_certificate_subject_alternative_name_bundle.
797
+
798
+ </documentation>
799
+ <input message="tns:Management.KeyCertificate.get_certificate_subject_alternative_nameRequest"/>
800
+ <output message="tns:Management.KeyCertificate.get_certificate_subject_alternative_nameResponse"/>
801
+ </operation>
802
+ <operation name="get_certificate_subject_alternative_name_bundle">
803
+ <documentation>
804
+ Gets the list of all certificate subject alternative names bundled in the certificate files as
805
+ specified by the file_names. Each file_name will contain multiple certficate subject alternative
806
+ names.
807
+ Note: only call this method when the results of get_certificate_list indicate
808
+ that there are multiple certificates bundled in a particular file.
809
+
810
+ </documentation>
811
+ <input message="tns:Management.KeyCertificate.get_certificate_subject_alternative_name_bundleRequest"/>
812
+ <output message="tns:Management.KeyCertificate.get_certificate_subject_alternative_name_bundleResponse"/>
813
+ </operation>
814
+ <operation name="certificate_add_pem_to_bundle">
815
+ <documentation>
816
+ Adds certificates identified by "pem_data" to the certificate bundles, which are presumed
817
+ to exist already. Each of the original certificate bundle can theoretically be a normal
818
+ certificate, i.e. a certificate bundle of one. After the add operation, the bundles will
819
+ contain more than one certificate.
820
+
821
+ </documentation>
822
+ <input message="tns:Management.KeyCertificate.certificate_add_pem_to_bundleRequest"/>
823
+ <output message="tns:Management.KeyCertificate.certificate_add_pem_to_bundleResponse"/>
824
+ </operation>
825
+ <operation name="certificate_add_file_to_bundle">
826
+ <documentation>
827
+ Adds certificates identified by "certificate_files" to the certificate bundles, which are
828
+ presumed to exist already. Each of the original certificate bundle can theoretically be a
829
+ normal certificate, i.e. a certificate bundle of one. After the add operation, the bundles
830
+ will contain more than one certificate.
831
+
832
+ </documentation>
833
+ <input message="tns:Management.KeyCertificate.certificate_add_file_to_bundleRequest"/>
834
+ <output message="tns:Management.KeyCertificate.certificate_add_file_to_bundleResponse"/>
835
+ </operation>
836
+ <operation name="certificate_delete_from_bundle">
837
+ <documentation>
838
+ Deletes certificates, identified by their subject's X509 data, from the certificate bundles.
839
+ If the last certificate has been deleted from the bundle, the certificate file will
840
+ automatically be deleted.
841
+
842
+ </documentation>
843
+ <input message="tns:Management.KeyCertificate.certificate_delete_from_bundleRequest"/>
844
+ <output message="tns:Management.KeyCertificate.certificate_delete_from_bundleResponse"/>
845
+ </operation>
846
+ <operation name="certificate_delete_from_bundle_by_serial_number">
847
+ <documentation>
848
+ Deletes certificates identified by serial number and issuer's X509 data from certificate
849
+ bundles.
850
+ If the last certificate has been deleted from the bundle, the certificate file will
851
+ automatically be deleted.
852
+
853
+ </documentation>
854
+ <input message="tns:Management.KeyCertificate.certificate_delete_from_bundle_by_serial_numberRequest"/>
855
+ <output message="tns:Management.KeyCertificate.certificate_delete_from_bundle_by_serial_numberResponse"/>
856
+ </operation>
857
+ <operation name="certificate_generate">
858
+ <documentation>
859
+ Generates the specified certificates. This assumes that each of the associated keys,
860
+ having the same identification as each certificate, has already been created.
861
+
862
+ </documentation>
863
+ <input message="tns:Management.KeyCertificate.certificate_generateRequest"/>
864
+ <output message="tns:Management.KeyCertificate.certificate_generateResponse"/>
865
+ </operation>
866
+ <operation name="certificate_import_from_pem">
867
+ <documentation>
868
+ Imports/installs the specified certificates from the given PEM-formatted data.
869
+
870
+ </documentation>
871
+ <input message="tns:Management.KeyCertificate.certificate_import_from_pemRequest"/>
872
+ <output message="tns:Management.KeyCertificate.certificate_import_from_pemResponse"/>
873
+ </operation>
874
+ <operation name="certificate_import_from_file">
875
+ <documentation>
876
+ Imports/installs the specified certificates from the given files.
877
+
878
+ </documentation>
879
+ <input message="tns:Management.KeyCertificate.certificate_import_from_fileRequest"/>
880
+ <output message="tns:Management.KeyCertificate.certificate_import_from_fileResponse"/>
881
+ </operation>
882
+ <operation name="certificate_export_to_pem">
883
+ <documentation>
884
+ Exports the specified certificates to PEM-formatted data.
885
+
886
+ </documentation>
887
+ <input message="tns:Management.KeyCertificate.certificate_export_to_pemRequest"/>
888
+ <output message="tns:Management.KeyCertificate.certificate_export_to_pemResponse"/>
889
+ </operation>
890
+ <operation name="certificate_export_to_file">
891
+ <documentation>
892
+ Exports the specified certificates to the given files.
893
+
894
+ </documentation>
895
+ <input message="tns:Management.KeyCertificate.certificate_export_to_fileRequest"/>
896
+ <output message="tns:Management.KeyCertificate.certificate_export_to_fileResponse"/>
897
+ </operation>
898
+ <operation name="certificate_delete">
899
+ <documentation>
900
+ Deletes/uninstalls the specified certificates.
901
+
902
+ </documentation>
903
+ <input message="tns:Management.KeyCertificate.certificate_deleteRequest"/>
904
+ <output message="tns:Management.KeyCertificate.certificate_deleteResponse"/>
905
+ </operation>
906
+ <operation name="certificate_check_validity">
907
+ <documentation>
908
+ Gets the validity of the specified certificates.
909
+
910
+ </documentation>
911
+ <input message="tns:Management.KeyCertificate.certificate_check_validityRequest"/>
912
+ <output message="tns:Management.KeyCertificate.certificate_check_validityResponse"/>
913
+ </operation>
914
+ <operation name="certificate_bind">
915
+ <documentation>
916
+ Binds/associates the specified keys and certificates.
917
+
918
+ </documentation>
919
+ <input message="tns:Management.KeyCertificate.certificate_bindRequest"/>
920
+ <output message="tns:Management.KeyCertificate.certificate_bindResponse"/>
921
+ </operation>
922
+ <operation name="get_certificate_request_list">
923
+ <documentation>
924
+ Gets the list of all CSRs and their information.
925
+
926
+ </documentation>
927
+ <input message="tns:Management.KeyCertificate.get_certificate_request_listRequest"/>
928
+ <output message="tns:Management.KeyCertificate.get_certificate_request_listResponse"/>
929
+ </operation>
930
+ <operation name="certificate_request_generate">
931
+ <documentation>
932
+ Generates the specified certificate signing requests. This assumes that each of the
933
+ associated keys, having the same identification as each certificate request, has
934
+ already been created.
935
+
936
+ </documentation>
937
+ <input message="tns:Management.KeyCertificate.certificate_request_generateRequest"/>
938
+ <output message="tns:Management.KeyCertificate.certificate_request_generateResponse"/>
939
+ </operation>
940
+ <operation name="certificate_request_import_from_pem">
941
+ <documentation>
942
+ Imports/installs the specified certificate requests from the given PEM-formatted data.
943
+
944
+ </documentation>
945
+ <input message="tns:Management.KeyCertificate.certificate_request_import_from_pemRequest"/>
946
+ <output message="tns:Management.KeyCertificate.certificate_request_import_from_pemResponse"/>
947
+ </operation>
948
+ <operation name="certificate_request_import_from_file">
949
+ <documentation>
950
+ Imports/installs the specified certificate requests from the given files.
951
+
952
+ </documentation>
953
+ <input message="tns:Management.KeyCertificate.certificate_request_import_from_fileRequest"/>
954
+ <output message="tns:Management.KeyCertificate.certificate_request_import_from_fileResponse"/>
955
+ </operation>
956
+ <operation name="certificate_request_export_to_pem">
957
+ <documentation>
958
+ Exports the specified certificate requests to PEM-formatted data.
959
+
960
+ </documentation>
961
+ <input message="tns:Management.KeyCertificate.certificate_request_export_to_pemRequest"/>
962
+ <output message="tns:Management.KeyCertificate.certificate_request_export_to_pemResponse"/>
963
+ </operation>
964
+ <operation name="certificate_request_export_to_file">
965
+ <documentation>
966
+ Exports the specified certificate requests to the given files.
967
+
968
+ </documentation>
969
+ <input message="tns:Management.KeyCertificate.certificate_request_export_to_fileRequest"/>
970
+ <output message="tns:Management.KeyCertificate.certificate_request_export_to_fileResponse"/>
971
+ </operation>
972
+ <operation name="certificate_request_delete">
973
+ <documentation>
974
+ Deletes the specified CSRs.
975
+
976
+ </documentation>
977
+ <input message="tns:Management.KeyCertificate.certificate_request_deleteRequest"/>
978
+ <output message="tns:Management.KeyCertificate.certificate_request_deleteResponse"/>
979
+ </operation>
980
+ <operation name="pkcs12_import_from_file">
981
+ <documentation>
982
+ Imports/installs the specified pkcs12 (Public Key
983
+ Cryptography Standard #12) information from the given
984
+ files. This includes keys and certificates, and each file
985
+ is optionally password-encrypted.
986
+
987
+ </documentation>
988
+ <input message="tns:Management.KeyCertificate.pkcs12_import_from_fileRequest"/>
989
+ <output message="tns:Management.KeyCertificate.pkcs12_import_from_fileResponse"/>
990
+ </operation>
991
+ <operation name="export_all_to_archive_file">
992
+ <documentation>
993
+ Exports all currently installed keys and certificates into the specified archive file.
994
+ The archive file is a .tgz file that will contain all keys and certificates.
995
+
996
+ </documentation>
997
+ <input message="tns:Management.KeyCertificate.export_all_to_archive_fileRequest"/>
998
+ <output message="tns:Management.KeyCertificate.export_all_to_archive_fileResponse"/>
999
+ </operation>
1000
+ <operation name="import_all_from_archive_file">
1001
+ <documentation>
1002
+ Imports/installs all keys and certificates from the specified archive file.
1003
+ The archive file should be a .tgz file that contains all keys and certificates.
1004
+
1005
+ </documentation>
1006
+ <input message="tns:Management.KeyCertificate.import_all_from_archive_fileRequest"/>
1007
+ <output message="tns:Management.KeyCertificate.import_all_from_archive_fileResponse"/>
1008
+ </operation>
1009
+ <operation name="export_all_to_archive_stream">
1010
+ <documentation>
1011
+ Exports all currently installed keys and certificates into the returned archive stream.
1012
+ The returned archive stream is basically the contents of a .tgz file that contains
1013
+ all keys and certificates.
1014
+
1015
+ </documentation>
1016
+ <input message="tns:Management.KeyCertificate.export_all_to_archive_streamRequest"/>
1017
+ <output message="tns:Management.KeyCertificate.export_all_to_archive_streamResponse"/>
1018
+ </operation>
1019
+ <operation name="import_all_from_archive_stream">
1020
+ <documentation>
1021
+ Imports/installs all keys and certificates from the incoming archive stream.
1022
+ The archive stream should be the contents of a .tgz file that contains all
1023
+ keys and certificates.
1024
+
1025
+ </documentation>
1026
+ <input message="tns:Management.KeyCertificate.import_all_from_archive_streamRequest"/>
1027
+ <output message="tns:Management.KeyCertificate.import_all_from_archive_streamResponse"/>
1028
+ </operation>
1029
+ <operation name="export_to_archive_file">
1030
+ <documentation>
1031
+ Exports the specified keys and certificates into the specified archive file.
1032
+ The archive file is a .tgz file that will contain only the specified keys and
1033
+ certificates that have been exported.
1034
+
1035
+ </documentation>
1036
+ <input message="tns:Management.KeyCertificate.export_to_archive_fileRequest"/>
1037
+ <output message="tns:Management.KeyCertificate.export_to_archive_fileResponse"/>
1038
+ </operation>
1039
+ <operation name="import_from_archive_file">
1040
+ <documentation>
1041
+ Imports/installs the specified keys and certificates from the specified archive file.
1042
+ The archive file should be a .tgz file that may contain more keys and certificates
1043
+ than what will be imported/installed.
1044
+
1045
+ </documentation>
1046
+ <input message="tns:Management.KeyCertificate.import_from_archive_fileRequest"/>
1047
+ <output message="tns:Management.KeyCertificate.import_from_archive_fileResponse"/>
1048
+ </operation>
1049
+ <operation name="export_to_archive_stream">
1050
+ <documentation>
1051
+ Exports the specified keys and certificates into the returned archive stream.
1052
+ The returned archive stream is basically the contents of a .tgz file that contains
1053
+ the exported keys and certificates.
1054
+
1055
+ </documentation>
1056
+ <input message="tns:Management.KeyCertificate.export_to_archive_streamRequest"/>
1057
+ <output message="tns:Management.KeyCertificate.export_to_archive_streamResponse"/>
1058
+ </operation>
1059
+ <operation name="import_from_archive_stream">
1060
+ <documentation>
1061
+ Imports/installs the specified keys and certificates from the incoming archive stream.
1062
+ The archive stream should be the contents of a .tgz file that may contain more keys
1063
+ and certificates than what will be imported/installed.
1064
+
1065
+ </documentation>
1066
+ <input message="tns:Management.KeyCertificate.import_from_archive_streamRequest"/>
1067
+ <output message="tns:Management.KeyCertificate.import_from_archive_streamResponse"/>
1068
+ </operation>
1069
+ <operation name="get_valid_key_sizes">
1070
+ <documentation>
1071
+ Gets a list of valid key sizes for specified key types.
1072
+
1073
+ The valid key sizes are bit-lengths of keys that are
1074
+ supported by the system. For example, 1024 and 2048 mean
1075
+ 128-byte and 256-byte RSA key sizes. These sizes are used
1076
+ when generating or importing a key.
1077
+
1078
+ </documentation>
1079
+ <input message="tns:Management.KeyCertificate.get_valid_key_sizesRequest"/>
1080
+ <output message="tns:Management.KeyCertificate.get_valid_key_sizesResponse"/>
1081
+ </operation>
1082
+ <operation name="get_version">
1083
+ <documentation>
1084
+ Gets the version information for this interface.
1085
+
1086
+ </documentation>
1087
+ <input message="tns:Management.KeyCertificate.get_versionRequest"/>
1088
+ <output message="tns:Management.KeyCertificate.get_versionResponse"/>
1089
+ </operation>
1090
+ </portType>
1091
+
1092
+ <!-- binding -->
1093
+
1094
+ <binding name="Management.KeyCertificateBinding" type="tns:Management.KeyCertificatePortType">
1095
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
1096
+ <operation name="is_fips_available">
1097
+ <documentation>
1098
+ Checks to see if the device supports FIPS security.
1099
+
1100
+ </documentation>
1101
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1102
+ <input>
1103
+ <soap:body
1104
+ use="encoded"
1105
+ namespace="urn:iControl:Management/KeyCertificate"
1106
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1107
+ </input>
1108
+ <output>
1109
+ <soap:body
1110
+ use="encoded"
1111
+ namespace="urn:iControl:Management/KeyCertificate"
1112
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1113
+ </output>
1114
+ </operation>
1115
+
1116
+ <operation name="get_key_list">
1117
+ <documentation>
1118
+ Gets the list of all installed keys and their information.
1119
+
1120
+ </documentation>
1121
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1122
+ <input>
1123
+ <soap:body
1124
+ use="encoded"
1125
+ namespace="urn:iControl:Management/KeyCertificate"
1126
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1127
+ </input>
1128
+ <output>
1129
+ <soap:body
1130
+ use="encoded"
1131
+ namespace="urn:iControl:Management/KeyCertificate"
1132
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1133
+ </output>
1134
+ </operation>
1135
+
1136
+ <operation name="key_generate">
1137
+ <documentation>
1138
+ Generates the specified keys.
1139
+
1140
+ </documentation>
1141
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1142
+ <input>
1143
+ <soap:body
1144
+ use="encoded"
1145
+ namespace="urn:iControl:Management/KeyCertificate"
1146
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1147
+ </input>
1148
+ <output>
1149
+ <soap:body
1150
+ use="encoded"
1151
+ namespace="urn:iControl:Management/KeyCertificate"
1152
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1153
+ </output>
1154
+ </operation>
1155
+
1156
+ <operation name="key_import_from_pem">
1157
+ <documentation>
1158
+ Imports/installs the specified keys from the given PEM-formatted data.
1159
+
1160
+ </documentation>
1161
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1162
+ <input>
1163
+ <soap:body
1164
+ use="encoded"
1165
+ namespace="urn:iControl:Management/KeyCertificate"
1166
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1167
+ </input>
1168
+ <output>
1169
+ <soap:body
1170
+ use="encoded"
1171
+ namespace="urn:iControl:Management/KeyCertificate"
1172
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1173
+ </output>
1174
+ </operation>
1175
+
1176
+ <operation name="key_import_from_file">
1177
+ <documentation>
1178
+ Imports/installs the specified keys from the given files.
1179
+
1180
+ </documentation>
1181
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1182
+ <input>
1183
+ <soap:body
1184
+ use="encoded"
1185
+ namespace="urn:iControl:Management/KeyCertificate"
1186
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1187
+ </input>
1188
+ <output>
1189
+ <soap:body
1190
+ use="encoded"
1191
+ namespace="urn:iControl:Management/KeyCertificate"
1192
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1193
+ </output>
1194
+ </operation>
1195
+
1196
+ <operation name="key_export_to_pem">
1197
+ <documentation>
1198
+ Exports the specified keys to PEM-formatted data.
1199
+
1200
+ </documentation>
1201
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1202
+ <input>
1203
+ <soap:body
1204
+ use="encoded"
1205
+ namespace="urn:iControl:Management/KeyCertificate"
1206
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1207
+ </input>
1208
+ <output>
1209
+ <soap:body
1210
+ use="encoded"
1211
+ namespace="urn:iControl:Management/KeyCertificate"
1212
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1213
+ </output>
1214
+ </operation>
1215
+
1216
+ <operation name="key_export_to_file">
1217
+ <documentation>
1218
+ Exports the specified keys to the given files.
1219
+
1220
+ </documentation>
1221
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1222
+ <input>
1223
+ <soap:body
1224
+ use="encoded"
1225
+ namespace="urn:iControl:Management/KeyCertificate"
1226
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1227
+ </input>
1228
+ <output>
1229
+ <soap:body
1230
+ use="encoded"
1231
+ namespace="urn:iControl:Management/KeyCertificate"
1232
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1233
+ </output>
1234
+ </operation>
1235
+
1236
+ <operation name="key_delete">
1237
+ <documentation>
1238
+ Deletes/uninstalls the specified keys.
1239
+
1240
+ </documentation>
1241
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1242
+ <input>
1243
+ <soap:body
1244
+ use="encoded"
1245
+ namespace="urn:iControl:Management/KeyCertificate"
1246
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1247
+ </input>
1248
+ <output>
1249
+ <soap:body
1250
+ use="encoded"
1251
+ namespace="urn:iControl:Management/KeyCertificate"
1252
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1253
+ </output>
1254
+ </operation>
1255
+
1256
+ <operation name="key_to_fips">
1257
+ <documentation>
1258
+ Converts the specified keys to FIPS-enabled keys.
1259
+
1260
+ </documentation>
1261
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1262
+ <input>
1263
+ <soap:body
1264
+ use="encoded"
1265
+ namespace="urn:iControl:Management/KeyCertificate"
1266
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1267
+ </input>
1268
+ <output>
1269
+ <soap:body
1270
+ use="encoded"
1271
+ namespace="urn:iControl:Management/KeyCertificate"
1272
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1273
+ </output>
1274
+ </operation>
1275
+
1276
+ <operation name="get_certificate_list">
1277
+ <documentation>
1278
+ Gets the list of all installed certificates and their information. If there's
1279
+ a certificate bundle, only the first certificate in the bundle is returned, and
1280
+ and is_bundle flag will be set to true for the correponding bundle file name.
1281
+
1282
+ </documentation>
1283
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1284
+ <input>
1285
+ <soap:body
1286
+ use="encoded"
1287
+ namespace="urn:iControl:Management/KeyCertificate"
1288
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1289
+ </input>
1290
+ <output>
1291
+ <soap:body
1292
+ use="encoded"
1293
+ namespace="urn:iControl:Management/KeyCertificate"
1294
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1295
+ </output>
1296
+ </operation>
1297
+
1298
+ <operation name="get_certificate_bundle">
1299
+ <documentation>
1300
+ Gets the list of all certificates bundled in the certificate files as
1301
+ specified by the file_names. Each file_name will contain multiple certficates.
1302
+ Note: only call this method when the results of get_certificate_list indicate
1303
+ that there are multiple certificates bundled in a particular file.
1304
+
1305
+ </documentation>
1306
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1307
+ <input>
1308
+ <soap:body
1309
+ use="encoded"
1310
+ namespace="urn:iControl:Management/KeyCertificate"
1311
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1312
+ </input>
1313
+ <output>
1314
+ <soap:body
1315
+ use="encoded"
1316
+ namespace="urn:iControl:Management/KeyCertificate"
1317
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1318
+ </output>
1319
+ </operation>
1320
+
1321
+ <operation name="get_certificate_subject_alternative_name">
1322
+ <documentation>
1323
+ Gets the list of all certificate subject alternative names in the certificate file objects
1324
+ as specified by the file_names. This method is for non-bundled certificates. For certificate
1325
+ bundles, use get_certificate_subject_alternative_name_bundle.
1326
+
1327
+ </documentation>
1328
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1329
+ <input>
1330
+ <soap:body
1331
+ use="encoded"
1332
+ namespace="urn:iControl:Management/KeyCertificate"
1333
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1334
+ </input>
1335
+ <output>
1336
+ <soap:body
1337
+ use="encoded"
1338
+ namespace="urn:iControl:Management/KeyCertificate"
1339
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1340
+ </output>
1341
+ </operation>
1342
+
1343
+ <operation name="get_certificate_subject_alternative_name_bundle">
1344
+ <documentation>
1345
+ Gets the list of all certificate subject alternative names bundled in the certificate files as
1346
+ specified by the file_names. Each file_name will contain multiple certficate subject alternative
1347
+ names.
1348
+ Note: only call this method when the results of get_certificate_list indicate
1349
+ that there are multiple certificates bundled in a particular file.
1350
+
1351
+ </documentation>
1352
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1353
+ <input>
1354
+ <soap:body
1355
+ use="encoded"
1356
+ namespace="urn:iControl:Management/KeyCertificate"
1357
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1358
+ </input>
1359
+ <output>
1360
+ <soap:body
1361
+ use="encoded"
1362
+ namespace="urn:iControl:Management/KeyCertificate"
1363
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1364
+ </output>
1365
+ </operation>
1366
+
1367
+ <operation name="certificate_add_pem_to_bundle">
1368
+ <documentation>
1369
+ Adds certificates identified by "pem_data" to the certificate bundles, which are presumed
1370
+ to exist already. Each of the original certificate bundle can theoretically be a normal
1371
+ certificate, i.e. a certificate bundle of one. After the add operation, the bundles will
1372
+ contain more than one certificate.
1373
+
1374
+ </documentation>
1375
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1376
+ <input>
1377
+ <soap:body
1378
+ use="encoded"
1379
+ namespace="urn:iControl:Management/KeyCertificate"
1380
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1381
+ </input>
1382
+ <output>
1383
+ <soap:body
1384
+ use="encoded"
1385
+ namespace="urn:iControl:Management/KeyCertificate"
1386
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1387
+ </output>
1388
+ </operation>
1389
+
1390
+ <operation name="certificate_add_file_to_bundle">
1391
+ <documentation>
1392
+ Adds certificates identified by "certificate_files" to the certificate bundles, which are
1393
+ presumed to exist already. Each of the original certificate bundle can theoretically be a
1394
+ normal certificate, i.e. a certificate bundle of one. After the add operation, the bundles
1395
+ will contain more than one certificate.
1396
+
1397
+ </documentation>
1398
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1399
+ <input>
1400
+ <soap:body
1401
+ use="encoded"
1402
+ namespace="urn:iControl:Management/KeyCertificate"
1403
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1404
+ </input>
1405
+ <output>
1406
+ <soap:body
1407
+ use="encoded"
1408
+ namespace="urn:iControl:Management/KeyCertificate"
1409
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1410
+ </output>
1411
+ </operation>
1412
+
1413
+ <operation name="certificate_delete_from_bundle">
1414
+ <documentation>
1415
+ Deletes certificates, identified by their subject's X509 data, from the certificate bundles.
1416
+ If the last certificate has been deleted from the bundle, the certificate file will
1417
+ automatically be deleted.
1418
+
1419
+ </documentation>
1420
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1421
+ <input>
1422
+ <soap:body
1423
+ use="encoded"
1424
+ namespace="urn:iControl:Management/KeyCertificate"
1425
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1426
+ </input>
1427
+ <output>
1428
+ <soap:body
1429
+ use="encoded"
1430
+ namespace="urn:iControl:Management/KeyCertificate"
1431
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1432
+ </output>
1433
+ </operation>
1434
+
1435
+ <operation name="certificate_delete_from_bundle_by_serial_number">
1436
+ <documentation>
1437
+ Deletes certificates identified by serial number and issuer's X509 data from certificate
1438
+ bundles.
1439
+ If the last certificate has been deleted from the bundle, the certificate file will
1440
+ automatically be deleted.
1441
+
1442
+ </documentation>
1443
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1444
+ <input>
1445
+ <soap:body
1446
+ use="encoded"
1447
+ namespace="urn:iControl:Management/KeyCertificate"
1448
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1449
+ </input>
1450
+ <output>
1451
+ <soap:body
1452
+ use="encoded"
1453
+ namespace="urn:iControl:Management/KeyCertificate"
1454
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1455
+ </output>
1456
+ </operation>
1457
+
1458
+ <operation name="certificate_generate">
1459
+ <documentation>
1460
+ Generates the specified certificates. This assumes that each of the associated keys,
1461
+ having the same identification as each certificate, has already been created.
1462
+
1463
+ </documentation>
1464
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1465
+ <input>
1466
+ <soap:body
1467
+ use="encoded"
1468
+ namespace="urn:iControl:Management/KeyCertificate"
1469
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1470
+ </input>
1471
+ <output>
1472
+ <soap:body
1473
+ use="encoded"
1474
+ namespace="urn:iControl:Management/KeyCertificate"
1475
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1476
+ </output>
1477
+ </operation>
1478
+
1479
+ <operation name="certificate_import_from_pem">
1480
+ <documentation>
1481
+ Imports/installs the specified certificates from the given PEM-formatted data.
1482
+
1483
+ </documentation>
1484
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1485
+ <input>
1486
+ <soap:body
1487
+ use="encoded"
1488
+ namespace="urn:iControl:Management/KeyCertificate"
1489
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1490
+ </input>
1491
+ <output>
1492
+ <soap:body
1493
+ use="encoded"
1494
+ namespace="urn:iControl:Management/KeyCertificate"
1495
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1496
+ </output>
1497
+ </operation>
1498
+
1499
+ <operation name="certificate_import_from_file">
1500
+ <documentation>
1501
+ Imports/installs the specified certificates from the given files.
1502
+
1503
+ </documentation>
1504
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1505
+ <input>
1506
+ <soap:body
1507
+ use="encoded"
1508
+ namespace="urn:iControl:Management/KeyCertificate"
1509
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1510
+ </input>
1511
+ <output>
1512
+ <soap:body
1513
+ use="encoded"
1514
+ namespace="urn:iControl:Management/KeyCertificate"
1515
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1516
+ </output>
1517
+ </operation>
1518
+
1519
+ <operation name="certificate_export_to_pem">
1520
+ <documentation>
1521
+ Exports the specified certificates to PEM-formatted data.
1522
+
1523
+ </documentation>
1524
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1525
+ <input>
1526
+ <soap:body
1527
+ use="encoded"
1528
+ namespace="urn:iControl:Management/KeyCertificate"
1529
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1530
+ </input>
1531
+ <output>
1532
+ <soap:body
1533
+ use="encoded"
1534
+ namespace="urn:iControl:Management/KeyCertificate"
1535
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1536
+ </output>
1537
+ </operation>
1538
+
1539
+ <operation name="certificate_export_to_file">
1540
+ <documentation>
1541
+ Exports the specified certificates to the given files.
1542
+
1543
+ </documentation>
1544
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1545
+ <input>
1546
+ <soap:body
1547
+ use="encoded"
1548
+ namespace="urn:iControl:Management/KeyCertificate"
1549
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1550
+ </input>
1551
+ <output>
1552
+ <soap:body
1553
+ use="encoded"
1554
+ namespace="urn:iControl:Management/KeyCertificate"
1555
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1556
+ </output>
1557
+ </operation>
1558
+
1559
+ <operation name="certificate_delete">
1560
+ <documentation>
1561
+ Deletes/uninstalls the specified certificates.
1562
+
1563
+ </documentation>
1564
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1565
+ <input>
1566
+ <soap:body
1567
+ use="encoded"
1568
+ namespace="urn:iControl:Management/KeyCertificate"
1569
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1570
+ </input>
1571
+ <output>
1572
+ <soap:body
1573
+ use="encoded"
1574
+ namespace="urn:iControl:Management/KeyCertificate"
1575
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1576
+ </output>
1577
+ </operation>
1578
+
1579
+ <operation name="certificate_check_validity">
1580
+ <documentation>
1581
+ Gets the validity of the specified certificates.
1582
+
1583
+ </documentation>
1584
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1585
+ <input>
1586
+ <soap:body
1587
+ use="encoded"
1588
+ namespace="urn:iControl:Management/KeyCertificate"
1589
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1590
+ </input>
1591
+ <output>
1592
+ <soap:body
1593
+ use="encoded"
1594
+ namespace="urn:iControl:Management/KeyCertificate"
1595
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1596
+ </output>
1597
+ </operation>
1598
+
1599
+ <operation name="certificate_bind">
1600
+ <documentation>
1601
+ Binds/associates the specified keys and certificates.
1602
+
1603
+ </documentation>
1604
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1605
+ <input>
1606
+ <soap:body
1607
+ use="encoded"
1608
+ namespace="urn:iControl:Management/KeyCertificate"
1609
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1610
+ </input>
1611
+ <output>
1612
+ <soap:body
1613
+ use="encoded"
1614
+ namespace="urn:iControl:Management/KeyCertificate"
1615
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1616
+ </output>
1617
+ </operation>
1618
+
1619
+ <operation name="get_certificate_request_list">
1620
+ <documentation>
1621
+ Gets the list of all CSRs and their information.
1622
+
1623
+ </documentation>
1624
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1625
+ <input>
1626
+ <soap:body
1627
+ use="encoded"
1628
+ namespace="urn:iControl:Management/KeyCertificate"
1629
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1630
+ </input>
1631
+ <output>
1632
+ <soap:body
1633
+ use="encoded"
1634
+ namespace="urn:iControl:Management/KeyCertificate"
1635
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1636
+ </output>
1637
+ </operation>
1638
+
1639
+ <operation name="certificate_request_generate">
1640
+ <documentation>
1641
+ Generates the specified certificate signing requests. This assumes that each of the
1642
+ associated keys, having the same identification as each certificate request, has
1643
+ already been created.
1644
+
1645
+ </documentation>
1646
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1647
+ <input>
1648
+ <soap:body
1649
+ use="encoded"
1650
+ namespace="urn:iControl:Management/KeyCertificate"
1651
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1652
+ </input>
1653
+ <output>
1654
+ <soap:body
1655
+ use="encoded"
1656
+ namespace="urn:iControl:Management/KeyCertificate"
1657
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1658
+ </output>
1659
+ </operation>
1660
+
1661
+ <operation name="certificate_request_import_from_pem">
1662
+ <documentation>
1663
+ Imports/installs the specified certificate requests from the given PEM-formatted data.
1664
+
1665
+ </documentation>
1666
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1667
+ <input>
1668
+ <soap:body
1669
+ use="encoded"
1670
+ namespace="urn:iControl:Management/KeyCertificate"
1671
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1672
+ </input>
1673
+ <output>
1674
+ <soap:body
1675
+ use="encoded"
1676
+ namespace="urn:iControl:Management/KeyCertificate"
1677
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1678
+ </output>
1679
+ </operation>
1680
+
1681
+ <operation name="certificate_request_import_from_file">
1682
+ <documentation>
1683
+ Imports/installs the specified certificate requests from the given files.
1684
+
1685
+ </documentation>
1686
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1687
+ <input>
1688
+ <soap:body
1689
+ use="encoded"
1690
+ namespace="urn:iControl:Management/KeyCertificate"
1691
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1692
+ </input>
1693
+ <output>
1694
+ <soap:body
1695
+ use="encoded"
1696
+ namespace="urn:iControl:Management/KeyCertificate"
1697
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1698
+ </output>
1699
+ </operation>
1700
+
1701
+ <operation name="certificate_request_export_to_pem">
1702
+ <documentation>
1703
+ Exports the specified certificate requests to PEM-formatted data.
1704
+
1705
+ </documentation>
1706
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1707
+ <input>
1708
+ <soap:body
1709
+ use="encoded"
1710
+ namespace="urn:iControl:Management/KeyCertificate"
1711
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1712
+ </input>
1713
+ <output>
1714
+ <soap:body
1715
+ use="encoded"
1716
+ namespace="urn:iControl:Management/KeyCertificate"
1717
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1718
+ </output>
1719
+ </operation>
1720
+
1721
+ <operation name="certificate_request_export_to_file">
1722
+ <documentation>
1723
+ Exports the specified certificate requests to the given files.
1724
+
1725
+ </documentation>
1726
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1727
+ <input>
1728
+ <soap:body
1729
+ use="encoded"
1730
+ namespace="urn:iControl:Management/KeyCertificate"
1731
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1732
+ </input>
1733
+ <output>
1734
+ <soap:body
1735
+ use="encoded"
1736
+ namespace="urn:iControl:Management/KeyCertificate"
1737
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1738
+ </output>
1739
+ </operation>
1740
+
1741
+ <operation name="certificate_request_delete">
1742
+ <documentation>
1743
+ Deletes the specified CSRs.
1744
+
1745
+ </documentation>
1746
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1747
+ <input>
1748
+ <soap:body
1749
+ use="encoded"
1750
+ namespace="urn:iControl:Management/KeyCertificate"
1751
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1752
+ </input>
1753
+ <output>
1754
+ <soap:body
1755
+ use="encoded"
1756
+ namespace="urn:iControl:Management/KeyCertificate"
1757
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1758
+ </output>
1759
+ </operation>
1760
+
1761
+ <operation name="pkcs12_import_from_file">
1762
+ <documentation>
1763
+ Imports/installs the specified pkcs12 (Public Key
1764
+ Cryptography Standard #12) information from the given
1765
+ files. This includes keys and certificates, and each file
1766
+ is optionally password-encrypted.
1767
+
1768
+ </documentation>
1769
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1770
+ <input>
1771
+ <soap:body
1772
+ use="encoded"
1773
+ namespace="urn:iControl:Management/KeyCertificate"
1774
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1775
+ </input>
1776
+ <output>
1777
+ <soap:body
1778
+ use="encoded"
1779
+ namespace="urn:iControl:Management/KeyCertificate"
1780
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1781
+ </output>
1782
+ </operation>
1783
+
1784
+ <operation name="export_all_to_archive_file">
1785
+ <documentation>
1786
+ Exports all currently installed keys and certificates into the specified archive file.
1787
+ The archive file is a .tgz file that will contain all keys and certificates.
1788
+
1789
+ </documentation>
1790
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1791
+ <input>
1792
+ <soap:body
1793
+ use="encoded"
1794
+ namespace="urn:iControl:Management/KeyCertificate"
1795
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1796
+ </input>
1797
+ <output>
1798
+ <soap:body
1799
+ use="encoded"
1800
+ namespace="urn:iControl:Management/KeyCertificate"
1801
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1802
+ </output>
1803
+ </operation>
1804
+
1805
+ <operation name="import_all_from_archive_file">
1806
+ <documentation>
1807
+ Imports/installs all keys and certificates from the specified archive file.
1808
+ The archive file should be a .tgz file that contains all keys and certificates.
1809
+
1810
+ </documentation>
1811
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1812
+ <input>
1813
+ <soap:body
1814
+ use="encoded"
1815
+ namespace="urn:iControl:Management/KeyCertificate"
1816
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1817
+ </input>
1818
+ <output>
1819
+ <soap:body
1820
+ use="encoded"
1821
+ namespace="urn:iControl:Management/KeyCertificate"
1822
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1823
+ </output>
1824
+ </operation>
1825
+
1826
+ <operation name="export_all_to_archive_stream">
1827
+ <documentation>
1828
+ Exports all currently installed keys and certificates into the returned archive stream.
1829
+ The returned archive stream is basically the contents of a .tgz file that contains
1830
+ all keys and certificates.
1831
+
1832
+ </documentation>
1833
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1834
+ <input>
1835
+ <soap:body
1836
+ use="encoded"
1837
+ namespace="urn:iControl:Management/KeyCertificate"
1838
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1839
+ </input>
1840
+ <output>
1841
+ <soap:body
1842
+ use="encoded"
1843
+ namespace="urn:iControl:Management/KeyCertificate"
1844
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1845
+ </output>
1846
+ </operation>
1847
+
1848
+ <operation name="import_all_from_archive_stream">
1849
+ <documentation>
1850
+ Imports/installs all keys and certificates from the incoming archive stream.
1851
+ The archive stream should be the contents of a .tgz file that contains all
1852
+ keys and certificates.
1853
+
1854
+ </documentation>
1855
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1856
+ <input>
1857
+ <soap:body
1858
+ use="encoded"
1859
+ namespace="urn:iControl:Management/KeyCertificate"
1860
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1861
+ </input>
1862
+ <output>
1863
+ <soap:body
1864
+ use="encoded"
1865
+ namespace="urn:iControl:Management/KeyCertificate"
1866
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1867
+ </output>
1868
+ </operation>
1869
+
1870
+ <operation name="export_to_archive_file">
1871
+ <documentation>
1872
+ Exports the specified keys and certificates into the specified archive file.
1873
+ The archive file is a .tgz file that will contain only the specified keys and
1874
+ certificates that have been exported.
1875
+
1876
+ </documentation>
1877
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1878
+ <input>
1879
+ <soap:body
1880
+ use="encoded"
1881
+ namespace="urn:iControl:Management/KeyCertificate"
1882
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1883
+ </input>
1884
+ <output>
1885
+ <soap:body
1886
+ use="encoded"
1887
+ namespace="urn:iControl:Management/KeyCertificate"
1888
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1889
+ </output>
1890
+ </operation>
1891
+
1892
+ <operation name="import_from_archive_file">
1893
+ <documentation>
1894
+ Imports/installs the specified keys and certificates from the specified archive file.
1895
+ The archive file should be a .tgz file that may contain more keys and certificates
1896
+ than what will be imported/installed.
1897
+
1898
+ </documentation>
1899
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1900
+ <input>
1901
+ <soap:body
1902
+ use="encoded"
1903
+ namespace="urn:iControl:Management/KeyCertificate"
1904
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1905
+ </input>
1906
+ <output>
1907
+ <soap:body
1908
+ use="encoded"
1909
+ namespace="urn:iControl:Management/KeyCertificate"
1910
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1911
+ </output>
1912
+ </operation>
1913
+
1914
+ <operation name="export_to_archive_stream">
1915
+ <documentation>
1916
+ Exports the specified keys and certificates into the returned archive stream.
1917
+ The returned archive stream is basically the contents of a .tgz file that contains
1918
+ the exported keys and certificates.
1919
+
1920
+ </documentation>
1921
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1922
+ <input>
1923
+ <soap:body
1924
+ use="encoded"
1925
+ namespace="urn:iControl:Management/KeyCertificate"
1926
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1927
+ </input>
1928
+ <output>
1929
+ <soap:body
1930
+ use="encoded"
1931
+ namespace="urn:iControl:Management/KeyCertificate"
1932
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1933
+ </output>
1934
+ </operation>
1935
+
1936
+ <operation name="import_from_archive_stream">
1937
+ <documentation>
1938
+ Imports/installs the specified keys and certificates from the incoming archive stream.
1939
+ The archive stream should be the contents of a .tgz file that may contain more keys
1940
+ and certificates than what will be imported/installed.
1941
+
1942
+ </documentation>
1943
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1944
+ <input>
1945
+ <soap:body
1946
+ use="encoded"
1947
+ namespace="urn:iControl:Management/KeyCertificate"
1948
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1949
+ </input>
1950
+ <output>
1951
+ <soap:body
1952
+ use="encoded"
1953
+ namespace="urn:iControl:Management/KeyCertificate"
1954
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1955
+ </output>
1956
+ </operation>
1957
+
1958
+ <operation name="get_valid_key_sizes">
1959
+ <documentation>
1960
+ Gets a list of valid key sizes for specified key types.
1961
+
1962
+ The valid key sizes are bit-lengths of keys that are
1963
+ supported by the system. For example, 1024 and 2048 mean
1964
+ 128-byte and 256-byte RSA key sizes. These sizes are used
1965
+ when generating or importing a key.
1966
+
1967
+ </documentation>
1968
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1969
+ <input>
1970
+ <soap:body
1971
+ use="encoded"
1972
+ namespace="urn:iControl:Management/KeyCertificate"
1973
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1974
+ </input>
1975
+ <output>
1976
+ <soap:body
1977
+ use="encoded"
1978
+ namespace="urn:iControl:Management/KeyCertificate"
1979
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1980
+ </output>
1981
+ </operation>
1982
+
1983
+ <operation name="get_version">
1984
+ <documentation>
1985
+ Gets the version information for this interface.
1986
+
1987
+ </documentation>
1988
+ <soap:operation soapAction="urn:iControl:Management/KeyCertificate"/>
1989
+ <input>
1990
+ <soap:body
1991
+ use="encoded"
1992
+ namespace="urn:iControl:Management/KeyCertificate"
1993
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1994
+ </input>
1995
+ <output>
1996
+ <soap:body
1997
+ use="encoded"
1998
+ namespace="urn:iControl:Management/KeyCertificate"
1999
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2000
+ </output>
2001
+ </operation>
2002
+ </binding>
2003
+
2004
+ <!-- service -->
2005
+
2006
+ <service name="Management.KeyCertificate">
2007
+ <documentation>
2008
+ The KeyCertificate interface exposes methods that enable you to manage keys, certificates,
2009
+ and certificate requests. All methods in this interface are atomic operations, such that
2010
+ each operation involves creating a session context with the key/certificate management
2011
+ library, performing the required action, and cleaning up and/or destroying the session
2012
+ context when completed. Therefore, all operations are stateless.
2013
+
2014
+ Note that all operations on keys, certificates, and certificate requests are performed in
2015
+ the directory location containing keys, certs, csr's... as structured for Apache, which is
2016
+ currently /config/ssl. For archiving operations, you have the option of exporting
2017
+ or importing archives to/from other locations. If the location is not specified, the default
2018
+ location of /config/ssl will be used.
2019
+
2020
+ This interface does not support transactions.
2021
+
2022
+ </documentation>
2023
+ <port name="Management.KeyCertificatePort" binding="tns:Management.KeyCertificateBinding">
2024
+ <soap:address location="https://url_to_service"/>
2025
+ </port>
2026
+ </service>
2027
+ </definitions>