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,1637 @@
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.CCLDAPConfiguration"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:simpleType name="Management.LDAPSearchMethod">
25
+ <xsd:restriction base="xsd:string">
26
+ <xsd:enumeration value="LDAP_SEARCH_METHOD_USER">
27
+ <xsd:annotation>
28
+ <xsd:documentation>LDAP_SEARCH_METHOD_USER</xsd:documentation>
29
+ </xsd:annotation>
30
+ </xsd:enumeration>
31
+ <xsd:enumeration value="LDAP_SEARCH_METHOD_CERTIFICATE">
32
+ <xsd:annotation>
33
+ <xsd:documentation>LDAP_SEARCH_METHOD_CERTIFICATE</xsd:documentation>
34
+ </xsd:annotation>
35
+ </xsd:enumeration>
36
+ <xsd:enumeration value="LDAP_SEARCH_METHOD_CERTIFICATE_MAP">
37
+ <xsd:annotation>
38
+ <xsd:documentation>LDAP_SEARCH_METHOD_CERTIFICATE_MAP</xsd:documentation>
39
+ </xsd:annotation>
40
+ </xsd:enumeration>
41
+ </xsd:restriction>
42
+ </xsd:simpleType>
43
+ <xsd:complexType name="Management.CCLDAPConfiguration.LDAPSearchOption">
44
+ <xsd:sequence>
45
+ <xsd:element name="search_method" type="tns:Management.LDAPSearchMethod"/>
46
+ <xsd:element name="search_base" type="xsd:string"/>
47
+ <xsd:element name="search_key" type="xsd:string"/>
48
+ </xsd:sequence>
49
+ </xsd:complexType>
50
+ <xsd:simpleType name="Common.EnabledState">
51
+ <xsd:restriction base="xsd:string">
52
+ <xsd:enumeration value="STATE_DISABLED">
53
+ <xsd:annotation>
54
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
55
+ </xsd:annotation>
56
+ </xsd:enumeration>
57
+ <xsd:enumeration value="STATE_ENABLED">
58
+ <xsd:annotation>
59
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
60
+ </xsd:annotation>
61
+ </xsd:enumeration>
62
+ </xsd:restriction>
63
+ </xsd:simpleType>
64
+ <xsd:complexType name="Common.StringSequence">
65
+ <xsd:complexContent>
66
+ <xsd:restriction base='SOAP-ENC:Array'>
67
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
68
+ </xsd:restriction>
69
+ </xsd:complexContent>
70
+ </xsd:complexType>
71
+ <xsd:complexType name="Common.ULongSequence">
72
+ <xsd:complexContent>
73
+ <xsd:restriction base='SOAP-ENC:Array'>
74
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
75
+ </xsd:restriction>
76
+ </xsd:complexContent>
77
+ </xsd:complexType>
78
+ <xsd:complexType name="Management.CCLDAPConfiguration.LDAPSearchOptionSequence">
79
+ <xsd:complexContent>
80
+ <xsd:restriction base='SOAP-ENC:Array'>
81
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.CCLDAPConfiguration.LDAPSearchOption[]'/>
82
+ </xsd:restriction>
83
+ </xsd:complexContent>
84
+ </xsd:complexType>
85
+ <xsd:complexType name="Common.StringSequenceSequence">
86
+ <xsd:complexContent>
87
+ <xsd:restriction base='SOAP-ENC:Array'>
88
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
89
+ </xsd:restriction>
90
+ </xsd:complexContent>
91
+ </xsd:complexType>
92
+ <xsd:complexType name="Common.EnabledStateSequence">
93
+ <xsd:complexContent>
94
+ <xsd:restriction base='SOAP-ENC:Array'>
95
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
96
+ </xsd:restriction>
97
+ </xsd:complexContent>
98
+ </xsd:complexType>
99
+ </xsd:schema>
100
+ </types>
101
+
102
+ <!-- message -->
103
+
104
+ <message name="Management.CCLDAPConfiguration.get_listRequest">
105
+ </message>
106
+ <message name="Management.CCLDAPConfiguration.get_listResponse">
107
+ <part name="return" type="tns:Common.StringSequence"/>
108
+ </message>
109
+
110
+ <message name="Management.CCLDAPConfiguration.createRequest">
111
+ <part name="config_names" type="tns:Common.StringSequence"/>
112
+ <part name="search_options" type="tns:Management.CCLDAPConfiguration.LDAPSearchOptionSequence"/>
113
+ <part name="servers" type="tns:Common.StringSequenceSequence"/>
114
+ </message>
115
+ <message name="Management.CCLDAPConfiguration.createResponse">
116
+ </message>
117
+
118
+ <message name="Management.CCLDAPConfiguration.delete_configurationRequest">
119
+ <part name="config_names" type="tns:Common.StringSequence"/>
120
+ </message>
121
+ <message name="Management.CCLDAPConfiguration.delete_configurationResponse">
122
+ </message>
123
+
124
+ <message name="Management.CCLDAPConfiguration.delete_all_configurationsRequest">
125
+ </message>
126
+ <message name="Management.CCLDAPConfiguration.delete_all_configurationsResponse">
127
+ </message>
128
+
129
+ <message name="Management.CCLDAPConfiguration.set_cache_sizeRequest">
130
+ <part name="config_names" type="tns:Common.StringSequence"/>
131
+ <part name="sizes" type="tns:Common.ULongSequence"/>
132
+ </message>
133
+ <message name="Management.CCLDAPConfiguration.set_cache_sizeResponse">
134
+ </message>
135
+
136
+ <message name="Management.CCLDAPConfiguration.get_cache_sizeRequest">
137
+ <part name="config_names" type="tns:Common.StringSequence"/>
138
+ </message>
139
+ <message name="Management.CCLDAPConfiguration.get_cache_sizeResponse">
140
+ <part name="return" type="tns:Common.ULongSequence"/>
141
+ </message>
142
+
143
+ <message name="Management.CCLDAPConfiguration.set_cache_timeoutRequest">
144
+ <part name="config_names" type="tns:Common.StringSequence"/>
145
+ <part name="timeouts" type="tns:Common.ULongSequence"/>
146
+ </message>
147
+ <message name="Management.CCLDAPConfiguration.set_cache_timeoutResponse">
148
+ </message>
149
+
150
+ <message name="Management.CCLDAPConfiguration.get_cache_timeoutRequest">
151
+ <part name="config_names" type="tns:Common.StringSequence"/>
152
+ </message>
153
+ <message name="Management.CCLDAPConfiguration.get_cache_timeoutResponse">
154
+ <part name="return" type="tns:Common.ULongSequence"/>
155
+ </message>
156
+
157
+ <message name="Management.CCLDAPConfiguration.set_search_optionRequest">
158
+ <part name="config_names" type="tns:Common.StringSequence"/>
159
+ <part name="options" type="tns:Management.CCLDAPConfiguration.LDAPSearchOptionSequence"/>
160
+ </message>
161
+ <message name="Management.CCLDAPConfiguration.set_search_optionResponse">
162
+ </message>
163
+
164
+ <message name="Management.CCLDAPConfiguration.get_search_optionRequest">
165
+ <part name="config_names" type="tns:Common.StringSequence"/>
166
+ </message>
167
+ <message name="Management.CCLDAPConfiguration.get_search_optionResponse">
168
+ <part name="return" type="tns:Management.CCLDAPConfiguration.LDAPSearchOptionSequence"/>
169
+ </message>
170
+
171
+ <message name="Management.CCLDAPConfiguration.set_user_classRequest">
172
+ <part name="config_names" type="tns:Common.StringSequence"/>
173
+ <part name="user_classes" type="tns:Common.StringSequence"/>
174
+ </message>
175
+ <message name="Management.CCLDAPConfiguration.set_user_classResponse">
176
+ </message>
177
+
178
+ <message name="Management.CCLDAPConfiguration.get_user_classRequest">
179
+ <part name="config_names" type="tns:Common.StringSequence"/>
180
+ </message>
181
+ <message name="Management.CCLDAPConfiguration.get_user_classResponse">
182
+ <part name="return" type="tns:Common.StringSequence"/>
183
+ </message>
184
+
185
+ <message name="Management.CCLDAPConfiguration.set_use_security_stateRequest">
186
+ <part name="config_names" type="tns:Common.StringSequence"/>
187
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
188
+ </message>
189
+ <message name="Management.CCLDAPConfiguration.set_use_security_stateResponse">
190
+ </message>
191
+
192
+ <message name="Management.CCLDAPConfiguration.get_use_security_stateRequest">
193
+ <part name="config_names" type="tns:Common.StringSequence"/>
194
+ </message>
195
+ <message name="Management.CCLDAPConfiguration.get_use_security_stateResponse">
196
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
197
+ </message>
198
+
199
+ <message name="Management.CCLDAPConfiguration.set_admin_distinguished_nameRequest">
200
+ <part name="config_names" type="tns:Common.StringSequence"/>
201
+ <part name="admin_dns" type="tns:Common.StringSequence"/>
202
+ </message>
203
+ <message name="Management.CCLDAPConfiguration.set_admin_distinguished_nameResponse">
204
+ </message>
205
+
206
+ <message name="Management.CCLDAPConfiguration.get_admin_distinguished_nameRequest">
207
+ <part name="config_names" type="tns:Common.StringSequence"/>
208
+ </message>
209
+ <message name="Management.CCLDAPConfiguration.get_admin_distinguished_nameResponse">
210
+ <part name="return" type="tns:Common.StringSequence"/>
211
+ </message>
212
+
213
+ <message name="Management.CCLDAPConfiguration.set_admin_passwordRequest">
214
+ <part name="config_names" type="tns:Common.StringSequence"/>
215
+ <part name="admin_passwords" type="tns:Common.StringSequence"/>
216
+ </message>
217
+ <message name="Management.CCLDAPConfiguration.set_admin_passwordResponse">
218
+ </message>
219
+
220
+ <message name="Management.CCLDAPConfiguration.get_admin_passwordRequest">
221
+ <part name="config_names" type="tns:Common.StringSequence"/>
222
+ </message>
223
+ <message name="Management.CCLDAPConfiguration.get_admin_passwordResponse">
224
+ <part name="return" type="tns:Common.StringSequence"/>
225
+ </message>
226
+
227
+ <message name="Management.CCLDAPConfiguration.set_use_certificate_serial_stateRequest">
228
+ <part name="config_names" type="tns:Common.StringSequence"/>
229
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
230
+ </message>
231
+ <message name="Management.CCLDAPConfiguration.set_use_certificate_serial_stateResponse">
232
+ </message>
233
+
234
+ <message name="Management.CCLDAPConfiguration.get_use_certificate_serial_stateRequest">
235
+ <part name="config_names" type="tns:Common.StringSequence"/>
236
+ </message>
237
+ <message name="Management.CCLDAPConfiguration.get_use_certificate_serial_stateResponse">
238
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
239
+ </message>
240
+
241
+ <message name="Management.CCLDAPConfiguration.set_group_baseRequest">
242
+ <part name="config_names" type="tns:Common.StringSequence"/>
243
+ <part name="bases" type="tns:Common.StringSequence"/>
244
+ </message>
245
+ <message name="Management.CCLDAPConfiguration.set_group_baseResponse">
246
+ </message>
247
+
248
+ <message name="Management.CCLDAPConfiguration.get_group_baseRequest">
249
+ <part name="config_names" type="tns:Common.StringSequence"/>
250
+ </message>
251
+ <message name="Management.CCLDAPConfiguration.get_group_baseResponse">
252
+ <part name="return" type="tns:Common.StringSequence"/>
253
+ </message>
254
+
255
+ <message name="Management.CCLDAPConfiguration.set_group_keyRequest">
256
+ <part name="config_names" type="tns:Common.StringSequence"/>
257
+ <part name="keys" type="tns:Common.StringSequence"/>
258
+ </message>
259
+ <message name="Management.CCLDAPConfiguration.set_group_keyResponse">
260
+ </message>
261
+
262
+ <message name="Management.CCLDAPConfiguration.get_group_keyRequest">
263
+ <part name="config_names" type="tns:Common.StringSequence"/>
264
+ </message>
265
+ <message name="Management.CCLDAPConfiguration.get_group_keyResponse">
266
+ <part name="return" type="tns:Common.StringSequence"/>
267
+ </message>
268
+
269
+ <message name="Management.CCLDAPConfiguration.set_group_member_keyRequest">
270
+ <part name="config_names" type="tns:Common.StringSequence"/>
271
+ <part name="keys" type="tns:Common.StringSequence"/>
272
+ </message>
273
+ <message name="Management.CCLDAPConfiguration.set_group_member_keyResponse">
274
+ </message>
275
+
276
+ <message name="Management.CCLDAPConfiguration.get_group_member_keyRequest">
277
+ <part name="config_names" type="tns:Common.StringSequence"/>
278
+ </message>
279
+ <message name="Management.CCLDAPConfiguration.get_group_member_keyResponse">
280
+ <part name="return" type="tns:Common.StringSequence"/>
281
+ </message>
282
+
283
+ <message name="Management.CCLDAPConfiguration.set_role_keyRequest">
284
+ <part name="config_names" type="tns:Common.StringSequence"/>
285
+ <part name="keys" type="tns:Common.StringSequence"/>
286
+ </message>
287
+ <message name="Management.CCLDAPConfiguration.set_role_keyResponse">
288
+ </message>
289
+
290
+ <message name="Management.CCLDAPConfiguration.get_role_keyRequest">
291
+ <part name="config_names" type="tns:Common.StringSequence"/>
292
+ </message>
293
+ <message name="Management.CCLDAPConfiguration.get_role_keyResponse">
294
+ <part name="return" type="tns:Common.StringSequence"/>
295
+ </message>
296
+
297
+ <message name="Management.CCLDAPConfiguration.get_serverRequest">
298
+ <part name="config_names" type="tns:Common.StringSequence"/>
299
+ </message>
300
+ <message name="Management.CCLDAPConfiguration.get_serverResponse">
301
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
302
+ </message>
303
+
304
+ <message name="Management.CCLDAPConfiguration.add_serverRequest">
305
+ <part name="config_names" type="tns:Common.StringSequence"/>
306
+ <part name="servers" type="tns:Common.StringSequenceSequence"/>
307
+ </message>
308
+ <message name="Management.CCLDAPConfiguration.add_serverResponse">
309
+ </message>
310
+
311
+ <message name="Management.CCLDAPConfiguration.remove_serverRequest">
312
+ <part name="config_names" type="tns:Common.StringSequence"/>
313
+ <part name="servers" type="tns:Common.StringSequenceSequence"/>
314
+ </message>
315
+ <message name="Management.CCLDAPConfiguration.remove_serverResponse">
316
+ </message>
317
+
318
+ <message name="Management.CCLDAPConfiguration.get_valid_groupRequest">
319
+ <part name="config_names" type="tns:Common.StringSequence"/>
320
+ </message>
321
+ <message name="Management.CCLDAPConfiguration.get_valid_groupResponse">
322
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
323
+ </message>
324
+
325
+ <message name="Management.CCLDAPConfiguration.add_valid_groupRequest">
326
+ <part name="config_names" type="tns:Common.StringSequence"/>
327
+ <part name="groups" type="tns:Common.StringSequenceSequence"/>
328
+ </message>
329
+ <message name="Management.CCLDAPConfiguration.add_valid_groupResponse">
330
+ </message>
331
+
332
+ <message name="Management.CCLDAPConfiguration.remove_valid_groupRequest">
333
+ <part name="config_names" type="tns:Common.StringSequence"/>
334
+ <part name="groups" type="tns:Common.StringSequenceSequence"/>
335
+ </message>
336
+ <message name="Management.CCLDAPConfiguration.remove_valid_groupResponse">
337
+ </message>
338
+
339
+ <message name="Management.CCLDAPConfiguration.remove_all_valid_groupsRequest">
340
+ <part name="config_names" type="tns:Common.StringSequence"/>
341
+ </message>
342
+ <message name="Management.CCLDAPConfiguration.remove_all_valid_groupsResponse">
343
+ </message>
344
+
345
+ <message name="Management.CCLDAPConfiguration.get_valid_roleRequest">
346
+ <part name="config_names" type="tns:Common.StringSequence"/>
347
+ </message>
348
+ <message name="Management.CCLDAPConfiguration.get_valid_roleResponse">
349
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
350
+ </message>
351
+
352
+ <message name="Management.CCLDAPConfiguration.add_valid_roleRequest">
353
+ <part name="config_names" type="tns:Common.StringSequence"/>
354
+ <part name="roles" type="tns:Common.StringSequenceSequence"/>
355
+ </message>
356
+ <message name="Management.CCLDAPConfiguration.add_valid_roleResponse">
357
+ </message>
358
+
359
+ <message name="Management.CCLDAPConfiguration.remove_valid_roleRequest">
360
+ <part name="config_names" type="tns:Common.StringSequence"/>
361
+ <part name="roles" type="tns:Common.StringSequenceSequence"/>
362
+ </message>
363
+ <message name="Management.CCLDAPConfiguration.remove_valid_roleResponse">
364
+ </message>
365
+
366
+ <message name="Management.CCLDAPConfiguration.remove_all_valid_rolesRequest">
367
+ <part name="config_names" type="tns:Common.StringSequence"/>
368
+ </message>
369
+ <message name="Management.CCLDAPConfiguration.remove_all_valid_rolesResponse">
370
+ </message>
371
+
372
+ <message name="Management.CCLDAPConfiguration.set_descriptionRequest">
373
+ <part name="config_names" type="tns:Common.StringSequence"/>
374
+ <part name="descriptions" type="tns:Common.StringSequence"/>
375
+ </message>
376
+ <message name="Management.CCLDAPConfiguration.set_descriptionResponse">
377
+ </message>
378
+
379
+ <message name="Management.CCLDAPConfiguration.get_descriptionRequest">
380
+ <part name="config_names" type="tns:Common.StringSequence"/>
381
+ </message>
382
+ <message name="Management.CCLDAPConfiguration.get_descriptionResponse">
383
+ <part name="return" type="tns:Common.StringSequence"/>
384
+ </message>
385
+
386
+ <message name="Management.CCLDAPConfiguration.get_versionRequest">
387
+ </message>
388
+ <message name="Management.CCLDAPConfiguration.get_versionResponse">
389
+ <part name="return" type="xsd:string"/>
390
+ </message>
391
+
392
+ <!-- portType -->
393
+
394
+ <portType name="Management.CCLDAPConfigurationPortType">
395
+ <operation name="get_list">
396
+ <documentation>
397
+ Gets a list of all Client Certificate LDAP configurations.
398
+
399
+ </documentation>
400
+ <input message="tns:Management.CCLDAPConfiguration.get_listRequest"/>
401
+ <output message="tns:Management.CCLDAPConfiguration.get_listResponse"/>
402
+ </operation>
403
+ <operation name="create">
404
+ <documentation>
405
+ Creates the specified Client Certificate LDAP configurations.
406
+
407
+ </documentation>
408
+ <input message="tns:Management.CCLDAPConfiguration.createRequest"/>
409
+ <output message="tns:Management.CCLDAPConfiguration.createResponse"/>
410
+ </operation>
411
+ <operation name="delete_configuration">
412
+ <documentation>
413
+ Deletes the specified Client Certificate LDAP configurations.
414
+
415
+ </documentation>
416
+ <input message="tns:Management.CCLDAPConfiguration.delete_configurationRequest"/>
417
+ <output message="tns:Management.CCLDAPConfiguration.delete_configurationResponse"/>
418
+ </operation>
419
+ <operation name="delete_all_configurations">
420
+ <documentation>
421
+ Deletes all Client Certificate LDAP configurations.
422
+
423
+ </documentation>
424
+ <input message="tns:Management.CCLDAPConfiguration.delete_all_configurationsRequest"/>
425
+ <output message="tns:Management.CCLDAPConfiguration.delete_all_configurationsResponse"/>
426
+ </operation>
427
+ <operation name="set_cache_size">
428
+ <documentation>
429
+ Sets the maximum LDAP response cache sizes in bytes. If zero is specified, the cache is not activated.
430
+
431
+ </documentation>
432
+ <input message="tns:Management.CCLDAPConfiguration.set_cache_sizeRequest"/>
433
+ <output message="tns:Management.CCLDAPConfiguration.set_cache_sizeResponse"/>
434
+ </operation>
435
+ <operation name="get_cache_size">
436
+ <documentation>
437
+ Gets the maximum LDAP response cache sizes in bytes. If zero is specified, the cache is not activated.
438
+
439
+ </documentation>
440
+ <input message="tns:Management.CCLDAPConfiguration.get_cache_sizeRequest"/>
441
+ <output message="tns:Management.CCLDAPConfiguration.get_cache_sizeResponse"/>
442
+ </operation>
443
+ <operation name="set_cache_timeout">
444
+ <documentation>
445
+ Sets the LDAP response cache timeout in seconds. If zero is specified, the cache is not activated.
446
+
447
+ </documentation>
448
+ <input message="tns:Management.CCLDAPConfiguration.set_cache_timeoutRequest"/>
449
+ <output message="tns:Management.CCLDAPConfiguration.set_cache_timeoutResponse"/>
450
+ </operation>
451
+ <operation name="get_cache_timeout">
452
+ <documentation>
453
+ Gets the LDAP response cache timeout in seconds. If zero is specified, the cache is not activated.
454
+
455
+ </documentation>
456
+ <input message="tns:Management.CCLDAPConfiguration.get_cache_timeoutRequest"/>
457
+ <output message="tns:Management.CCLDAPConfiguration.get_cache_timeoutResponse"/>
458
+ </operation>
459
+ <operation name="set_search_option">
460
+ <documentation>
461
+ Sets the search options used by the Client Certificate LDAP configurations.
462
+
463
+ </documentation>
464
+ <input message="tns:Management.CCLDAPConfiguration.set_search_optionRequest"/>
465
+ <output message="tns:Management.CCLDAPConfiguration.set_search_optionResponse"/>
466
+ </operation>
467
+ <operation name="get_search_option">
468
+ <documentation>
469
+ Gets the search options used by the Client Certificate LDAP configurations.
470
+
471
+ </documentation>
472
+ <input message="tns:Management.CCLDAPConfiguration.get_search_optionRequest"/>
473
+ <output message="tns:Management.CCLDAPConfiguration.get_search_optionResponse"/>
474
+ </operation>
475
+ <operation name="set_user_class">
476
+ <documentation>
477
+ Sets the user classes (only in certficate search method) for the specified Client Certificate LDAP configurations.
478
+
479
+ </documentation>
480
+ <input message="tns:Management.CCLDAPConfiguration.set_user_classRequest"/>
481
+ <output message="tns:Management.CCLDAPConfiguration.set_user_classResponse"/>
482
+ </operation>
483
+ <operation name="get_user_class">
484
+ <documentation>
485
+ Gets the user classes (only in certficate search method) for the specified Client Certificate LDAP configurations.
486
+
487
+ </documentation>
488
+ <input message="tns:Management.CCLDAPConfiguration.get_user_classRequest"/>
489
+ <output message="tns:Management.CCLDAPConfiguration.get_user_classResponse"/>
490
+ </operation>
491
+ <operation name="set_use_security_state">
492
+ <documentation>
493
+ Sets the states indicating whether SSL/TLS should be used when connecting to the LDAP server.
494
+
495
+ </documentation>
496
+ <input message="tns:Management.CCLDAPConfiguration.set_use_security_stateRequest"/>
497
+ <output message="tns:Management.CCLDAPConfiguration.set_use_security_stateResponse"/>
498
+ </operation>
499
+ <operation name="get_use_security_state">
500
+ <documentation>
501
+ Gets the states indicating whether SSL/TLS should be used when connecting to the LDAP server.
502
+
503
+ </documentation>
504
+ <input message="tns:Management.CCLDAPConfiguration.get_use_security_stateRequest"/>
505
+ <output message="tns:Management.CCLDAPConfiguration.get_use_security_stateResponse"/>
506
+ </operation>
507
+ <operation name="set_admin_distinguished_name">
508
+ <documentation>
509
+ Sets the admin DNs for the specified Client Certificate LDAP configurations.
510
+
511
+ </documentation>
512
+ <input message="tns:Management.CCLDAPConfiguration.set_admin_distinguished_nameRequest"/>
513
+ <output message="tns:Management.CCLDAPConfiguration.set_admin_distinguished_nameResponse"/>
514
+ </operation>
515
+ <operation name="get_admin_distinguished_name">
516
+ <documentation>
517
+ Gets the admin DNs for the specified Client Certificate LDAP configurations.
518
+
519
+ </documentation>
520
+ <input message="tns:Management.CCLDAPConfiguration.get_admin_distinguished_nameRequest"/>
521
+ <output message="tns:Management.CCLDAPConfiguration.get_admin_distinguished_nameResponse"/>
522
+ </operation>
523
+ <operation name="set_admin_password">
524
+ <documentation>
525
+ Sets the admin passwords for the specified Client Certificate LDAP configurations.
526
+
527
+ </documentation>
528
+ <input message="tns:Management.CCLDAPConfiguration.set_admin_passwordRequest"/>
529
+ <output message="tns:Management.CCLDAPConfiguration.set_admin_passwordResponse"/>
530
+ </operation>
531
+ <operation name="get_admin_password">
532
+ <documentation>
533
+ Gets the admin passwords for the specified Client Certificate LDAP configurations.
534
+
535
+ </documentation>
536
+ <input message="tns:Management.CCLDAPConfiguration.get_admin_passwordRequest"/>
537
+ <output message="tns:Management.CCLDAPConfiguration.get_admin_passwordResponse"/>
538
+ </operation>
539
+ <operation name="set_use_certificate_serial_state">
540
+ <documentation>
541
+ Sets the states indicating whether to use the client certificate's serial number instead of its
542
+ subject (one or the other is always used in conjunction with the certificate issuer) when trying
543
+ to match an entry in the certificate map subtree.
544
+
545
+ </documentation>
546
+ <input message="tns:Management.CCLDAPConfiguration.set_use_certificate_serial_stateRequest"/>
547
+ <output message="tns:Management.CCLDAPConfiguration.set_use_certificate_serial_stateResponse"/>
548
+ </operation>
549
+ <operation name="get_use_certificate_serial_state">
550
+ <documentation>
551
+ Gets the states indicating whether to use the client certificate's serial number instead of its
552
+ subject (one or the other is always used in conjunction with the certificate issuer) when trying
553
+ to match an entry in the certificate map subtree.
554
+
555
+ </documentation>
556
+ <input message="tns:Management.CCLDAPConfiguration.get_use_certificate_serial_stateRequest"/>
557
+ <output message="tns:Management.CCLDAPConfiguration.get_use_certificate_serial_stateResponse"/>
558
+ </operation>
559
+ <operation name="set_group_base">
560
+ <documentation>
561
+ Sets the search bases for the subtrees used by group searches.
562
+
563
+ </documentation>
564
+ <input message="tns:Management.CCLDAPConfiguration.set_group_baseRequest"/>
565
+ <output message="tns:Management.CCLDAPConfiguration.set_group_baseResponse"/>
566
+ </operation>
567
+ <operation name="get_group_base">
568
+ <documentation>
569
+ Gets the search bases for the subtrees used by group searches.
570
+
571
+ </documentation>
572
+ <input message="tns:Management.CCLDAPConfiguration.get_group_baseRequest"/>
573
+ <output message="tns:Management.CCLDAPConfiguration.get_group_baseResponse"/>
574
+ </operation>
575
+ <operation name="set_group_key">
576
+ <documentation>
577
+ Sets the names of the attributes in the LDAP database that identify the group names in the
578
+ group subtrees.
579
+
580
+ </documentation>
581
+ <input message="tns:Management.CCLDAPConfiguration.set_group_keyRequest"/>
582
+ <output message="tns:Management.CCLDAPConfiguration.set_group_keyResponse"/>
583
+ </operation>
584
+ <operation name="get_group_key">
585
+ <documentation>
586
+ Gets the names of the attributes in the LDAP database that identify the group names in the
587
+ group subtrees.
588
+
589
+ </documentation>
590
+ <input message="tns:Management.CCLDAPConfiguration.get_group_keyRequest"/>
591
+ <output message="tns:Management.CCLDAPConfiguration.get_group_keyResponse"/>
592
+ </operation>
593
+ <operation name="set_group_member_key">
594
+ <documentation>
595
+ Sets the names of the attributes in the LDAP database that identify members (DNs) of a group.
596
+ A typical key would be "member".
597
+
598
+ </documentation>
599
+ <input message="tns:Management.CCLDAPConfiguration.set_group_member_keyRequest"/>
600
+ <output message="tns:Management.CCLDAPConfiguration.set_group_member_keyResponse"/>
601
+ </operation>
602
+ <operation name="get_group_member_key">
603
+ <documentation>
604
+ Gets the names of the attributes in the LDAP database that identify members (DNs) of a group.
605
+ A typical key would be "member".
606
+
607
+ </documentation>
608
+ <input message="tns:Management.CCLDAPConfiguration.get_group_member_keyRequest"/>
609
+ <output message="tns:Management.CCLDAPConfiguration.get_group_member_keyResponse"/>
610
+ </operation>
611
+ <operation name="set_role_key">
612
+ <documentation>
613
+ Sets the names of the attributes in the LDAP database that identify a user's authorization roles.
614
+
615
+ </documentation>
616
+ <input message="tns:Management.CCLDAPConfiguration.set_role_keyRequest"/>
617
+ <output message="tns:Management.CCLDAPConfiguration.set_role_keyResponse"/>
618
+ </operation>
619
+ <operation name="get_role_key">
620
+ <documentation>
621
+ Gets the names of the attributes in the LDAP database that identify a user's authorization roles.
622
+
623
+ </documentation>
624
+ <input message="tns:Management.CCLDAPConfiguration.get_role_keyRequest"/>
625
+ <output message="tns:Management.CCLDAPConfiguration.get_role_keyResponse"/>
626
+ </operation>
627
+ <operation name="get_server">
628
+ <documentation>
629
+ Gets the lists of servers the specified Client Certificate LDAP configurations are associated with.
630
+
631
+ </documentation>
632
+ <input message="tns:Management.CCLDAPConfiguration.get_serverRequest"/>
633
+ <output message="tns:Management.CCLDAPConfiguration.get_serverResponse"/>
634
+ </operation>
635
+ <operation name="add_server">
636
+ <documentation>
637
+ Adds/associates servers to the specified Client Certificate LDAP configurations.
638
+
639
+ </documentation>
640
+ <input message="tns:Management.CCLDAPConfiguration.add_serverRequest"/>
641
+ <output message="tns:Management.CCLDAPConfiguration.add_serverResponse"/>
642
+ </operation>
643
+ <operation name="remove_server">
644
+ <documentation>
645
+ Removes servers from the specified Client Certificate LDAP configurations.
646
+
647
+ </documentation>
648
+ <input message="tns:Management.CCLDAPConfiguration.remove_serverRequest"/>
649
+ <output message="tns:Management.CCLDAPConfiguration.remove_serverResponse"/>
650
+ </operation>
651
+ <operation name="get_valid_group">
652
+ <documentation>
653
+ Gets the lists of valid groups in which the clients must belong in order to be authorized
654
+ (matches against the group key in the group subtree). A client only needs to be a member of
655
+ a single specified group in order to be authorized.
656
+
657
+ </documentation>
658
+ <input message="tns:Management.CCLDAPConfiguration.get_valid_groupRequest"/>
659
+ <output message="tns:Management.CCLDAPConfiguration.get_valid_groupResponse"/>
660
+ </operation>
661
+ <operation name="add_valid_group">
662
+ <documentation>
663
+ Adds/associates lists of valid groups in which the clients must belong in order to be authorized
664
+ (matches against the group key in the group subtree). A client only needs to be a member of
665
+ a single specified group in order to be authorized.
666
+
667
+ </documentation>
668
+ <input message="tns:Management.CCLDAPConfiguration.add_valid_groupRequest"/>
669
+ <output message="tns:Management.CCLDAPConfiguration.add_valid_groupResponse"/>
670
+ </operation>
671
+ <operation name="remove_valid_group">
672
+ <documentation>
673
+ Removes lists of valid groups in which the clients must belong in order to be authorized
674
+ (matches against the group key in the group subtree). A client only needs to be a member of
675
+ a single specified group in order to be authorized.
676
+
677
+ </documentation>
678
+ <input message="tns:Management.CCLDAPConfiguration.remove_valid_groupRequest"/>
679
+ <output message="tns:Management.CCLDAPConfiguration.remove_valid_groupResponse"/>
680
+ </operation>
681
+ <operation name="remove_all_valid_groups">
682
+ <documentation>
683
+ Removes all lists of valid groups in which the clients must belong in order to be authorized
684
+ (matches against the group key in the group subtree). A client only needs to be a member of
685
+ a single specified group in order to be authorized.
686
+
687
+ </documentation>
688
+ <input message="tns:Management.CCLDAPConfiguration.remove_all_valid_groupsRequest"/>
689
+ <output message="tns:Management.CCLDAPConfiguration.remove_all_valid_groupsResponse"/>
690
+ </operation>
691
+ <operation name="get_valid_role">
692
+ <documentation>
693
+ Gets the lists of valid roles that the client must possess in order to be authorized.
694
+ A client only needs to match of a single specified role in order to be authorized.
695
+
696
+ </documentation>
697
+ <input message="tns:Management.CCLDAPConfiguration.get_valid_roleRequest"/>
698
+ <output message="tns:Management.CCLDAPConfiguration.get_valid_roleResponse"/>
699
+ </operation>
700
+ <operation name="add_valid_role">
701
+ <documentation>
702
+ Adds/associates lists of valid roles that the client must possess in order to be authorized.
703
+ A client only needs to match of a single specified role in order to be authorized.
704
+
705
+ </documentation>
706
+ <input message="tns:Management.CCLDAPConfiguration.add_valid_roleRequest"/>
707
+ <output message="tns:Management.CCLDAPConfiguration.add_valid_roleResponse"/>
708
+ </operation>
709
+ <operation name="remove_valid_role">
710
+ <documentation>
711
+ Removes lists of valid roles that the client must possess in order to be authorized.
712
+ A client only needs to match of a single specified role in order to be authorized.
713
+
714
+ </documentation>
715
+ <input message="tns:Management.CCLDAPConfiguration.remove_valid_roleRequest"/>
716
+ <output message="tns:Management.CCLDAPConfiguration.remove_valid_roleResponse"/>
717
+ </operation>
718
+ <operation name="remove_all_valid_roles">
719
+ <documentation>
720
+ Removes all lists of valid roles that the client must possess in order to be authorized.
721
+ A client only needs to match of a single specified role in order to be authorized.
722
+
723
+ </documentation>
724
+ <input message="tns:Management.CCLDAPConfiguration.remove_all_valid_rolesRequest"/>
725
+ <output message="tns:Management.CCLDAPConfiguration.remove_all_valid_rolesResponse"/>
726
+ </operation>
727
+ <operation name="set_description">
728
+ <documentation>
729
+ Sets the description for a set of Client Certificate LDAP
730
+ configurations.
731
+
732
+ This is an arbitrary field which can be used for any purpose.
733
+
734
+ </documentation>
735
+ <input message="tns:Management.CCLDAPConfiguration.set_descriptionRequest"/>
736
+ <output message="tns:Management.CCLDAPConfiguration.set_descriptionResponse"/>
737
+ </operation>
738
+ <operation name="get_description">
739
+ <documentation>
740
+ Gets the descriptions for a set of Client Certificate LDAP
741
+ configurations.
742
+
743
+ </documentation>
744
+ <input message="tns:Management.CCLDAPConfiguration.get_descriptionRequest"/>
745
+ <output message="tns:Management.CCLDAPConfiguration.get_descriptionResponse"/>
746
+ </operation>
747
+ <operation name="get_version">
748
+ <documentation>
749
+ Gets the version information for this interface.
750
+
751
+ </documentation>
752
+ <input message="tns:Management.CCLDAPConfiguration.get_versionRequest"/>
753
+ <output message="tns:Management.CCLDAPConfiguration.get_versionResponse"/>
754
+ </operation>
755
+ </portType>
756
+
757
+ <!-- binding -->
758
+
759
+ <binding name="Management.CCLDAPConfigurationBinding" type="tns:Management.CCLDAPConfigurationPortType">
760
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
761
+ <operation name="get_list">
762
+ <documentation>
763
+ Gets a list of all Client Certificate LDAP configurations.
764
+
765
+ </documentation>
766
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
767
+ <input>
768
+ <soap:body
769
+ use="encoded"
770
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
771
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
772
+ </input>
773
+ <output>
774
+ <soap:body
775
+ use="encoded"
776
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
777
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
778
+ </output>
779
+ </operation>
780
+
781
+ <operation name="create">
782
+ <documentation>
783
+ Creates the specified Client Certificate LDAP configurations.
784
+
785
+ </documentation>
786
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
787
+ <input>
788
+ <soap:body
789
+ use="encoded"
790
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
791
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
792
+ </input>
793
+ <output>
794
+ <soap:body
795
+ use="encoded"
796
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
797
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
798
+ </output>
799
+ </operation>
800
+
801
+ <operation name="delete_configuration">
802
+ <documentation>
803
+ Deletes the specified Client Certificate LDAP configurations.
804
+
805
+ </documentation>
806
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
807
+ <input>
808
+ <soap:body
809
+ use="encoded"
810
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
811
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
812
+ </input>
813
+ <output>
814
+ <soap:body
815
+ use="encoded"
816
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
817
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
818
+ </output>
819
+ </operation>
820
+
821
+ <operation name="delete_all_configurations">
822
+ <documentation>
823
+ Deletes all Client Certificate LDAP configurations.
824
+
825
+ </documentation>
826
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
827
+ <input>
828
+ <soap:body
829
+ use="encoded"
830
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
831
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
832
+ </input>
833
+ <output>
834
+ <soap:body
835
+ use="encoded"
836
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
837
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
838
+ </output>
839
+ </operation>
840
+
841
+ <operation name="set_cache_size">
842
+ <documentation>
843
+ Sets the maximum LDAP response cache sizes in bytes. If zero is specified, the cache is not activated.
844
+
845
+ </documentation>
846
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
847
+ <input>
848
+ <soap:body
849
+ use="encoded"
850
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
851
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
852
+ </input>
853
+ <output>
854
+ <soap:body
855
+ use="encoded"
856
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
857
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
858
+ </output>
859
+ </operation>
860
+
861
+ <operation name="get_cache_size">
862
+ <documentation>
863
+ Gets the maximum LDAP response cache sizes in bytes. If zero is specified, the cache is not activated.
864
+
865
+ </documentation>
866
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
867
+ <input>
868
+ <soap:body
869
+ use="encoded"
870
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
871
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
872
+ </input>
873
+ <output>
874
+ <soap:body
875
+ use="encoded"
876
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
877
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
878
+ </output>
879
+ </operation>
880
+
881
+ <operation name="set_cache_timeout">
882
+ <documentation>
883
+ Sets the LDAP response cache timeout in seconds. If zero is specified, the cache is not activated.
884
+
885
+ </documentation>
886
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
887
+ <input>
888
+ <soap:body
889
+ use="encoded"
890
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
891
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
892
+ </input>
893
+ <output>
894
+ <soap:body
895
+ use="encoded"
896
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
897
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
898
+ </output>
899
+ </operation>
900
+
901
+ <operation name="get_cache_timeout">
902
+ <documentation>
903
+ Gets the LDAP response cache timeout in seconds. If zero is specified, the cache is not activated.
904
+
905
+ </documentation>
906
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
907
+ <input>
908
+ <soap:body
909
+ use="encoded"
910
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
911
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
912
+ </input>
913
+ <output>
914
+ <soap:body
915
+ use="encoded"
916
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
917
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
918
+ </output>
919
+ </operation>
920
+
921
+ <operation name="set_search_option">
922
+ <documentation>
923
+ Sets the search options used by the Client Certificate LDAP configurations.
924
+
925
+ </documentation>
926
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
927
+ <input>
928
+ <soap:body
929
+ use="encoded"
930
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
931
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
932
+ </input>
933
+ <output>
934
+ <soap:body
935
+ use="encoded"
936
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
937
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
938
+ </output>
939
+ </operation>
940
+
941
+ <operation name="get_search_option">
942
+ <documentation>
943
+ Gets the search options used by the Client Certificate LDAP configurations.
944
+
945
+ </documentation>
946
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
947
+ <input>
948
+ <soap:body
949
+ use="encoded"
950
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
951
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
952
+ </input>
953
+ <output>
954
+ <soap:body
955
+ use="encoded"
956
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
957
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
958
+ </output>
959
+ </operation>
960
+
961
+ <operation name="set_user_class">
962
+ <documentation>
963
+ Sets the user classes (only in certficate search method) for the specified Client Certificate LDAP configurations.
964
+
965
+ </documentation>
966
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
967
+ <input>
968
+ <soap:body
969
+ use="encoded"
970
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
971
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
972
+ </input>
973
+ <output>
974
+ <soap:body
975
+ use="encoded"
976
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
977
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
978
+ </output>
979
+ </operation>
980
+
981
+ <operation name="get_user_class">
982
+ <documentation>
983
+ Gets the user classes (only in certficate search method) for the specified Client Certificate LDAP configurations.
984
+
985
+ </documentation>
986
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
987
+ <input>
988
+ <soap:body
989
+ use="encoded"
990
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
991
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
992
+ </input>
993
+ <output>
994
+ <soap:body
995
+ use="encoded"
996
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
997
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
998
+ </output>
999
+ </operation>
1000
+
1001
+ <operation name="set_use_security_state">
1002
+ <documentation>
1003
+ Sets the states indicating whether SSL/TLS should be used when connecting to the LDAP server.
1004
+
1005
+ </documentation>
1006
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1007
+ <input>
1008
+ <soap:body
1009
+ use="encoded"
1010
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1011
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1012
+ </input>
1013
+ <output>
1014
+ <soap:body
1015
+ use="encoded"
1016
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1017
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1018
+ </output>
1019
+ </operation>
1020
+
1021
+ <operation name="get_use_security_state">
1022
+ <documentation>
1023
+ Gets the states indicating whether SSL/TLS should be used when connecting to the LDAP server.
1024
+
1025
+ </documentation>
1026
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1027
+ <input>
1028
+ <soap:body
1029
+ use="encoded"
1030
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1031
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1032
+ </input>
1033
+ <output>
1034
+ <soap:body
1035
+ use="encoded"
1036
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1037
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1038
+ </output>
1039
+ </operation>
1040
+
1041
+ <operation name="set_admin_distinguished_name">
1042
+ <documentation>
1043
+ Sets the admin DNs for the specified Client Certificate LDAP configurations.
1044
+
1045
+ </documentation>
1046
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1047
+ <input>
1048
+ <soap:body
1049
+ use="encoded"
1050
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1051
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1052
+ </input>
1053
+ <output>
1054
+ <soap:body
1055
+ use="encoded"
1056
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1057
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1058
+ </output>
1059
+ </operation>
1060
+
1061
+ <operation name="get_admin_distinguished_name">
1062
+ <documentation>
1063
+ Gets the admin DNs for the specified Client Certificate LDAP configurations.
1064
+
1065
+ </documentation>
1066
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1067
+ <input>
1068
+ <soap:body
1069
+ use="encoded"
1070
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1071
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1072
+ </input>
1073
+ <output>
1074
+ <soap:body
1075
+ use="encoded"
1076
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1077
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1078
+ </output>
1079
+ </operation>
1080
+
1081
+ <operation name="set_admin_password">
1082
+ <documentation>
1083
+ Sets the admin passwords for the specified Client Certificate LDAP configurations.
1084
+
1085
+ </documentation>
1086
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1087
+ <input>
1088
+ <soap:body
1089
+ use="encoded"
1090
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1091
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1092
+ </input>
1093
+ <output>
1094
+ <soap:body
1095
+ use="encoded"
1096
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1097
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1098
+ </output>
1099
+ </operation>
1100
+
1101
+ <operation name="get_admin_password">
1102
+ <documentation>
1103
+ Gets the admin passwords for the specified Client Certificate LDAP configurations.
1104
+
1105
+ </documentation>
1106
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1107
+ <input>
1108
+ <soap:body
1109
+ use="encoded"
1110
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1111
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1112
+ </input>
1113
+ <output>
1114
+ <soap:body
1115
+ use="encoded"
1116
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1117
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1118
+ </output>
1119
+ </operation>
1120
+
1121
+ <operation name="set_use_certificate_serial_state">
1122
+ <documentation>
1123
+ Sets the states indicating whether to use the client certificate's serial number instead of its
1124
+ subject (one or the other is always used in conjunction with the certificate issuer) when trying
1125
+ to match an entry in the certificate map subtree.
1126
+
1127
+ </documentation>
1128
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1129
+ <input>
1130
+ <soap:body
1131
+ use="encoded"
1132
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1133
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1134
+ </input>
1135
+ <output>
1136
+ <soap:body
1137
+ use="encoded"
1138
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1139
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1140
+ </output>
1141
+ </operation>
1142
+
1143
+ <operation name="get_use_certificate_serial_state">
1144
+ <documentation>
1145
+ Gets the states indicating whether to use the client certificate's serial number instead of its
1146
+ subject (one or the other is always used in conjunction with the certificate issuer) when trying
1147
+ to match an entry in the certificate map subtree.
1148
+
1149
+ </documentation>
1150
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1151
+ <input>
1152
+ <soap:body
1153
+ use="encoded"
1154
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1155
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1156
+ </input>
1157
+ <output>
1158
+ <soap:body
1159
+ use="encoded"
1160
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1161
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1162
+ </output>
1163
+ </operation>
1164
+
1165
+ <operation name="set_group_base">
1166
+ <documentation>
1167
+ Sets the search bases for the subtrees used by group searches.
1168
+
1169
+ </documentation>
1170
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1171
+ <input>
1172
+ <soap:body
1173
+ use="encoded"
1174
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1175
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1176
+ </input>
1177
+ <output>
1178
+ <soap:body
1179
+ use="encoded"
1180
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1181
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1182
+ </output>
1183
+ </operation>
1184
+
1185
+ <operation name="get_group_base">
1186
+ <documentation>
1187
+ Gets the search bases for the subtrees used by group searches.
1188
+
1189
+ </documentation>
1190
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1191
+ <input>
1192
+ <soap:body
1193
+ use="encoded"
1194
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1195
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1196
+ </input>
1197
+ <output>
1198
+ <soap:body
1199
+ use="encoded"
1200
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1201
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1202
+ </output>
1203
+ </operation>
1204
+
1205
+ <operation name="set_group_key">
1206
+ <documentation>
1207
+ Sets the names of the attributes in the LDAP database that identify the group names in the
1208
+ group subtrees.
1209
+
1210
+ </documentation>
1211
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1212
+ <input>
1213
+ <soap:body
1214
+ use="encoded"
1215
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1216
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1217
+ </input>
1218
+ <output>
1219
+ <soap:body
1220
+ use="encoded"
1221
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1222
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1223
+ </output>
1224
+ </operation>
1225
+
1226
+ <operation name="get_group_key">
1227
+ <documentation>
1228
+ Gets the names of the attributes in the LDAP database that identify the group names in the
1229
+ group subtrees.
1230
+
1231
+ </documentation>
1232
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1233
+ <input>
1234
+ <soap:body
1235
+ use="encoded"
1236
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1237
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1238
+ </input>
1239
+ <output>
1240
+ <soap:body
1241
+ use="encoded"
1242
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1243
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1244
+ </output>
1245
+ </operation>
1246
+
1247
+ <operation name="set_group_member_key">
1248
+ <documentation>
1249
+ Sets the names of the attributes in the LDAP database that identify members (DNs) of a group.
1250
+ A typical key would be "member".
1251
+
1252
+ </documentation>
1253
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1254
+ <input>
1255
+ <soap:body
1256
+ use="encoded"
1257
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1258
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1259
+ </input>
1260
+ <output>
1261
+ <soap:body
1262
+ use="encoded"
1263
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1264
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1265
+ </output>
1266
+ </operation>
1267
+
1268
+ <operation name="get_group_member_key">
1269
+ <documentation>
1270
+ Gets the names of the attributes in the LDAP database that identify members (DNs) of a group.
1271
+ A typical key would be "member".
1272
+
1273
+ </documentation>
1274
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1275
+ <input>
1276
+ <soap:body
1277
+ use="encoded"
1278
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1279
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1280
+ </input>
1281
+ <output>
1282
+ <soap:body
1283
+ use="encoded"
1284
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1285
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1286
+ </output>
1287
+ </operation>
1288
+
1289
+ <operation name="set_role_key">
1290
+ <documentation>
1291
+ Sets the names of the attributes in the LDAP database that identify a user's authorization roles.
1292
+
1293
+ </documentation>
1294
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1295
+ <input>
1296
+ <soap:body
1297
+ use="encoded"
1298
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1299
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1300
+ </input>
1301
+ <output>
1302
+ <soap:body
1303
+ use="encoded"
1304
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1305
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1306
+ </output>
1307
+ </operation>
1308
+
1309
+ <operation name="get_role_key">
1310
+ <documentation>
1311
+ Gets the names of the attributes in the LDAP database that identify a user's authorization roles.
1312
+
1313
+ </documentation>
1314
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1315
+ <input>
1316
+ <soap:body
1317
+ use="encoded"
1318
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1319
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1320
+ </input>
1321
+ <output>
1322
+ <soap:body
1323
+ use="encoded"
1324
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1325
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1326
+ </output>
1327
+ </operation>
1328
+
1329
+ <operation name="get_server">
1330
+ <documentation>
1331
+ Gets the lists of servers the specified Client Certificate LDAP configurations are associated with.
1332
+
1333
+ </documentation>
1334
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1335
+ <input>
1336
+ <soap:body
1337
+ use="encoded"
1338
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1339
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1340
+ </input>
1341
+ <output>
1342
+ <soap:body
1343
+ use="encoded"
1344
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1345
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1346
+ </output>
1347
+ </operation>
1348
+
1349
+ <operation name="add_server">
1350
+ <documentation>
1351
+ Adds/associates servers to the specified Client Certificate LDAP configurations.
1352
+
1353
+ </documentation>
1354
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1355
+ <input>
1356
+ <soap:body
1357
+ use="encoded"
1358
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1359
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1360
+ </input>
1361
+ <output>
1362
+ <soap:body
1363
+ use="encoded"
1364
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1365
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1366
+ </output>
1367
+ </operation>
1368
+
1369
+ <operation name="remove_server">
1370
+ <documentation>
1371
+ Removes servers from the specified Client Certificate LDAP configurations.
1372
+
1373
+ </documentation>
1374
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1375
+ <input>
1376
+ <soap:body
1377
+ use="encoded"
1378
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1379
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1380
+ </input>
1381
+ <output>
1382
+ <soap:body
1383
+ use="encoded"
1384
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1385
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1386
+ </output>
1387
+ </operation>
1388
+
1389
+ <operation name="get_valid_group">
1390
+ <documentation>
1391
+ Gets the lists of valid groups in which the clients must belong in order to be authorized
1392
+ (matches against the group key in the group subtree). A client only needs to be a member of
1393
+ a single specified group in order to be authorized.
1394
+
1395
+ </documentation>
1396
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1397
+ <input>
1398
+ <soap:body
1399
+ use="encoded"
1400
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1401
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1402
+ </input>
1403
+ <output>
1404
+ <soap:body
1405
+ use="encoded"
1406
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1407
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1408
+ </output>
1409
+ </operation>
1410
+
1411
+ <operation name="add_valid_group">
1412
+ <documentation>
1413
+ Adds/associates lists of valid groups in which the clients must belong in order to be authorized
1414
+ (matches against the group key in the group subtree). A client only needs to be a member of
1415
+ a single specified group in order to be authorized.
1416
+
1417
+ </documentation>
1418
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1419
+ <input>
1420
+ <soap:body
1421
+ use="encoded"
1422
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1423
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1424
+ </input>
1425
+ <output>
1426
+ <soap:body
1427
+ use="encoded"
1428
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1429
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1430
+ </output>
1431
+ </operation>
1432
+
1433
+ <operation name="remove_valid_group">
1434
+ <documentation>
1435
+ Removes lists of valid groups in which the clients must belong in order to be authorized
1436
+ (matches against the group key in the group subtree). A client only needs to be a member of
1437
+ a single specified group in order to be authorized.
1438
+
1439
+ </documentation>
1440
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1441
+ <input>
1442
+ <soap:body
1443
+ use="encoded"
1444
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1445
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1446
+ </input>
1447
+ <output>
1448
+ <soap:body
1449
+ use="encoded"
1450
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1451
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1452
+ </output>
1453
+ </operation>
1454
+
1455
+ <operation name="remove_all_valid_groups">
1456
+ <documentation>
1457
+ Removes all lists of valid groups in which the clients must belong in order to be authorized
1458
+ (matches against the group key in the group subtree). A client only needs to be a member of
1459
+ a single specified group in order to be authorized.
1460
+
1461
+ </documentation>
1462
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1463
+ <input>
1464
+ <soap:body
1465
+ use="encoded"
1466
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1467
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1468
+ </input>
1469
+ <output>
1470
+ <soap:body
1471
+ use="encoded"
1472
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1473
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1474
+ </output>
1475
+ </operation>
1476
+
1477
+ <operation name="get_valid_role">
1478
+ <documentation>
1479
+ Gets the lists of valid roles that the client must possess in order to be authorized.
1480
+ A client only needs to match of a single specified role in order to be authorized.
1481
+
1482
+ </documentation>
1483
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1484
+ <input>
1485
+ <soap:body
1486
+ use="encoded"
1487
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1488
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1489
+ </input>
1490
+ <output>
1491
+ <soap:body
1492
+ use="encoded"
1493
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1494
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1495
+ </output>
1496
+ </operation>
1497
+
1498
+ <operation name="add_valid_role">
1499
+ <documentation>
1500
+ Adds/associates lists of valid roles that the client must possess in order to be authorized.
1501
+ A client only needs to match of a single specified role in order to be authorized.
1502
+
1503
+ </documentation>
1504
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1505
+ <input>
1506
+ <soap:body
1507
+ use="encoded"
1508
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1509
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1510
+ </input>
1511
+ <output>
1512
+ <soap:body
1513
+ use="encoded"
1514
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1515
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1516
+ </output>
1517
+ </operation>
1518
+
1519
+ <operation name="remove_valid_role">
1520
+ <documentation>
1521
+ Removes lists of valid roles that the client must possess in order to be authorized.
1522
+ A client only needs to match of a single specified role in order to be authorized.
1523
+
1524
+ </documentation>
1525
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1526
+ <input>
1527
+ <soap:body
1528
+ use="encoded"
1529
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1530
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1531
+ </input>
1532
+ <output>
1533
+ <soap:body
1534
+ use="encoded"
1535
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1536
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1537
+ </output>
1538
+ </operation>
1539
+
1540
+ <operation name="remove_all_valid_roles">
1541
+ <documentation>
1542
+ Removes all lists of valid roles that the client must possess in order to be authorized.
1543
+ A client only needs to match of a single specified role in order to be authorized.
1544
+
1545
+ </documentation>
1546
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1547
+ <input>
1548
+ <soap:body
1549
+ use="encoded"
1550
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1551
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1552
+ </input>
1553
+ <output>
1554
+ <soap:body
1555
+ use="encoded"
1556
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1557
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1558
+ </output>
1559
+ </operation>
1560
+
1561
+ <operation name="set_description">
1562
+ <documentation>
1563
+ Sets the description for a set of Client Certificate LDAP
1564
+ configurations.
1565
+
1566
+ This is an arbitrary field which can be used for any purpose.
1567
+
1568
+ </documentation>
1569
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1570
+ <input>
1571
+ <soap:body
1572
+ use="encoded"
1573
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1574
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1575
+ </input>
1576
+ <output>
1577
+ <soap:body
1578
+ use="encoded"
1579
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1580
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1581
+ </output>
1582
+ </operation>
1583
+
1584
+ <operation name="get_description">
1585
+ <documentation>
1586
+ Gets the descriptions for a set of Client Certificate LDAP
1587
+ configurations.
1588
+
1589
+ </documentation>
1590
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1591
+ <input>
1592
+ <soap:body
1593
+ use="encoded"
1594
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1595
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1596
+ </input>
1597
+ <output>
1598
+ <soap:body
1599
+ use="encoded"
1600
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1601
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1602
+ </output>
1603
+ </operation>
1604
+
1605
+ <operation name="get_version">
1606
+ <documentation>
1607
+ Gets the version information for this interface.
1608
+
1609
+ </documentation>
1610
+ <soap:operation soapAction="urn:iControl:Management/CCLDAPConfiguration"/>
1611
+ <input>
1612
+ <soap:body
1613
+ use="encoded"
1614
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1615
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1616
+ </input>
1617
+ <output>
1618
+ <soap:body
1619
+ use="encoded"
1620
+ namespace="urn:iControl:Management/CCLDAPConfiguration"
1621
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1622
+ </output>
1623
+ </operation>
1624
+ </binding>
1625
+
1626
+ <!-- service -->
1627
+
1628
+ <service name="Management.CCLDAPConfiguration">
1629
+ <documentation>
1630
+ The CCLDAPConfiguration interface enables you to manage SSL Client Certificate LDAP PAM configuration.
1631
+
1632
+ </documentation>
1633
+ <port name="Management.CCLDAPConfigurationPort" binding="tns:Management.CCLDAPConfigurationBinding">
1634
+ <soap:address location="https://url_to_service"/>
1635
+ </port>
1636
+ </service>
1637
+ </definitions>