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,2645 @@
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.LDAPConfiguration"
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="Common.EnabledState">
25
+ <xsd:restriction base="xsd:string">
26
+ <xsd:enumeration value="STATE_DISABLED">
27
+ <xsd:annotation>
28
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
29
+ </xsd:annotation>
30
+ </xsd:enumeration>
31
+ <xsd:enumeration value="STATE_ENABLED">
32
+ <xsd:annotation>
33
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
34
+ </xsd:annotation>
35
+ </xsd:enumeration>
36
+ </xsd:restriction>
37
+ </xsd:simpleType>
38
+ <xsd:complexType name="Common.StringSequence">
39
+ <xsd:complexContent>
40
+ <xsd:restriction base='SOAP-ENC:Array'>
41
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
42
+ </xsd:restriction>
43
+ </xsd:complexContent>
44
+ </xsd:complexType>
45
+ <xsd:complexType name="Management.LDAPSearchScopeSequence">
46
+ <xsd:complexContent>
47
+ <xsd:restriction base='SOAP-ENC:Array'>
48
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.LDAPSearchScope[]'/>
49
+ </xsd:restriction>
50
+ </xsd:complexContent>
51
+ </xsd:complexType>
52
+ <xsd:complexType name="Common.ULongSequence">
53
+ <xsd:complexContent>
54
+ <xsd:restriction base='SOAP-ENC:Array'>
55
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
56
+ </xsd:restriction>
57
+ </xsd:complexContent>
58
+ </xsd:complexType>
59
+ <xsd:complexType name="Management.LDAPSSLOptionSequence">
60
+ <xsd:complexContent>
61
+ <xsd:restriction base='SOAP-ENC:Array'>
62
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.LDAPSSLOption[]'/>
63
+ </xsd:restriction>
64
+ </xsd:complexContent>
65
+ </xsd:complexType>
66
+ <xsd:simpleType name="Management.LDAPSSLOption">
67
+ <xsd:restriction base="xsd:string">
68
+ <xsd:enumeration value="LDAP_SSL_OPTION_NONE">
69
+ <xsd:annotation>
70
+ <xsd:documentation>LDAP_SSL_OPTION_NONE</xsd:documentation>
71
+ </xsd:annotation>
72
+ </xsd:enumeration>
73
+ <xsd:enumeration value="LDAP_SSL_OPTION_ON">
74
+ <xsd:annotation>
75
+ <xsd:documentation>LDAP_SSL_OPTION_ON</xsd:documentation>
76
+ </xsd:annotation>
77
+ </xsd:enumeration>
78
+ <xsd:enumeration value="LDAP_SSL_OPTION_UNKNOWN">
79
+ <xsd:annotation>
80
+ <xsd:documentation>LDAP_SSL_OPTION_UNKNOWN</xsd:documentation>
81
+ </xsd:annotation>
82
+ </xsd:enumeration>
83
+ </xsd:restriction>
84
+ </xsd:simpleType>
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:simpleType name="Management.LDAPSearchScope">
93
+ <xsd:restriction base="xsd:string">
94
+ <xsd:enumeration value="LDAP_SEARCH_SCOPE_BASE">
95
+ <xsd:annotation>
96
+ <xsd:documentation>LDAP_SEARCH_SCOPE_BASE</xsd:documentation>
97
+ </xsd:annotation>
98
+ </xsd:enumeration>
99
+ <xsd:enumeration value="LDAP_SEARCH_SCOPE_ONE_LEVEL">
100
+ <xsd:annotation>
101
+ <xsd:documentation>LDAP_SEARCH_SCOPE_ONE_LEVEL</xsd:documentation>
102
+ </xsd:annotation>
103
+ </xsd:enumeration>
104
+ <xsd:enumeration value="LDAP_SEARCH_SCOPE_SUBTREE">
105
+ <xsd:annotation>
106
+ <xsd:documentation>LDAP_SEARCH_SCOPE_SUBTREE</xsd:documentation>
107
+ </xsd:annotation>
108
+ </xsd:enumeration>
109
+ <xsd:enumeration value="LDAP_SEARCH_SCOPE_UNKNOWN">
110
+ <xsd:annotation>
111
+ <xsd:documentation>LDAP_SEARCH_SCOPE_UNKNOWN</xsd:documentation>
112
+ </xsd:annotation>
113
+ </xsd:enumeration>
114
+ </xsd:restriction>
115
+ </xsd:simpleType>
116
+ <xsd:complexType name="Common.EnabledStateSequence">
117
+ <xsd:complexContent>
118
+ <xsd:restriction base='SOAP-ENC:Array'>
119
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
120
+ </xsd:restriction>
121
+ </xsd:complexContent>
122
+ </xsd:complexType>
123
+ </xsd:schema>
124
+ </types>
125
+
126
+ <!-- message -->
127
+
128
+ <message name="Management.LDAPConfiguration.get_listRequest">
129
+ </message>
130
+ <message name="Management.LDAPConfiguration.get_listResponse">
131
+ <part name="return" type="tns:Common.StringSequence"/>
132
+ </message>
133
+
134
+ <message name="Management.LDAPConfiguration.createRequest">
135
+ <part name="config_names" type="tns:Common.StringSequence"/>
136
+ <part name="search_base_dns" type="tns:Common.StringSequence"/>
137
+ <part name="servers" type="tns:Common.StringSequenceSequence"/>
138
+ </message>
139
+ <message name="Management.LDAPConfiguration.createResponse">
140
+ </message>
141
+
142
+ <message name="Management.LDAPConfiguration.create_default_authentication_ldap_configurationRequest">
143
+ <part name="search_base_dn" type="xsd:string"/>
144
+ <part name="servers" type="tns:Common.StringSequence"/>
145
+ </message>
146
+ <message name="Management.LDAPConfiguration.create_default_authentication_ldap_configurationResponse">
147
+ </message>
148
+
149
+ <message name="Management.LDAPConfiguration.create_default_authentication_ad_configurationRequest">
150
+ <part name="search_base_dn" type="xsd:string"/>
151
+ <part name="servers" type="tns:Common.StringSequence"/>
152
+ </message>
153
+ <message name="Management.LDAPConfiguration.create_default_authentication_ad_configurationResponse">
154
+ </message>
155
+
156
+ <message name="Management.LDAPConfiguration.delete_configurationRequest">
157
+ <part name="config_names" type="tns:Common.StringSequence"/>
158
+ </message>
159
+ <message name="Management.LDAPConfiguration.delete_configurationResponse">
160
+ </message>
161
+
162
+ <message name="Management.LDAPConfiguration.delete_all_configurationsRequest">
163
+ </message>
164
+ <message name="Management.LDAPConfiguration.delete_all_configurationsResponse">
165
+ </message>
166
+
167
+ <message name="Management.LDAPConfiguration.set_debug_stateRequest">
168
+ <part name="config_names" type="tns:Common.StringSequence"/>
169
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
170
+ </message>
171
+ <message name="Management.LDAPConfiguration.set_debug_stateResponse">
172
+ </message>
173
+
174
+ <message name="Management.LDAPConfiguration.get_debug_stateRequest">
175
+ <part name="config_names" type="tns:Common.StringSequence"/>
176
+ </message>
177
+ <message name="Management.LDAPConfiguration.get_debug_stateResponse">
178
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
179
+ </message>
180
+
181
+ <message name="Management.LDAPConfiguration.set_ignore_unavailable_authentication_information_stateRequest">
182
+ <part name="config_names" type="tns:Common.StringSequence"/>
183
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
184
+ </message>
185
+ <message name="Management.LDAPConfiguration.set_ignore_unavailable_authentication_information_stateResponse">
186
+ </message>
187
+
188
+ <message name="Management.LDAPConfiguration.get_ignore_unavailable_authentication_information_stateRequest">
189
+ <part name="config_names" type="tns:Common.StringSequence"/>
190
+ </message>
191
+ <message name="Management.LDAPConfiguration.get_ignore_unavailable_authentication_information_stateResponse">
192
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
193
+ </message>
194
+
195
+ <message name="Management.LDAPConfiguration.set_warning_stateRequest">
196
+ <part name="config_names" type="tns:Common.StringSequence"/>
197
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
198
+ </message>
199
+ <message name="Management.LDAPConfiguration.set_warning_stateResponse">
200
+ </message>
201
+
202
+ <message name="Management.LDAPConfiguration.get_warning_stateRequest">
203
+ <part name="config_names" type="tns:Common.StringSequence"/>
204
+ </message>
205
+ <message name="Management.LDAPConfiguration.get_warning_stateResponse">
206
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
207
+ </message>
208
+
209
+ <message name="Management.LDAPConfiguration.set_portRequest">
210
+ <part name="config_names" type="tns:Common.StringSequence"/>
211
+ <part name="ports" type="tns:Common.ULongSequence"/>
212
+ </message>
213
+ <message name="Management.LDAPConfiguration.set_portResponse">
214
+ </message>
215
+
216
+ <message name="Management.LDAPConfiguration.get_portRequest">
217
+ <part name="config_names" type="tns:Common.StringSequence"/>
218
+ </message>
219
+ <message name="Management.LDAPConfiguration.get_portResponse">
220
+ <part name="return" type="tns:Common.ULongSequence"/>
221
+ </message>
222
+
223
+ <message name="Management.LDAPConfiguration.set_ldap_ssl_optionRequest">
224
+ <part name="config_names" type="tns:Common.StringSequence"/>
225
+ <part name="options" type="tns:Management.LDAPSSLOptionSequence"/>
226
+ </message>
227
+ <message name="Management.LDAPConfiguration.set_ldap_ssl_optionResponse">
228
+ </message>
229
+
230
+ <message name="Management.LDAPConfiguration.get_ldap_ssl_optionRequest">
231
+ <part name="config_names" type="tns:Common.StringSequence"/>
232
+ </message>
233
+ <message name="Management.LDAPConfiguration.get_ldap_ssl_optionResponse">
234
+ <part name="return" type="tns:Management.LDAPSSLOptionSequence"/>
235
+ </message>
236
+
237
+ <message name="Management.LDAPConfiguration.set_ssl_check_peer_stateRequest">
238
+ <part name="config_names" type="tns:Common.StringSequence"/>
239
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
240
+ </message>
241
+ <message name="Management.LDAPConfiguration.set_ssl_check_peer_stateResponse">
242
+ </message>
243
+
244
+ <message name="Management.LDAPConfiguration.get_ssl_check_peer_stateRequest">
245
+ <part name="config_names" type="tns:Common.StringSequence"/>
246
+ </message>
247
+ <message name="Management.LDAPConfiguration.get_ssl_check_peer_stateResponse">
248
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
249
+ </message>
250
+
251
+ <message name="Management.LDAPConfiguration.set_ssl_ca_certificate_fileRequest">
252
+ <part name="config_names" type="tns:Common.StringSequence"/>
253
+ <part name="ca_cert_files" type="tns:Common.StringSequence"/>
254
+ </message>
255
+ <message name="Management.LDAPConfiguration.set_ssl_ca_certificate_fileResponse">
256
+ </message>
257
+
258
+ <message name="Management.LDAPConfiguration.get_ssl_ca_certificate_fileRequest">
259
+ <part name="config_names" type="tns:Common.StringSequence"/>
260
+ </message>
261
+ <message name="Management.LDAPConfiguration.get_ssl_ca_certificate_fileResponse">
262
+ <part name="return" type="tns:Common.StringSequence"/>
263
+ </message>
264
+
265
+ <message name="Management.LDAPConfiguration.set_ssl_ca_certificate_file_v2Request">
266
+ <part name="config_names" type="tns:Common.StringSequence"/>
267
+ <part name="ca_cert_files" type="tns:Common.StringSequence"/>
268
+ </message>
269
+ <message name="Management.LDAPConfiguration.set_ssl_ca_certificate_file_v2Response">
270
+ </message>
271
+
272
+ <message name="Management.LDAPConfiguration.get_ssl_ca_certificate_file_v2Request">
273
+ <part name="config_names" type="tns:Common.StringSequence"/>
274
+ </message>
275
+ <message name="Management.LDAPConfiguration.get_ssl_ca_certificate_file_v2Response">
276
+ <part name="return" type="tns:Common.StringSequence"/>
277
+ </message>
278
+
279
+ <message name="Management.LDAPConfiguration.set_ssl_cipherRequest">
280
+ <part name="config_names" type="tns:Common.StringSequence"/>
281
+ <part name="ciphers" type="tns:Common.StringSequenceSequence"/>
282
+ </message>
283
+ <message name="Management.LDAPConfiguration.set_ssl_cipherResponse">
284
+ </message>
285
+
286
+ <message name="Management.LDAPConfiguration.get_ssl_cipherRequest">
287
+ <part name="config_names" type="tns:Common.StringSequence"/>
288
+ </message>
289
+ <message name="Management.LDAPConfiguration.get_ssl_cipherResponse">
290
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
291
+ </message>
292
+
293
+ <message name="Management.LDAPConfiguration.set_ssl_client_keyRequest">
294
+ <part name="config_names" type="tns:Common.StringSequence"/>
295
+ <part name="keys" type="tns:Common.StringSequence"/>
296
+ </message>
297
+ <message name="Management.LDAPConfiguration.set_ssl_client_keyResponse">
298
+ </message>
299
+
300
+ <message name="Management.LDAPConfiguration.get_ssl_client_keyRequest">
301
+ <part name="config_names" type="tns:Common.StringSequence"/>
302
+ </message>
303
+ <message name="Management.LDAPConfiguration.get_ssl_client_keyResponse">
304
+ <part name="return" type="tns:Common.StringSequence"/>
305
+ </message>
306
+
307
+ <message name="Management.LDAPConfiguration.set_ssl_client_key_v2Request">
308
+ <part name="config_names" type="tns:Common.StringSequence"/>
309
+ <part name="keys" type="tns:Common.StringSequence"/>
310
+ </message>
311
+ <message name="Management.LDAPConfiguration.set_ssl_client_key_v2Response">
312
+ </message>
313
+
314
+ <message name="Management.LDAPConfiguration.get_ssl_client_key_v2Request">
315
+ <part name="config_names" type="tns:Common.StringSequence"/>
316
+ </message>
317
+ <message name="Management.LDAPConfiguration.get_ssl_client_key_v2Response">
318
+ <part name="return" type="tns:Common.StringSequence"/>
319
+ </message>
320
+
321
+ <message name="Management.LDAPConfiguration.set_ssl_client_certificateRequest">
322
+ <part name="config_names" type="tns:Common.StringSequence"/>
323
+ <part name="certificates" type="tns:Common.StringSequence"/>
324
+ </message>
325
+ <message name="Management.LDAPConfiguration.set_ssl_client_certificateResponse">
326
+ </message>
327
+
328
+ <message name="Management.LDAPConfiguration.get_ssl_client_certificateRequest">
329
+ <part name="config_names" type="tns:Common.StringSequence"/>
330
+ </message>
331
+ <message name="Management.LDAPConfiguration.get_ssl_client_certificateResponse">
332
+ <part name="return" type="tns:Common.StringSequence"/>
333
+ </message>
334
+
335
+ <message name="Management.LDAPConfiguration.set_ssl_client_certificate_v2Request">
336
+ <part name="config_names" type="tns:Common.StringSequence"/>
337
+ <part name="certificates" type="tns:Common.StringSequence"/>
338
+ </message>
339
+ <message name="Management.LDAPConfiguration.set_ssl_client_certificate_v2Response">
340
+ </message>
341
+
342
+ <message name="Management.LDAPConfiguration.get_ssl_client_certificate_v2Request">
343
+ <part name="config_names" type="tns:Common.StringSequence"/>
344
+ </message>
345
+ <message name="Management.LDAPConfiguration.get_ssl_client_certificate_v2Response">
346
+ <part name="return" type="tns:Common.StringSequence"/>
347
+ </message>
348
+
349
+ <message name="Management.LDAPConfiguration.set_search_base_distinguished_nameRequest">
350
+ <part name="config_names" type="tns:Common.StringSequence"/>
351
+ <part name="search_base_dns" type="tns:Common.StringSequence"/>
352
+ </message>
353
+ <message name="Management.LDAPConfiguration.set_search_base_distinguished_nameResponse">
354
+ </message>
355
+
356
+ <message name="Management.LDAPConfiguration.get_search_base_distinguished_nameRequest">
357
+ <part name="config_names" type="tns:Common.StringSequence"/>
358
+ </message>
359
+ <message name="Management.LDAPConfiguration.get_search_base_distinguished_nameResponse">
360
+ <part name="return" type="tns:Common.StringSequence"/>
361
+ </message>
362
+
363
+ <message name="Management.LDAPConfiguration.set_ldap_versionRequest">
364
+ <part name="config_names" type="tns:Common.StringSequence"/>
365
+ <part name="versions" type="tns:Common.ULongSequence"/>
366
+ </message>
367
+ <message name="Management.LDAPConfiguration.set_ldap_versionResponse">
368
+ </message>
369
+
370
+ <message name="Management.LDAPConfiguration.get_ldap_versionRequest">
371
+ <part name="config_names" type="tns:Common.StringSequence"/>
372
+ </message>
373
+ <message name="Management.LDAPConfiguration.get_ldap_versionResponse">
374
+ <part name="return" type="tns:Common.ULongSequence"/>
375
+ </message>
376
+
377
+ <message name="Management.LDAPConfiguration.set_bind_distinguished_nameRequest">
378
+ <part name="config_names" type="tns:Common.StringSequence"/>
379
+ <part name="bind_dns" type="tns:Common.StringSequence"/>
380
+ </message>
381
+ <message name="Management.LDAPConfiguration.set_bind_distinguished_nameResponse">
382
+ </message>
383
+
384
+ <message name="Management.LDAPConfiguration.get_bind_distinguished_nameRequest">
385
+ <part name="config_names" type="tns:Common.StringSequence"/>
386
+ </message>
387
+ <message name="Management.LDAPConfiguration.get_bind_distinguished_nameResponse">
388
+ <part name="return" type="tns:Common.StringSequence"/>
389
+ </message>
390
+
391
+ <message name="Management.LDAPConfiguration.set_bind_passwordRequest">
392
+ <part name="config_names" type="tns:Common.StringSequence"/>
393
+ <part name="bind_passwords" type="tns:Common.StringSequence"/>
394
+ </message>
395
+ <message name="Management.LDAPConfiguration.set_bind_passwordResponse">
396
+ </message>
397
+
398
+ <message name="Management.LDAPConfiguration.get_bind_passwordRequest">
399
+ <part name="config_names" type="tns:Common.StringSequence"/>
400
+ </message>
401
+ <message name="Management.LDAPConfiguration.get_bind_passwordResponse">
402
+ <part name="return" type="tns:Common.StringSequence"/>
403
+ </message>
404
+
405
+ <message name="Management.LDAPConfiguration.set_search_scopeRequest">
406
+ <part name="config_names" type="tns:Common.StringSequence"/>
407
+ <part name="search_scopes" type="tns:Management.LDAPSearchScopeSequence"/>
408
+ </message>
409
+ <message name="Management.LDAPConfiguration.set_search_scopeResponse">
410
+ </message>
411
+
412
+ <message name="Management.LDAPConfiguration.get_search_scopeRequest">
413
+ <part name="config_names" type="tns:Common.StringSequence"/>
414
+ </message>
415
+ <message name="Management.LDAPConfiguration.get_search_scopeResponse">
416
+ <part name="return" type="tns:Management.LDAPSearchScopeSequence"/>
417
+ </message>
418
+
419
+ <message name="Management.LDAPConfiguration.set_search_time_limitRequest">
420
+ <part name="config_names" type="tns:Common.StringSequence"/>
421
+ <part name="time_limits" type="tns:Common.ULongSequence"/>
422
+ </message>
423
+ <message name="Management.LDAPConfiguration.set_search_time_limitResponse">
424
+ </message>
425
+
426
+ <message name="Management.LDAPConfiguration.get_search_time_limitRequest">
427
+ <part name="config_names" type="tns:Common.StringSequence"/>
428
+ </message>
429
+ <message name="Management.LDAPConfiguration.get_search_time_limitResponse">
430
+ <part name="return" type="tns:Common.ULongSequence"/>
431
+ </message>
432
+
433
+ <message name="Management.LDAPConfiguration.set_bind_time_limitRequest">
434
+ <part name="config_names" type="tns:Common.StringSequence"/>
435
+ <part name="time_limits" type="tns:Common.ULongSequence"/>
436
+ </message>
437
+ <message name="Management.LDAPConfiguration.set_bind_time_limitResponse">
438
+ </message>
439
+
440
+ <message name="Management.LDAPConfiguration.get_bind_time_limitRequest">
441
+ <part name="config_names" type="tns:Common.StringSequence"/>
442
+ </message>
443
+ <message name="Management.LDAPConfiguration.get_bind_time_limitResponse">
444
+ <part name="return" type="tns:Common.ULongSequence"/>
445
+ </message>
446
+
447
+ <message name="Management.LDAPConfiguration.set_idle_time_limitRequest">
448
+ <part name="config_names" type="tns:Common.StringSequence"/>
449
+ <part name="time_limits" type="tns:Common.ULongSequence"/>
450
+ </message>
451
+ <message name="Management.LDAPConfiguration.set_idle_time_limitResponse">
452
+ </message>
453
+
454
+ <message name="Management.LDAPConfiguration.get_idle_time_limitRequest">
455
+ <part name="config_names" type="tns:Common.StringSequence"/>
456
+ </message>
457
+ <message name="Management.LDAPConfiguration.get_idle_time_limitResponse">
458
+ <part name="return" type="tns:Common.ULongSequence"/>
459
+ </message>
460
+
461
+ <message name="Management.LDAPConfiguration.set_filterRequest">
462
+ <part name="config_names" type="tns:Common.StringSequence"/>
463
+ <part name="filters" type="tns:Common.StringSequence"/>
464
+ </message>
465
+ <message name="Management.LDAPConfiguration.set_filterResponse">
466
+ </message>
467
+
468
+ <message name="Management.LDAPConfiguration.get_filterRequest">
469
+ <part name="config_names" type="tns:Common.StringSequence"/>
470
+ </message>
471
+ <message name="Management.LDAPConfiguration.get_filterResponse">
472
+ <part name="return" type="tns:Common.StringSequence"/>
473
+ </message>
474
+
475
+ <message name="Management.LDAPConfiguration.set_check_host_attribute_stateRequest">
476
+ <part name="config_names" type="tns:Common.StringSequence"/>
477
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
478
+ </message>
479
+ <message name="Management.LDAPConfiguration.set_check_host_attribute_stateResponse">
480
+ </message>
481
+
482
+ <message name="Management.LDAPConfiguration.get_check_host_attribute_stateRequest">
483
+ <part name="config_names" type="tns:Common.StringSequence"/>
484
+ </message>
485
+ <message name="Management.LDAPConfiguration.get_check_host_attribute_stateResponse">
486
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
487
+ </message>
488
+
489
+ <message name="Management.LDAPConfiguration.set_check_roles_group_stateRequest">
490
+ <part name="config_names" type="tns:Common.StringSequence"/>
491
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
492
+ </message>
493
+ <message name="Management.LDAPConfiguration.set_check_roles_group_stateResponse">
494
+ </message>
495
+
496
+ <message name="Management.LDAPConfiguration.get_check_roles_group_stateRequest">
497
+ <part name="config_names" type="tns:Common.StringSequence"/>
498
+ </message>
499
+ <message name="Management.LDAPConfiguration.get_check_roles_group_stateResponse">
500
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
501
+ </message>
502
+
503
+ <message name="Management.LDAPConfiguration.set_group_distinguished_nameRequest">
504
+ <part name="config_names" type="tns:Common.StringSequence"/>
505
+ <part name="group_dns" type="tns:Common.StringSequence"/>
506
+ </message>
507
+ <message name="Management.LDAPConfiguration.set_group_distinguished_nameResponse">
508
+ </message>
509
+
510
+ <message name="Management.LDAPConfiguration.get_group_distinguished_nameRequest">
511
+ <part name="config_names" type="tns:Common.StringSequence"/>
512
+ </message>
513
+ <message name="Management.LDAPConfiguration.get_group_distinguished_nameResponse">
514
+ <part name="return" type="tns:Common.StringSequence"/>
515
+ </message>
516
+
517
+ <message name="Management.LDAPConfiguration.set_group_member_attributeRequest">
518
+ <part name="config_names" type="tns:Common.StringSequence"/>
519
+ <part name="member_attrs" type="tns:Common.StringSequence"/>
520
+ </message>
521
+ <message name="Management.LDAPConfiguration.set_group_member_attributeResponse">
522
+ </message>
523
+
524
+ <message name="Management.LDAPConfiguration.get_group_member_attributeRequest">
525
+ <part name="config_names" type="tns:Common.StringSequence"/>
526
+ </message>
527
+ <message name="Management.LDAPConfiguration.get_group_member_attributeResponse">
528
+ <part name="return" type="tns:Common.StringSequence"/>
529
+ </message>
530
+
531
+ <message name="Management.LDAPConfiguration.set_login_attributeRequest">
532
+ <part name="config_names" type="tns:Common.StringSequence"/>
533
+ <part name="login_attributes" type="tns:Common.StringSequence"/>
534
+ </message>
535
+ <message name="Management.LDAPConfiguration.set_login_attributeResponse">
536
+ </message>
537
+
538
+ <message name="Management.LDAPConfiguration.get_login_attributeRequest">
539
+ <part name="config_names" type="tns:Common.StringSequence"/>
540
+ </message>
541
+ <message name="Management.LDAPConfiguration.get_login_attributeResponse">
542
+ <part name="return" type="tns:Common.StringSequence"/>
543
+ </message>
544
+
545
+ <message name="Management.LDAPConfiguration.get_serverRequest">
546
+ <part name="config_names" type="tns:Common.StringSequence"/>
547
+ </message>
548
+ <message name="Management.LDAPConfiguration.get_serverResponse">
549
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
550
+ </message>
551
+
552
+ <message name="Management.LDAPConfiguration.add_serverRequest">
553
+ <part name="config_names" type="tns:Common.StringSequence"/>
554
+ <part name="servers" type="tns:Common.StringSequenceSequence"/>
555
+ </message>
556
+ <message name="Management.LDAPConfiguration.add_serverResponse">
557
+ </message>
558
+
559
+ <message name="Management.LDAPConfiguration.remove_serverRequest">
560
+ <part name="config_names" type="tns:Common.StringSequence"/>
561
+ <part name="servers" type="tns:Common.StringSequenceSequence"/>
562
+ </message>
563
+ <message name="Management.LDAPConfiguration.remove_serverResponse">
564
+ </message>
565
+
566
+ <message name="Management.LDAPConfiguration.set_user_templateRequest">
567
+ <part name="config_names" type="tns:Common.StringSequence"/>
568
+ <part name="templates" type="tns:Common.StringSequence"/>
569
+ </message>
570
+ <message name="Management.LDAPConfiguration.set_user_templateResponse">
571
+ </message>
572
+
573
+ <message name="Management.LDAPConfiguration.get_user_templateRequest">
574
+ <part name="config_names" type="tns:Common.StringSequence"/>
575
+ </message>
576
+ <message name="Management.LDAPConfiguration.get_user_templateResponse">
577
+ <part name="return" type="tns:Common.StringSequence"/>
578
+ </message>
579
+
580
+ <message name="Management.LDAPConfiguration.set_descriptionRequest">
581
+ <part name="config_names" type="tns:Common.StringSequence"/>
582
+ <part name="descriptions" type="tns:Common.StringSequence"/>
583
+ </message>
584
+ <message name="Management.LDAPConfiguration.set_descriptionResponse">
585
+ </message>
586
+
587
+ <message name="Management.LDAPConfiguration.get_descriptionRequest">
588
+ <part name="config_names" type="tns:Common.StringSequence"/>
589
+ </message>
590
+ <message name="Management.LDAPConfiguration.get_descriptionResponse">
591
+ <part name="return" type="tns:Common.StringSequence"/>
592
+ </message>
593
+
594
+ <message name="Management.LDAPConfiguration.get_versionRequest">
595
+ </message>
596
+ <message name="Management.LDAPConfiguration.get_versionResponse">
597
+ <part name="return" type="xsd:string"/>
598
+ </message>
599
+
600
+ <!-- portType -->
601
+
602
+ <portType name="Management.LDAPConfigurationPortType">
603
+ <operation name="get_list">
604
+ <documentation>
605
+ Gets a list of all LDAP configurations.
606
+
607
+ </documentation>
608
+ <input message="tns:Management.LDAPConfiguration.get_listRequest"/>
609
+ <output message="tns:Management.LDAPConfiguration.get_listResponse"/>
610
+ </operation>
611
+ <operation name="create">
612
+ <documentation>
613
+ Creates the specified LDAP configurations.
614
+
615
+ </documentation>
616
+ <input message="tns:Management.LDAPConfiguration.createRequest"/>
617
+ <output message="tns:Management.LDAPConfiguration.createResponse"/>
618
+ </operation>
619
+ <operation name="create_default_authentication_ldap_configuration">
620
+ <documentation>
621
+ Creates the default authentication LDAP configuration.
622
+
623
+ </documentation>
624
+ <input message="tns:Management.LDAPConfiguration.create_default_authentication_ldap_configurationRequest"/>
625
+ <output message="tns:Management.LDAPConfiguration.create_default_authentication_ldap_configurationResponse"/>
626
+ </operation>
627
+ <operation name="create_default_authentication_ad_configuration">
628
+ <documentation>
629
+ Creates the default authentication Active Directory configuration.
630
+
631
+ </documentation>
632
+ <input message="tns:Management.LDAPConfiguration.create_default_authentication_ad_configurationRequest"/>
633
+ <output message="tns:Management.LDAPConfiguration.create_default_authentication_ad_configurationResponse"/>
634
+ </operation>
635
+ <operation name="delete_configuration">
636
+ <documentation>
637
+ Deletes the specified LDAP configurations.
638
+
639
+ </documentation>
640
+ <input message="tns:Management.LDAPConfiguration.delete_configurationRequest"/>
641
+ <output message="tns:Management.LDAPConfiguration.delete_configurationResponse"/>
642
+ </operation>
643
+ <operation name="delete_all_configurations">
644
+ <documentation>
645
+ Deletes all LDAP configurations.
646
+
647
+ </documentation>
648
+ <input message="tns:Management.LDAPConfiguration.delete_all_configurationsRequest"/>
649
+ <output message="tns:Management.LDAPConfiguration.delete_all_configurationsResponse"/>
650
+ </operation>
651
+ <operation name="set_debug_state">
652
+ <documentation>
653
+ Sets the states indicating whether syslog debugging is enabled/disabled.
654
+
655
+ </documentation>
656
+ <input message="tns:Management.LDAPConfiguration.set_debug_stateRequest"/>
657
+ <output message="tns:Management.LDAPConfiguration.set_debug_stateResponse"/>
658
+ </operation>
659
+ <operation name="get_debug_state">
660
+ <documentation>
661
+ Gets the states indicating whether syslog debugging is enabled/disabled.
662
+
663
+ </documentation>
664
+ <input message="tns:Management.LDAPConfiguration.get_debug_stateRequest"/>
665
+ <output message="tns:Management.LDAPConfiguration.get_debug_stateResponse"/>
666
+ </operation>
667
+ <operation name="set_ignore_unavailable_authentication_information_state">
668
+ <documentation>
669
+ Sets the states indicating whether to ignore errors when authentication information is unavailable.
670
+
671
+ </documentation>
672
+ <input message="tns:Management.LDAPConfiguration.set_ignore_unavailable_authentication_information_stateRequest"/>
673
+ <output message="tns:Management.LDAPConfiguration.set_ignore_unavailable_authentication_information_stateResponse"/>
674
+ </operation>
675
+ <operation name="get_ignore_unavailable_authentication_information_state">
676
+ <documentation>
677
+ Gets the states indicating whether to ignore errors when authentication information is unavailable.
678
+
679
+ </documentation>
680
+ <input message="tns:Management.LDAPConfiguration.get_ignore_unavailable_authentication_information_stateRequest"/>
681
+ <output message="tns:Management.LDAPConfiguration.get_ignore_unavailable_authentication_information_stateResponse"/>
682
+ </operation>
683
+ <operation name="set_warning_state">
684
+ <documentation>
685
+ Sets the states indicating whether to enabled/disable warning messages.
686
+
687
+ </documentation>
688
+ <input message="tns:Management.LDAPConfiguration.set_warning_stateRequest"/>
689
+ <output message="tns:Management.LDAPConfiguration.set_warning_stateResponse"/>
690
+ </operation>
691
+ <operation name="get_warning_state">
692
+ <documentation>
693
+ Gets the states indicating whether to enabled/disable warning messages.
694
+
695
+ </documentation>
696
+ <input message="tns:Management.LDAPConfiguration.get_warning_stateRequest"/>
697
+ <output message="tns:Management.LDAPConfiguration.get_warning_stateResponse"/>
698
+ </operation>
699
+ <operation name="set_port">
700
+ <documentation>
701
+ Sets the ports used by the LDAP servers to listen for requests.
702
+
703
+ </documentation>
704
+ <input message="tns:Management.LDAPConfiguration.set_portRequest"/>
705
+ <output message="tns:Management.LDAPConfiguration.set_portResponse"/>
706
+ </operation>
707
+ <operation name="get_port">
708
+ <documentation>
709
+ Gets the ports used by the LDAP servers to listen for requests.
710
+
711
+ </documentation>
712
+ <input message="tns:Management.LDAPConfiguration.get_portRequest"/>
713
+ <output message="tns:Management.LDAPConfiguration.get_portResponse"/>
714
+ </operation>
715
+ <operation name="set_ldap_ssl_option">
716
+ <documentation>
717
+ Sets the LDAP SSL options used by the LDAP configurations.
718
+
719
+ </documentation>
720
+ <input message="tns:Management.LDAPConfiguration.set_ldap_ssl_optionRequest"/>
721
+ <output message="tns:Management.LDAPConfiguration.set_ldap_ssl_optionResponse"/>
722
+ </operation>
723
+ <operation name="get_ldap_ssl_option">
724
+ <documentation>
725
+ Gets the LDAP SSL options used by the LDAP configurations.
726
+
727
+ </documentation>
728
+ <input message="tns:Management.LDAPConfiguration.get_ldap_ssl_optionRequest"/>
729
+ <output message="tns:Management.LDAPConfiguration.get_ldap_ssl_optionResponse"/>
730
+ </operation>
731
+ <operation name="set_ssl_check_peer_state">
732
+ <documentation>
733
+ Sets the states indicating whether to require and verify server certificate.
734
+
735
+ </documentation>
736
+ <input message="tns:Management.LDAPConfiguration.set_ssl_check_peer_stateRequest"/>
737
+ <output message="tns:Management.LDAPConfiguration.set_ssl_check_peer_stateResponse"/>
738
+ </operation>
739
+ <operation name="get_ssl_check_peer_state">
740
+ <documentation>
741
+ Gets the states indicating whether to require and verify server certificate.
742
+
743
+ </documentation>
744
+ <input message="tns:Management.LDAPConfiguration.get_ssl_check_peer_stateRequest"/>
745
+ <output message="tns:Management.LDAPConfiguration.get_ssl_check_peer_stateResponse"/>
746
+ </operation>
747
+ <operation name="set_ssl_ca_certificate_file">
748
+ <documentation>
749
+ This method has been deprecated due to the switch to use file
750
+ objects. See set_ssl_ca_certificate_file_v2.
751
+
752
+ Sets the CA certificates used in server certificate verification.
753
+
754
+ </documentation>
755
+ <input message="tns:Management.LDAPConfiguration.set_ssl_ca_certificate_fileRequest"/>
756
+ <output message="tns:Management.LDAPConfiguration.set_ssl_ca_certificate_fileResponse"/>
757
+ </operation>
758
+ <operation name="get_ssl_ca_certificate_file">
759
+ <documentation>
760
+ This method has been deprecated due to the switch to use file
761
+ objects. See get_ssl_ca_certificate_file_v2.
762
+
763
+ Gets the CA certificates used in server certificate verification.
764
+
765
+ </documentation>
766
+ <input message="tns:Management.LDAPConfiguration.get_ssl_ca_certificate_fileRequest"/>
767
+ <output message="tns:Management.LDAPConfiguration.get_ssl_ca_certificate_fileResponse"/>
768
+ </operation>
769
+ <operation name="set_ssl_ca_certificate_file_v2">
770
+ <documentation>
771
+ Sets the CA certificate file objects used in server certificate
772
+ verification for a set of LDAP authentication configurations.
773
+
774
+ See the Management::KeyCertificate interface for certificate file
775
+ object management.
776
+
777
+ </documentation>
778
+ <input message="tns:Management.LDAPConfiguration.set_ssl_ca_certificate_file_v2Request"/>
779
+ <output message="tns:Management.LDAPConfiguration.set_ssl_ca_certificate_file_v2Response"/>
780
+ </operation>
781
+ <operation name="get_ssl_ca_certificate_file_v2">
782
+ <documentation>
783
+ Gets the CA certificate file object names used in server
784
+ certificate verification for a set of LDAP authentication
785
+ configurations.
786
+
787
+ See the Management::KeyCertificate interface for certificate file
788
+ object management.
789
+
790
+ </documentation>
791
+ <input message="tns:Management.LDAPConfiguration.get_ssl_ca_certificate_file_v2Request"/>
792
+ <output message="tns:Management.LDAPConfiguration.get_ssl_ca_certificate_file_v2Response"/>
793
+ </operation>
794
+ <operation name="set_ssl_cipher">
795
+ <documentation>
796
+ Sets the SSL cipher suite used by the LDAP configurations.
797
+
798
+ </documentation>
799
+ <input message="tns:Management.LDAPConfiguration.set_ssl_cipherRequest"/>
800
+ <output message="tns:Management.LDAPConfiguration.set_ssl_cipherResponse"/>
801
+ </operation>
802
+ <operation name="get_ssl_cipher">
803
+ <documentation>
804
+ Gets the SSL cipher suite used by the LDAP configurations.
805
+
806
+ </documentation>
807
+ <input message="tns:Management.LDAPConfiguration.get_ssl_cipherRequest"/>
808
+ <output message="tns:Management.LDAPConfiguration.get_ssl_cipherResponse"/>
809
+ </operation>
810
+ <operation name="set_ssl_client_key">
811
+ <documentation>
812
+ This method has been deprecated due to the switch to use file
813
+ objects. See set_ssl_client_key_v2.
814
+
815
+ Sets the client keys used by the LDAP configurations.
816
+
817
+ </documentation>
818
+ <input message="tns:Management.LDAPConfiguration.set_ssl_client_keyRequest"/>
819
+ <output message="tns:Management.LDAPConfiguration.set_ssl_client_keyResponse"/>
820
+ </operation>
821
+ <operation name="get_ssl_client_key">
822
+ <documentation>
823
+ This method has been deprecated due to the switch to use file
824
+ objects. See get_ssl_client_key_v2.
825
+
826
+ Gets the client keys used by the LDAP configurations.
827
+
828
+ </documentation>
829
+ <input message="tns:Management.LDAPConfiguration.get_ssl_client_keyRequest"/>
830
+ <output message="tns:Management.LDAPConfiguration.get_ssl_client_keyResponse"/>
831
+ </operation>
832
+ <operation name="set_ssl_client_key_v2">
833
+ <documentation>
834
+ Sets the client key file objects used by a set of LDAP
835
+ authentication configurations.
836
+
837
+ See the Management::KeyCertificate interface for certificate file
838
+ object management.
839
+
840
+ </documentation>
841
+ <input message="tns:Management.LDAPConfiguration.set_ssl_client_key_v2Request"/>
842
+ <output message="tns:Management.LDAPConfiguration.set_ssl_client_key_v2Response"/>
843
+ </operation>
844
+ <operation name="get_ssl_client_key_v2">
845
+ <documentation>
846
+ Gets the client key file objects used by a set of LDAP
847
+ authentication configurations.
848
+
849
+ See the Management::KeyCertificate interface for certificate file
850
+ object management.
851
+
852
+ </documentation>
853
+ <input message="tns:Management.LDAPConfiguration.get_ssl_client_key_v2Request"/>
854
+ <output message="tns:Management.LDAPConfiguration.get_ssl_client_key_v2Response"/>
855
+ </operation>
856
+ <operation name="set_ssl_client_certificate">
857
+ <documentation>
858
+ This method has been deprecated due to the switch to use file
859
+ objects. See set_ssl_client_certificate_v2.
860
+
861
+ Sets the client certificates used by the LDAP configurations.
862
+
863
+ </documentation>
864
+ <input message="tns:Management.LDAPConfiguration.set_ssl_client_certificateRequest"/>
865
+ <output message="tns:Management.LDAPConfiguration.set_ssl_client_certificateResponse"/>
866
+ </operation>
867
+ <operation name="get_ssl_client_certificate">
868
+ <documentation>
869
+ This method has been deprecated due to the switch to use file
870
+ objects. See get_ssl_client_certificate_v2.
871
+
872
+ Gets the client certificates used by the LDAP configurations.
873
+
874
+ </documentation>
875
+ <input message="tns:Management.LDAPConfiguration.get_ssl_client_certificateRequest"/>
876
+ <output message="tns:Management.LDAPConfiguration.get_ssl_client_certificateResponse"/>
877
+ </operation>
878
+ <operation name="set_ssl_client_certificate_v2">
879
+ <documentation>
880
+ Sets the client certificate file objects used by a set of LDAP
881
+ authentication configurations.
882
+
883
+ See the Management::KeyCertificate interface for certificate file
884
+ object management.
885
+
886
+ </documentation>
887
+ <input message="tns:Management.LDAPConfiguration.set_ssl_client_certificate_v2Request"/>
888
+ <output message="tns:Management.LDAPConfiguration.set_ssl_client_certificate_v2Response"/>
889
+ </operation>
890
+ <operation name="get_ssl_client_certificate_v2">
891
+ <documentation>
892
+ Gets the client certificate file objects used by a set of LDAP
893
+ authentication configurations.
894
+
895
+ See the Management::KeyCertificate interface for certificate file
896
+ object management.
897
+
898
+ </documentation>
899
+ <input message="tns:Management.LDAPConfiguration.get_ssl_client_certificate_v2Request"/>
900
+ <output message="tns:Management.LDAPConfiguration.get_ssl_client_certificate_v2Response"/>
901
+ </operation>
902
+ <operation name="set_search_base_distinguished_name">
903
+ <documentation>
904
+ Sets the distinguished names of the search bases used by the LDAP configurations.
905
+
906
+ </documentation>
907
+ <input message="tns:Management.LDAPConfiguration.set_search_base_distinguished_nameRequest"/>
908
+ <output message="tns:Management.LDAPConfiguration.set_search_base_distinguished_nameResponse"/>
909
+ </operation>
910
+ <operation name="get_search_base_distinguished_name">
911
+ <documentation>
912
+ Gets the distinguished names of the search bases used by the LDAP configurations.
913
+
914
+ </documentation>
915
+ <input message="tns:Management.LDAPConfiguration.get_search_base_distinguished_nameRequest"/>
916
+ <output message="tns:Management.LDAPConfiguration.get_search_base_distinguished_nameResponse"/>
917
+ </operation>
918
+ <operation name="set_ldap_version">
919
+ <documentation>
920
+ Sets the LDAP versions to use by the LDAP configurations.
921
+
922
+ </documentation>
923
+ <input message="tns:Management.LDAPConfiguration.set_ldap_versionRequest"/>
924
+ <output message="tns:Management.LDAPConfiguration.set_ldap_versionResponse"/>
925
+ </operation>
926
+ <operation name="get_ldap_version">
927
+ <documentation>
928
+ Gets the LDAP versions to use by the LDAP configurations.
929
+
930
+ </documentation>
931
+ <input message="tns:Management.LDAPConfiguration.get_ldap_versionRequest"/>
932
+ <output message="tns:Management.LDAPConfiguration.get_ldap_versionResponse"/>
933
+ </operation>
934
+ <operation name="set_bind_distinguished_name">
935
+ <documentation>
936
+ Sets the distinguished names used to bind to the servers. Default is to bind anonymously.
937
+
938
+ </documentation>
939
+ <input message="tns:Management.LDAPConfiguration.set_bind_distinguished_nameRequest"/>
940
+ <output message="tns:Management.LDAPConfiguration.set_bind_distinguished_nameResponse"/>
941
+ </operation>
942
+ <operation name="get_bind_distinguished_name">
943
+ <documentation>
944
+ Gets the distinguished names used to bind to the servers. Default is to bind anonymously.
945
+
946
+ </documentation>
947
+ <input message="tns:Management.LDAPConfiguration.get_bind_distinguished_nameRequest"/>
948
+ <output message="tns:Management.LDAPConfiguration.get_bind_distinguished_nameResponse"/>
949
+ </operation>
950
+ <operation name="set_bind_password">
951
+ <documentation>
952
+ Sets the credentials used to bind to the servers. Default is to bind with no credentials.
953
+
954
+ </documentation>
955
+ <input message="tns:Management.LDAPConfiguration.set_bind_passwordRequest"/>
956
+ <output message="tns:Management.LDAPConfiguration.set_bind_passwordResponse"/>
957
+ </operation>
958
+ <operation name="get_bind_password">
959
+ <documentation>
960
+ Gets the credentials used to bind to the servers. Default is to bind with no credentials.
961
+
962
+ </documentation>
963
+ <input message="tns:Management.LDAPConfiguration.get_bind_passwordRequest"/>
964
+ <output message="tns:Management.LDAPConfiguration.get_bind_passwordResponse"/>
965
+ </operation>
966
+ <operation name="set_search_scope">
967
+ <documentation>
968
+ Sets the search scopes used by the LDAP configurations.
969
+
970
+ </documentation>
971
+ <input message="tns:Management.LDAPConfiguration.set_search_scopeRequest"/>
972
+ <output message="tns:Management.LDAPConfiguration.set_search_scopeResponse"/>
973
+ </operation>
974
+ <operation name="get_search_scope">
975
+ <documentation>
976
+ Gets the search scopes used by the LDAP configurations.
977
+
978
+ </documentation>
979
+ <input message="tns:Management.LDAPConfiguration.get_search_scopeRequest"/>
980
+ <output message="tns:Management.LDAPConfiguration.get_search_scopeResponse"/>
981
+ </operation>
982
+ <operation name="set_search_time_limit">
983
+ <documentation>
984
+ Sets the search time limits in seconds. This is the time to wait for the search to complete.
985
+
986
+ </documentation>
987
+ <input message="tns:Management.LDAPConfiguration.set_search_time_limitRequest"/>
988
+ <output message="tns:Management.LDAPConfiguration.set_search_time_limitResponse"/>
989
+ </operation>
990
+ <operation name="get_search_time_limit">
991
+ <documentation>
992
+ Gets the search time limits in seconds. This is the time to wait for the search to complete.
993
+
994
+ </documentation>
995
+ <input message="tns:Management.LDAPConfiguration.get_search_time_limitRequest"/>
996
+ <output message="tns:Management.LDAPConfiguration.get_search_time_limitResponse"/>
997
+ </operation>
998
+ <operation name="set_bind_time_limit">
999
+ <documentation>
1000
+ Sets the bind time limits in seconds. This is the time to wait for the bind to complete.
1001
+
1002
+ </documentation>
1003
+ <input message="tns:Management.LDAPConfiguration.set_bind_time_limitRequest"/>
1004
+ <output message="tns:Management.LDAPConfiguration.set_bind_time_limitResponse"/>
1005
+ </operation>
1006
+ <operation name="get_bind_time_limit">
1007
+ <documentation>
1008
+ Gets the bind time limits in seconds. This is the time to wait for the bind to complete.
1009
+
1010
+ </documentation>
1011
+ <input message="tns:Management.LDAPConfiguration.get_bind_time_limitRequest"/>
1012
+ <output message="tns:Management.LDAPConfiguration.get_bind_time_limitResponse"/>
1013
+ </operation>
1014
+ <operation name="set_idle_time_limit">
1015
+ <documentation>
1016
+ Sets the idle time limits in seconds. This client will close connections if the server has not
1017
+ been contacted for the number of seconds specified by this value.
1018
+
1019
+ </documentation>
1020
+ <input message="tns:Management.LDAPConfiguration.set_idle_time_limitRequest"/>
1021
+ <output message="tns:Management.LDAPConfiguration.set_idle_time_limitResponse"/>
1022
+ </operation>
1023
+ <operation name="get_idle_time_limit">
1024
+ <documentation>
1025
+ Gets the idle time limits in seconds. This client will close connections if the server has not
1026
+ been contacted for the number of seconds specified by this value.
1027
+
1028
+ </documentation>
1029
+ <input message="tns:Management.LDAPConfiguration.get_idle_time_limitRequest"/>
1030
+ <output message="tns:Management.LDAPConfiguration.get_idle_time_limitResponse"/>
1031
+ </operation>
1032
+ <operation name="set_filter">
1033
+ <documentation>
1034
+ Sets the filter strings used by the specified LDAP configurations.
1035
+
1036
+ </documentation>
1037
+ <input message="tns:Management.LDAPConfiguration.set_filterRequest"/>
1038
+ <output message="tns:Management.LDAPConfiguration.set_filterResponse"/>
1039
+ </operation>
1040
+ <operation name="get_filter">
1041
+ <documentation>
1042
+ Gets the filter strings used by the specified LDAP configurations.
1043
+
1044
+ </documentation>
1045
+ <input message="tns:Management.LDAPConfiguration.get_filterRequest"/>
1046
+ <output message="tns:Management.LDAPConfiguration.get_filterResponse"/>
1047
+ </operation>
1048
+ <operation name="set_check_host_attribute_state">
1049
+ <documentation>
1050
+ Sets the states indicating whether to check the 'host' attribute for access control. Default is no;
1051
+ if set to yes, and user has no value for the host attribute, and pam_ldap is configured for account
1052
+ management (authorization) then the user will not be allowed to login.
1053
+
1054
+ </documentation>
1055
+ <input message="tns:Management.LDAPConfiguration.set_check_host_attribute_stateRequest"/>
1056
+ <output message="tns:Management.LDAPConfiguration.set_check_host_attribute_stateResponse"/>
1057
+ </operation>
1058
+ <operation name="get_check_host_attribute_state">
1059
+ <documentation>
1060
+ Gets the states indicating whether to check the 'host' attribute for access control. Default is no;
1061
+ if set to yes, and user has no value for the host attribute, and pam_ldap is configured for account
1062
+ management (authorization) then the user will not be allowed to login.
1063
+
1064
+ </documentation>
1065
+ <input message="tns:Management.LDAPConfiguration.get_check_host_attribute_stateRequest"/>
1066
+ <output message="tns:Management.LDAPConfiguration.get_check_host_attribute_stateResponse"/>
1067
+ </operation>
1068
+ <operation name="set_check_roles_group_state">
1069
+ <documentation>
1070
+ Sets the states indicating whether to check the membership
1071
+ attribute in groups given in remote-role definitions for
1072
+ access control. Default is no; if set to yes, and user does
1073
+ not belong to any groups given in the remote-role
1074
+ definitions, and pam_ldap is configured for account
1075
+ management (authorization) then the user will only be able
1076
+ to log in using the default remote-role, which can be set
1077
+ to deny access.
1078
+
1079
+ </documentation>
1080
+ <input message="tns:Management.LDAPConfiguration.set_check_roles_group_stateRequest"/>
1081
+ <output message="tns:Management.LDAPConfiguration.set_check_roles_group_stateResponse"/>
1082
+ </operation>
1083
+ <operation name="get_check_roles_group_state">
1084
+ <documentation>
1085
+ Gets the states indicating whether to check the membership
1086
+ attribute in groups given in remote-role definitions for
1087
+ access control.
1088
+
1089
+ </documentation>
1090
+ <input message="tns:Management.LDAPConfiguration.get_check_roles_group_stateRequest"/>
1091
+ <output message="tns:Management.LDAPConfiguration.get_check_roles_group_stateResponse"/>
1092
+ </operation>
1093
+ <operation name="set_group_distinguished_name">
1094
+ <documentation>
1095
+ Sets the group distinguished names used to enforce membership.
1096
+
1097
+ </documentation>
1098
+ <input message="tns:Management.LDAPConfiguration.set_group_distinguished_nameRequest"/>
1099
+ <output message="tns:Management.LDAPConfiguration.set_group_distinguished_nameResponse"/>
1100
+ </operation>
1101
+ <operation name="get_group_distinguished_name">
1102
+ <documentation>
1103
+ Gets the group distinguished names used to enforce membership.
1104
+
1105
+ </documentation>
1106
+ <input message="tns:Management.LDAPConfiguration.get_group_distinguished_nameRequest"/>
1107
+ <output message="tns:Management.LDAPConfiguration.get_group_distinguished_nameResponse"/>
1108
+ </operation>
1109
+ <operation name="set_group_member_attribute">
1110
+ <documentation>
1111
+ Sets the group member attributes for the specified LDAP configurations.
1112
+
1113
+ </documentation>
1114
+ <input message="tns:Management.LDAPConfiguration.set_group_member_attributeRequest"/>
1115
+ <output message="tns:Management.LDAPConfiguration.set_group_member_attributeResponse"/>
1116
+ </operation>
1117
+ <operation name="get_group_member_attribute">
1118
+ <documentation>
1119
+ Gets the group member attributes for the specified LDAP configurations.
1120
+
1121
+ </documentation>
1122
+ <input message="tns:Management.LDAPConfiguration.get_group_member_attributeRequest"/>
1123
+ <output message="tns:Management.LDAPConfiguration.get_group_member_attributeResponse"/>
1124
+ </operation>
1125
+ <operation name="set_login_attribute">
1126
+ <documentation>
1127
+ Sets the login attributes used by the specified LDAP configurations.
1128
+
1129
+ </documentation>
1130
+ <input message="tns:Management.LDAPConfiguration.set_login_attributeRequest"/>
1131
+ <output message="tns:Management.LDAPConfiguration.set_login_attributeResponse"/>
1132
+ </operation>
1133
+ <operation name="get_login_attribute">
1134
+ <documentation>
1135
+ Gets the login attributes used by the specified LDAP configurations.
1136
+
1137
+ </documentation>
1138
+ <input message="tns:Management.LDAPConfiguration.get_login_attributeRequest"/>
1139
+ <output message="tns:Management.LDAPConfiguration.get_login_attributeResponse"/>
1140
+ </operation>
1141
+ <operation name="get_server">
1142
+ <documentation>
1143
+ Gets the lists of servers the specified LDAP configurations are associated with.
1144
+
1145
+ </documentation>
1146
+ <input message="tns:Management.LDAPConfiguration.get_serverRequest"/>
1147
+ <output message="tns:Management.LDAPConfiguration.get_serverResponse"/>
1148
+ </operation>
1149
+ <operation name="add_server">
1150
+ <documentation>
1151
+ Adds/associates servers to the specified LDAP configurations.
1152
+
1153
+ </documentation>
1154
+ <input message="tns:Management.LDAPConfiguration.add_serverRequest"/>
1155
+ <output message="tns:Management.LDAPConfiguration.add_serverResponse"/>
1156
+ </operation>
1157
+ <operation name="remove_server">
1158
+ <documentation>
1159
+ Removes servers from the specified LDAP configurations.
1160
+
1161
+ </documentation>
1162
+ <input message="tns:Management.LDAPConfiguration.remove_serverRequest"/>
1163
+ <output message="tns:Management.LDAPConfiguration.remove_serverResponse"/>
1164
+ </operation>
1165
+ <operation name="set_user_template">
1166
+ <documentation>
1167
+ Sets the user templates used by the specified LDAP configurations.
1168
+
1169
+ </documentation>
1170
+ <input message="tns:Management.LDAPConfiguration.set_user_templateRequest"/>
1171
+ <output message="tns:Management.LDAPConfiguration.set_user_templateResponse"/>
1172
+ </operation>
1173
+ <operation name="get_user_template">
1174
+ <documentation>
1175
+ Gets the user templates used by the specified LDAP configurations.
1176
+
1177
+ </documentation>
1178
+ <input message="tns:Management.LDAPConfiguration.get_user_templateRequest"/>
1179
+ <output message="tns:Management.LDAPConfiguration.get_user_templateResponse"/>
1180
+ </operation>
1181
+ <operation name="set_description">
1182
+ <documentation>
1183
+ Sets the description for a set of LDAP configurations.
1184
+
1185
+ This is an arbitrary field which can be used for any purpose.
1186
+
1187
+ </documentation>
1188
+ <input message="tns:Management.LDAPConfiguration.set_descriptionRequest"/>
1189
+ <output message="tns:Management.LDAPConfiguration.set_descriptionResponse"/>
1190
+ </operation>
1191
+ <operation name="get_description">
1192
+ <documentation>
1193
+ Gets the descriptions for a set of LDAP configurations.
1194
+
1195
+ </documentation>
1196
+ <input message="tns:Management.LDAPConfiguration.get_descriptionRequest"/>
1197
+ <output message="tns:Management.LDAPConfiguration.get_descriptionResponse"/>
1198
+ </operation>
1199
+ <operation name="get_version">
1200
+ <documentation>
1201
+ Gets the version information for this interface.
1202
+
1203
+ </documentation>
1204
+ <input message="tns:Management.LDAPConfiguration.get_versionRequest"/>
1205
+ <output message="tns:Management.LDAPConfiguration.get_versionResponse"/>
1206
+ </operation>
1207
+ </portType>
1208
+
1209
+ <!-- binding -->
1210
+
1211
+ <binding name="Management.LDAPConfigurationBinding" type="tns:Management.LDAPConfigurationPortType">
1212
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
1213
+ <operation name="get_list">
1214
+ <documentation>
1215
+ Gets a list of all LDAP configurations.
1216
+
1217
+ </documentation>
1218
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1219
+ <input>
1220
+ <soap:body
1221
+ use="encoded"
1222
+ namespace="urn:iControl:Management/LDAPConfiguration"
1223
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1224
+ </input>
1225
+ <output>
1226
+ <soap:body
1227
+ use="encoded"
1228
+ namespace="urn:iControl:Management/LDAPConfiguration"
1229
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1230
+ </output>
1231
+ </operation>
1232
+
1233
+ <operation name="create">
1234
+ <documentation>
1235
+ Creates the specified LDAP configurations.
1236
+
1237
+ </documentation>
1238
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1239
+ <input>
1240
+ <soap:body
1241
+ use="encoded"
1242
+ namespace="urn:iControl:Management/LDAPConfiguration"
1243
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1244
+ </input>
1245
+ <output>
1246
+ <soap:body
1247
+ use="encoded"
1248
+ namespace="urn:iControl:Management/LDAPConfiguration"
1249
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1250
+ </output>
1251
+ </operation>
1252
+
1253
+ <operation name="create_default_authentication_ldap_configuration">
1254
+ <documentation>
1255
+ Creates the default authentication LDAP configuration.
1256
+
1257
+ </documentation>
1258
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1259
+ <input>
1260
+ <soap:body
1261
+ use="encoded"
1262
+ namespace="urn:iControl:Management/LDAPConfiguration"
1263
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1264
+ </input>
1265
+ <output>
1266
+ <soap:body
1267
+ use="encoded"
1268
+ namespace="urn:iControl:Management/LDAPConfiguration"
1269
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1270
+ </output>
1271
+ </operation>
1272
+
1273
+ <operation name="create_default_authentication_ad_configuration">
1274
+ <documentation>
1275
+ Creates the default authentication Active Directory configuration.
1276
+
1277
+ </documentation>
1278
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1279
+ <input>
1280
+ <soap:body
1281
+ use="encoded"
1282
+ namespace="urn:iControl:Management/LDAPConfiguration"
1283
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1284
+ </input>
1285
+ <output>
1286
+ <soap:body
1287
+ use="encoded"
1288
+ namespace="urn:iControl:Management/LDAPConfiguration"
1289
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1290
+ </output>
1291
+ </operation>
1292
+
1293
+ <operation name="delete_configuration">
1294
+ <documentation>
1295
+ Deletes the specified LDAP configurations.
1296
+
1297
+ </documentation>
1298
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1299
+ <input>
1300
+ <soap:body
1301
+ use="encoded"
1302
+ namespace="urn:iControl:Management/LDAPConfiguration"
1303
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1304
+ </input>
1305
+ <output>
1306
+ <soap:body
1307
+ use="encoded"
1308
+ namespace="urn:iControl:Management/LDAPConfiguration"
1309
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1310
+ </output>
1311
+ </operation>
1312
+
1313
+ <operation name="delete_all_configurations">
1314
+ <documentation>
1315
+ Deletes all LDAP configurations.
1316
+
1317
+ </documentation>
1318
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1319
+ <input>
1320
+ <soap:body
1321
+ use="encoded"
1322
+ namespace="urn:iControl:Management/LDAPConfiguration"
1323
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1324
+ </input>
1325
+ <output>
1326
+ <soap:body
1327
+ use="encoded"
1328
+ namespace="urn:iControl:Management/LDAPConfiguration"
1329
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1330
+ </output>
1331
+ </operation>
1332
+
1333
+ <operation name="set_debug_state">
1334
+ <documentation>
1335
+ Sets the states indicating whether syslog debugging is enabled/disabled.
1336
+
1337
+ </documentation>
1338
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1339
+ <input>
1340
+ <soap:body
1341
+ use="encoded"
1342
+ namespace="urn:iControl:Management/LDAPConfiguration"
1343
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1344
+ </input>
1345
+ <output>
1346
+ <soap:body
1347
+ use="encoded"
1348
+ namespace="urn:iControl:Management/LDAPConfiguration"
1349
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1350
+ </output>
1351
+ </operation>
1352
+
1353
+ <operation name="get_debug_state">
1354
+ <documentation>
1355
+ Gets the states indicating whether syslog debugging is enabled/disabled.
1356
+
1357
+ </documentation>
1358
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1359
+ <input>
1360
+ <soap:body
1361
+ use="encoded"
1362
+ namespace="urn:iControl:Management/LDAPConfiguration"
1363
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1364
+ </input>
1365
+ <output>
1366
+ <soap:body
1367
+ use="encoded"
1368
+ namespace="urn:iControl:Management/LDAPConfiguration"
1369
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1370
+ </output>
1371
+ </operation>
1372
+
1373
+ <operation name="set_ignore_unavailable_authentication_information_state">
1374
+ <documentation>
1375
+ Sets the states indicating whether to ignore errors when authentication information is unavailable.
1376
+
1377
+ </documentation>
1378
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1379
+ <input>
1380
+ <soap:body
1381
+ use="encoded"
1382
+ namespace="urn:iControl:Management/LDAPConfiguration"
1383
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1384
+ </input>
1385
+ <output>
1386
+ <soap:body
1387
+ use="encoded"
1388
+ namespace="urn:iControl:Management/LDAPConfiguration"
1389
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1390
+ </output>
1391
+ </operation>
1392
+
1393
+ <operation name="get_ignore_unavailable_authentication_information_state">
1394
+ <documentation>
1395
+ Gets the states indicating whether to ignore errors when authentication information is unavailable.
1396
+
1397
+ </documentation>
1398
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1399
+ <input>
1400
+ <soap:body
1401
+ use="encoded"
1402
+ namespace="urn:iControl:Management/LDAPConfiguration"
1403
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1404
+ </input>
1405
+ <output>
1406
+ <soap:body
1407
+ use="encoded"
1408
+ namespace="urn:iControl:Management/LDAPConfiguration"
1409
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1410
+ </output>
1411
+ </operation>
1412
+
1413
+ <operation name="set_warning_state">
1414
+ <documentation>
1415
+ Sets the states indicating whether to enabled/disable warning messages.
1416
+
1417
+ </documentation>
1418
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1419
+ <input>
1420
+ <soap:body
1421
+ use="encoded"
1422
+ namespace="urn:iControl:Management/LDAPConfiguration"
1423
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1424
+ </input>
1425
+ <output>
1426
+ <soap:body
1427
+ use="encoded"
1428
+ namespace="urn:iControl:Management/LDAPConfiguration"
1429
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1430
+ </output>
1431
+ </operation>
1432
+
1433
+ <operation name="get_warning_state">
1434
+ <documentation>
1435
+ Gets the states indicating whether to enabled/disable warning messages.
1436
+
1437
+ </documentation>
1438
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1439
+ <input>
1440
+ <soap:body
1441
+ use="encoded"
1442
+ namespace="urn:iControl:Management/LDAPConfiguration"
1443
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1444
+ </input>
1445
+ <output>
1446
+ <soap:body
1447
+ use="encoded"
1448
+ namespace="urn:iControl:Management/LDAPConfiguration"
1449
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1450
+ </output>
1451
+ </operation>
1452
+
1453
+ <operation name="set_port">
1454
+ <documentation>
1455
+ Sets the ports used by the LDAP servers to listen for requests.
1456
+
1457
+ </documentation>
1458
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1459
+ <input>
1460
+ <soap:body
1461
+ use="encoded"
1462
+ namespace="urn:iControl:Management/LDAPConfiguration"
1463
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1464
+ </input>
1465
+ <output>
1466
+ <soap:body
1467
+ use="encoded"
1468
+ namespace="urn:iControl:Management/LDAPConfiguration"
1469
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1470
+ </output>
1471
+ </operation>
1472
+
1473
+ <operation name="get_port">
1474
+ <documentation>
1475
+ Gets the ports used by the LDAP servers to listen for requests.
1476
+
1477
+ </documentation>
1478
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1479
+ <input>
1480
+ <soap:body
1481
+ use="encoded"
1482
+ namespace="urn:iControl:Management/LDAPConfiguration"
1483
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1484
+ </input>
1485
+ <output>
1486
+ <soap:body
1487
+ use="encoded"
1488
+ namespace="urn:iControl:Management/LDAPConfiguration"
1489
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1490
+ </output>
1491
+ </operation>
1492
+
1493
+ <operation name="set_ldap_ssl_option">
1494
+ <documentation>
1495
+ Sets the LDAP SSL options used by the LDAP configurations.
1496
+
1497
+ </documentation>
1498
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1499
+ <input>
1500
+ <soap:body
1501
+ use="encoded"
1502
+ namespace="urn:iControl:Management/LDAPConfiguration"
1503
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1504
+ </input>
1505
+ <output>
1506
+ <soap:body
1507
+ use="encoded"
1508
+ namespace="urn:iControl:Management/LDAPConfiguration"
1509
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1510
+ </output>
1511
+ </operation>
1512
+
1513
+ <operation name="get_ldap_ssl_option">
1514
+ <documentation>
1515
+ Gets the LDAP SSL options used by the LDAP configurations.
1516
+
1517
+ </documentation>
1518
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1519
+ <input>
1520
+ <soap:body
1521
+ use="encoded"
1522
+ namespace="urn:iControl:Management/LDAPConfiguration"
1523
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1524
+ </input>
1525
+ <output>
1526
+ <soap:body
1527
+ use="encoded"
1528
+ namespace="urn:iControl:Management/LDAPConfiguration"
1529
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1530
+ </output>
1531
+ </operation>
1532
+
1533
+ <operation name="set_ssl_check_peer_state">
1534
+ <documentation>
1535
+ Sets the states indicating whether to require and verify server certificate.
1536
+
1537
+ </documentation>
1538
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1539
+ <input>
1540
+ <soap:body
1541
+ use="encoded"
1542
+ namespace="urn:iControl:Management/LDAPConfiguration"
1543
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1544
+ </input>
1545
+ <output>
1546
+ <soap:body
1547
+ use="encoded"
1548
+ namespace="urn:iControl:Management/LDAPConfiguration"
1549
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1550
+ </output>
1551
+ </operation>
1552
+
1553
+ <operation name="get_ssl_check_peer_state">
1554
+ <documentation>
1555
+ Gets the states indicating whether to require and verify server certificate.
1556
+
1557
+ </documentation>
1558
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1559
+ <input>
1560
+ <soap:body
1561
+ use="encoded"
1562
+ namespace="urn:iControl:Management/LDAPConfiguration"
1563
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1564
+ </input>
1565
+ <output>
1566
+ <soap:body
1567
+ use="encoded"
1568
+ namespace="urn:iControl:Management/LDAPConfiguration"
1569
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1570
+ </output>
1571
+ </operation>
1572
+
1573
+ <operation name="set_ssl_ca_certificate_file">
1574
+ <documentation>
1575
+ This method has been deprecated due to the switch to use file
1576
+ objects. See set_ssl_ca_certificate_file_v2.
1577
+
1578
+ Sets the CA certificates used in server certificate verification.
1579
+
1580
+ </documentation>
1581
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1582
+ <input>
1583
+ <soap:body
1584
+ use="encoded"
1585
+ namespace="urn:iControl:Management/LDAPConfiguration"
1586
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1587
+ </input>
1588
+ <output>
1589
+ <soap:body
1590
+ use="encoded"
1591
+ namespace="urn:iControl:Management/LDAPConfiguration"
1592
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1593
+ </output>
1594
+ </operation>
1595
+
1596
+ <operation name="get_ssl_ca_certificate_file">
1597
+ <documentation>
1598
+ This method has been deprecated due to the switch to use file
1599
+ objects. See get_ssl_ca_certificate_file_v2.
1600
+
1601
+ Gets the CA certificates used in server certificate verification.
1602
+
1603
+ </documentation>
1604
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1605
+ <input>
1606
+ <soap:body
1607
+ use="encoded"
1608
+ namespace="urn:iControl:Management/LDAPConfiguration"
1609
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1610
+ </input>
1611
+ <output>
1612
+ <soap:body
1613
+ use="encoded"
1614
+ namespace="urn:iControl:Management/LDAPConfiguration"
1615
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1616
+ </output>
1617
+ </operation>
1618
+
1619
+ <operation name="set_ssl_ca_certificate_file_v2">
1620
+ <documentation>
1621
+ Sets the CA certificate file objects used in server certificate
1622
+ verification for a set of LDAP authentication configurations.
1623
+
1624
+ See the Management::KeyCertificate interface for certificate file
1625
+ object management.
1626
+
1627
+ </documentation>
1628
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1629
+ <input>
1630
+ <soap:body
1631
+ use="encoded"
1632
+ namespace="urn:iControl:Management/LDAPConfiguration"
1633
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1634
+ </input>
1635
+ <output>
1636
+ <soap:body
1637
+ use="encoded"
1638
+ namespace="urn:iControl:Management/LDAPConfiguration"
1639
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1640
+ </output>
1641
+ </operation>
1642
+
1643
+ <operation name="get_ssl_ca_certificate_file_v2">
1644
+ <documentation>
1645
+ Gets the CA certificate file object names used in server
1646
+ certificate verification for a set of LDAP authentication
1647
+ configurations.
1648
+
1649
+ See the Management::KeyCertificate interface for certificate file
1650
+ object management.
1651
+
1652
+ </documentation>
1653
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1654
+ <input>
1655
+ <soap:body
1656
+ use="encoded"
1657
+ namespace="urn:iControl:Management/LDAPConfiguration"
1658
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1659
+ </input>
1660
+ <output>
1661
+ <soap:body
1662
+ use="encoded"
1663
+ namespace="urn:iControl:Management/LDAPConfiguration"
1664
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1665
+ </output>
1666
+ </operation>
1667
+
1668
+ <operation name="set_ssl_cipher">
1669
+ <documentation>
1670
+ Sets the SSL cipher suite used by the LDAP configurations.
1671
+
1672
+ </documentation>
1673
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1674
+ <input>
1675
+ <soap:body
1676
+ use="encoded"
1677
+ namespace="urn:iControl:Management/LDAPConfiguration"
1678
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1679
+ </input>
1680
+ <output>
1681
+ <soap:body
1682
+ use="encoded"
1683
+ namespace="urn:iControl:Management/LDAPConfiguration"
1684
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1685
+ </output>
1686
+ </operation>
1687
+
1688
+ <operation name="get_ssl_cipher">
1689
+ <documentation>
1690
+ Gets the SSL cipher suite used by the LDAP configurations.
1691
+
1692
+ </documentation>
1693
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1694
+ <input>
1695
+ <soap:body
1696
+ use="encoded"
1697
+ namespace="urn:iControl:Management/LDAPConfiguration"
1698
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1699
+ </input>
1700
+ <output>
1701
+ <soap:body
1702
+ use="encoded"
1703
+ namespace="urn:iControl:Management/LDAPConfiguration"
1704
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1705
+ </output>
1706
+ </operation>
1707
+
1708
+ <operation name="set_ssl_client_key">
1709
+ <documentation>
1710
+ This method has been deprecated due to the switch to use file
1711
+ objects. See set_ssl_client_key_v2.
1712
+
1713
+ Sets the client keys used by the LDAP configurations.
1714
+
1715
+ </documentation>
1716
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1717
+ <input>
1718
+ <soap:body
1719
+ use="encoded"
1720
+ namespace="urn:iControl:Management/LDAPConfiguration"
1721
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1722
+ </input>
1723
+ <output>
1724
+ <soap:body
1725
+ use="encoded"
1726
+ namespace="urn:iControl:Management/LDAPConfiguration"
1727
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1728
+ </output>
1729
+ </operation>
1730
+
1731
+ <operation name="get_ssl_client_key">
1732
+ <documentation>
1733
+ This method has been deprecated due to the switch to use file
1734
+ objects. See get_ssl_client_key_v2.
1735
+
1736
+ Gets the client keys used by the LDAP configurations.
1737
+
1738
+ </documentation>
1739
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1740
+ <input>
1741
+ <soap:body
1742
+ use="encoded"
1743
+ namespace="urn:iControl:Management/LDAPConfiguration"
1744
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1745
+ </input>
1746
+ <output>
1747
+ <soap:body
1748
+ use="encoded"
1749
+ namespace="urn:iControl:Management/LDAPConfiguration"
1750
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1751
+ </output>
1752
+ </operation>
1753
+
1754
+ <operation name="set_ssl_client_key_v2">
1755
+ <documentation>
1756
+ Sets the client key file objects used by a set of LDAP
1757
+ authentication configurations.
1758
+
1759
+ See the Management::KeyCertificate interface for certificate file
1760
+ object management.
1761
+
1762
+ </documentation>
1763
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1764
+ <input>
1765
+ <soap:body
1766
+ use="encoded"
1767
+ namespace="urn:iControl:Management/LDAPConfiguration"
1768
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1769
+ </input>
1770
+ <output>
1771
+ <soap:body
1772
+ use="encoded"
1773
+ namespace="urn:iControl:Management/LDAPConfiguration"
1774
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1775
+ </output>
1776
+ </operation>
1777
+
1778
+ <operation name="get_ssl_client_key_v2">
1779
+ <documentation>
1780
+ Gets the client key file objects used by a set of LDAP
1781
+ authentication configurations.
1782
+
1783
+ See the Management::KeyCertificate interface for certificate file
1784
+ object management.
1785
+
1786
+ </documentation>
1787
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1788
+ <input>
1789
+ <soap:body
1790
+ use="encoded"
1791
+ namespace="urn:iControl:Management/LDAPConfiguration"
1792
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1793
+ </input>
1794
+ <output>
1795
+ <soap:body
1796
+ use="encoded"
1797
+ namespace="urn:iControl:Management/LDAPConfiguration"
1798
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1799
+ </output>
1800
+ </operation>
1801
+
1802
+ <operation name="set_ssl_client_certificate">
1803
+ <documentation>
1804
+ This method has been deprecated due to the switch to use file
1805
+ objects. See set_ssl_client_certificate_v2.
1806
+
1807
+ Sets the client certificates used by the LDAP configurations.
1808
+
1809
+ </documentation>
1810
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1811
+ <input>
1812
+ <soap:body
1813
+ use="encoded"
1814
+ namespace="urn:iControl:Management/LDAPConfiguration"
1815
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1816
+ </input>
1817
+ <output>
1818
+ <soap:body
1819
+ use="encoded"
1820
+ namespace="urn:iControl:Management/LDAPConfiguration"
1821
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1822
+ </output>
1823
+ </operation>
1824
+
1825
+ <operation name="get_ssl_client_certificate">
1826
+ <documentation>
1827
+ This method has been deprecated due to the switch to use file
1828
+ objects. See get_ssl_client_certificate_v2.
1829
+
1830
+ Gets the client certificates used by the LDAP configurations.
1831
+
1832
+ </documentation>
1833
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1834
+ <input>
1835
+ <soap:body
1836
+ use="encoded"
1837
+ namespace="urn:iControl:Management/LDAPConfiguration"
1838
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1839
+ </input>
1840
+ <output>
1841
+ <soap:body
1842
+ use="encoded"
1843
+ namespace="urn:iControl:Management/LDAPConfiguration"
1844
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1845
+ </output>
1846
+ </operation>
1847
+
1848
+ <operation name="set_ssl_client_certificate_v2">
1849
+ <documentation>
1850
+ Sets the client certificate file objects used by a set of LDAP
1851
+ authentication configurations.
1852
+
1853
+ See the Management::KeyCertificate interface for certificate file
1854
+ object management.
1855
+
1856
+ </documentation>
1857
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1858
+ <input>
1859
+ <soap:body
1860
+ use="encoded"
1861
+ namespace="urn:iControl:Management/LDAPConfiguration"
1862
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1863
+ </input>
1864
+ <output>
1865
+ <soap:body
1866
+ use="encoded"
1867
+ namespace="urn:iControl:Management/LDAPConfiguration"
1868
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1869
+ </output>
1870
+ </operation>
1871
+
1872
+ <operation name="get_ssl_client_certificate_v2">
1873
+ <documentation>
1874
+ Gets the client certificate file objects used by a set of LDAP
1875
+ authentication configurations.
1876
+
1877
+ See the Management::KeyCertificate interface for certificate file
1878
+ object management.
1879
+
1880
+ </documentation>
1881
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1882
+ <input>
1883
+ <soap:body
1884
+ use="encoded"
1885
+ namespace="urn:iControl:Management/LDAPConfiguration"
1886
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1887
+ </input>
1888
+ <output>
1889
+ <soap:body
1890
+ use="encoded"
1891
+ namespace="urn:iControl:Management/LDAPConfiguration"
1892
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1893
+ </output>
1894
+ </operation>
1895
+
1896
+ <operation name="set_search_base_distinguished_name">
1897
+ <documentation>
1898
+ Sets the distinguished names of the search bases used by the LDAP configurations.
1899
+
1900
+ </documentation>
1901
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1902
+ <input>
1903
+ <soap:body
1904
+ use="encoded"
1905
+ namespace="urn:iControl:Management/LDAPConfiguration"
1906
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1907
+ </input>
1908
+ <output>
1909
+ <soap:body
1910
+ use="encoded"
1911
+ namespace="urn:iControl:Management/LDAPConfiguration"
1912
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1913
+ </output>
1914
+ </operation>
1915
+
1916
+ <operation name="get_search_base_distinguished_name">
1917
+ <documentation>
1918
+ Gets the distinguished names of the search bases used by the LDAP configurations.
1919
+
1920
+ </documentation>
1921
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1922
+ <input>
1923
+ <soap:body
1924
+ use="encoded"
1925
+ namespace="urn:iControl:Management/LDAPConfiguration"
1926
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1927
+ </input>
1928
+ <output>
1929
+ <soap:body
1930
+ use="encoded"
1931
+ namespace="urn:iControl:Management/LDAPConfiguration"
1932
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1933
+ </output>
1934
+ </operation>
1935
+
1936
+ <operation name="set_ldap_version">
1937
+ <documentation>
1938
+ Sets the LDAP versions to use by the LDAP configurations.
1939
+
1940
+ </documentation>
1941
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1942
+ <input>
1943
+ <soap:body
1944
+ use="encoded"
1945
+ namespace="urn:iControl:Management/LDAPConfiguration"
1946
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1947
+ </input>
1948
+ <output>
1949
+ <soap:body
1950
+ use="encoded"
1951
+ namespace="urn:iControl:Management/LDAPConfiguration"
1952
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1953
+ </output>
1954
+ </operation>
1955
+
1956
+ <operation name="get_ldap_version">
1957
+ <documentation>
1958
+ Gets the LDAP versions to use by the LDAP configurations.
1959
+
1960
+ </documentation>
1961
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1962
+ <input>
1963
+ <soap:body
1964
+ use="encoded"
1965
+ namespace="urn:iControl:Management/LDAPConfiguration"
1966
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1967
+ </input>
1968
+ <output>
1969
+ <soap:body
1970
+ use="encoded"
1971
+ namespace="urn:iControl:Management/LDAPConfiguration"
1972
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1973
+ </output>
1974
+ </operation>
1975
+
1976
+ <operation name="set_bind_distinguished_name">
1977
+ <documentation>
1978
+ Sets the distinguished names used to bind to the servers. Default is to bind anonymously.
1979
+
1980
+ </documentation>
1981
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
1982
+ <input>
1983
+ <soap:body
1984
+ use="encoded"
1985
+ namespace="urn:iControl:Management/LDAPConfiguration"
1986
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1987
+ </input>
1988
+ <output>
1989
+ <soap:body
1990
+ use="encoded"
1991
+ namespace="urn:iControl:Management/LDAPConfiguration"
1992
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1993
+ </output>
1994
+ </operation>
1995
+
1996
+ <operation name="get_bind_distinguished_name">
1997
+ <documentation>
1998
+ Gets the distinguished names used to bind to the servers. Default is to bind anonymously.
1999
+
2000
+ </documentation>
2001
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2002
+ <input>
2003
+ <soap:body
2004
+ use="encoded"
2005
+ namespace="urn:iControl:Management/LDAPConfiguration"
2006
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2007
+ </input>
2008
+ <output>
2009
+ <soap:body
2010
+ use="encoded"
2011
+ namespace="urn:iControl:Management/LDAPConfiguration"
2012
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2013
+ </output>
2014
+ </operation>
2015
+
2016
+ <operation name="set_bind_password">
2017
+ <documentation>
2018
+ Sets the credentials used to bind to the servers. Default is to bind with no credentials.
2019
+
2020
+ </documentation>
2021
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2022
+ <input>
2023
+ <soap:body
2024
+ use="encoded"
2025
+ namespace="urn:iControl:Management/LDAPConfiguration"
2026
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2027
+ </input>
2028
+ <output>
2029
+ <soap:body
2030
+ use="encoded"
2031
+ namespace="urn:iControl:Management/LDAPConfiguration"
2032
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2033
+ </output>
2034
+ </operation>
2035
+
2036
+ <operation name="get_bind_password">
2037
+ <documentation>
2038
+ Gets the credentials used to bind to the servers. Default is to bind with no credentials.
2039
+
2040
+ </documentation>
2041
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2042
+ <input>
2043
+ <soap:body
2044
+ use="encoded"
2045
+ namespace="urn:iControl:Management/LDAPConfiguration"
2046
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2047
+ </input>
2048
+ <output>
2049
+ <soap:body
2050
+ use="encoded"
2051
+ namespace="urn:iControl:Management/LDAPConfiguration"
2052
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2053
+ </output>
2054
+ </operation>
2055
+
2056
+ <operation name="set_search_scope">
2057
+ <documentation>
2058
+ Sets the search scopes used by the LDAP configurations.
2059
+
2060
+ </documentation>
2061
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2062
+ <input>
2063
+ <soap:body
2064
+ use="encoded"
2065
+ namespace="urn:iControl:Management/LDAPConfiguration"
2066
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2067
+ </input>
2068
+ <output>
2069
+ <soap:body
2070
+ use="encoded"
2071
+ namespace="urn:iControl:Management/LDAPConfiguration"
2072
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2073
+ </output>
2074
+ </operation>
2075
+
2076
+ <operation name="get_search_scope">
2077
+ <documentation>
2078
+ Gets the search scopes used by the LDAP configurations.
2079
+
2080
+ </documentation>
2081
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2082
+ <input>
2083
+ <soap:body
2084
+ use="encoded"
2085
+ namespace="urn:iControl:Management/LDAPConfiguration"
2086
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2087
+ </input>
2088
+ <output>
2089
+ <soap:body
2090
+ use="encoded"
2091
+ namespace="urn:iControl:Management/LDAPConfiguration"
2092
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2093
+ </output>
2094
+ </operation>
2095
+
2096
+ <operation name="set_search_time_limit">
2097
+ <documentation>
2098
+ Sets the search time limits in seconds. This is the time to wait for the search to complete.
2099
+
2100
+ </documentation>
2101
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2102
+ <input>
2103
+ <soap:body
2104
+ use="encoded"
2105
+ namespace="urn:iControl:Management/LDAPConfiguration"
2106
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2107
+ </input>
2108
+ <output>
2109
+ <soap:body
2110
+ use="encoded"
2111
+ namespace="urn:iControl:Management/LDAPConfiguration"
2112
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2113
+ </output>
2114
+ </operation>
2115
+
2116
+ <operation name="get_search_time_limit">
2117
+ <documentation>
2118
+ Gets the search time limits in seconds. This is the time to wait for the search to complete.
2119
+
2120
+ </documentation>
2121
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2122
+ <input>
2123
+ <soap:body
2124
+ use="encoded"
2125
+ namespace="urn:iControl:Management/LDAPConfiguration"
2126
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2127
+ </input>
2128
+ <output>
2129
+ <soap:body
2130
+ use="encoded"
2131
+ namespace="urn:iControl:Management/LDAPConfiguration"
2132
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2133
+ </output>
2134
+ </operation>
2135
+
2136
+ <operation name="set_bind_time_limit">
2137
+ <documentation>
2138
+ Sets the bind time limits in seconds. This is the time to wait for the bind to complete.
2139
+
2140
+ </documentation>
2141
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2142
+ <input>
2143
+ <soap:body
2144
+ use="encoded"
2145
+ namespace="urn:iControl:Management/LDAPConfiguration"
2146
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2147
+ </input>
2148
+ <output>
2149
+ <soap:body
2150
+ use="encoded"
2151
+ namespace="urn:iControl:Management/LDAPConfiguration"
2152
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2153
+ </output>
2154
+ </operation>
2155
+
2156
+ <operation name="get_bind_time_limit">
2157
+ <documentation>
2158
+ Gets the bind time limits in seconds. This is the time to wait for the bind to complete.
2159
+
2160
+ </documentation>
2161
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2162
+ <input>
2163
+ <soap:body
2164
+ use="encoded"
2165
+ namespace="urn:iControl:Management/LDAPConfiguration"
2166
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2167
+ </input>
2168
+ <output>
2169
+ <soap:body
2170
+ use="encoded"
2171
+ namespace="urn:iControl:Management/LDAPConfiguration"
2172
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2173
+ </output>
2174
+ </operation>
2175
+
2176
+ <operation name="set_idle_time_limit">
2177
+ <documentation>
2178
+ Sets the idle time limits in seconds. This client will close connections if the server has not
2179
+ been contacted for the number of seconds specified by this value.
2180
+
2181
+ </documentation>
2182
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2183
+ <input>
2184
+ <soap:body
2185
+ use="encoded"
2186
+ namespace="urn:iControl:Management/LDAPConfiguration"
2187
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2188
+ </input>
2189
+ <output>
2190
+ <soap:body
2191
+ use="encoded"
2192
+ namespace="urn:iControl:Management/LDAPConfiguration"
2193
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2194
+ </output>
2195
+ </operation>
2196
+
2197
+ <operation name="get_idle_time_limit">
2198
+ <documentation>
2199
+ Gets the idle time limits in seconds. This client will close connections if the server has not
2200
+ been contacted for the number of seconds specified by this value.
2201
+
2202
+ </documentation>
2203
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2204
+ <input>
2205
+ <soap:body
2206
+ use="encoded"
2207
+ namespace="urn:iControl:Management/LDAPConfiguration"
2208
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2209
+ </input>
2210
+ <output>
2211
+ <soap:body
2212
+ use="encoded"
2213
+ namespace="urn:iControl:Management/LDAPConfiguration"
2214
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2215
+ </output>
2216
+ </operation>
2217
+
2218
+ <operation name="set_filter">
2219
+ <documentation>
2220
+ Sets the filter strings used by the specified LDAP configurations.
2221
+
2222
+ </documentation>
2223
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2224
+ <input>
2225
+ <soap:body
2226
+ use="encoded"
2227
+ namespace="urn:iControl:Management/LDAPConfiguration"
2228
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2229
+ </input>
2230
+ <output>
2231
+ <soap:body
2232
+ use="encoded"
2233
+ namespace="urn:iControl:Management/LDAPConfiguration"
2234
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2235
+ </output>
2236
+ </operation>
2237
+
2238
+ <operation name="get_filter">
2239
+ <documentation>
2240
+ Gets the filter strings used by the specified LDAP configurations.
2241
+
2242
+ </documentation>
2243
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2244
+ <input>
2245
+ <soap:body
2246
+ use="encoded"
2247
+ namespace="urn:iControl:Management/LDAPConfiguration"
2248
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2249
+ </input>
2250
+ <output>
2251
+ <soap:body
2252
+ use="encoded"
2253
+ namespace="urn:iControl:Management/LDAPConfiguration"
2254
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2255
+ </output>
2256
+ </operation>
2257
+
2258
+ <operation name="set_check_host_attribute_state">
2259
+ <documentation>
2260
+ Sets the states indicating whether to check the 'host' attribute for access control. Default is no;
2261
+ if set to yes, and user has no value for the host attribute, and pam_ldap is configured for account
2262
+ management (authorization) then the user will not be allowed to login.
2263
+
2264
+ </documentation>
2265
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2266
+ <input>
2267
+ <soap:body
2268
+ use="encoded"
2269
+ namespace="urn:iControl:Management/LDAPConfiguration"
2270
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2271
+ </input>
2272
+ <output>
2273
+ <soap:body
2274
+ use="encoded"
2275
+ namespace="urn:iControl:Management/LDAPConfiguration"
2276
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2277
+ </output>
2278
+ </operation>
2279
+
2280
+ <operation name="get_check_host_attribute_state">
2281
+ <documentation>
2282
+ Gets the states indicating whether to check the 'host' attribute for access control. Default is no;
2283
+ if set to yes, and user has no value for the host attribute, and pam_ldap is configured for account
2284
+ management (authorization) then the user will not be allowed to login.
2285
+
2286
+ </documentation>
2287
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2288
+ <input>
2289
+ <soap:body
2290
+ use="encoded"
2291
+ namespace="urn:iControl:Management/LDAPConfiguration"
2292
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2293
+ </input>
2294
+ <output>
2295
+ <soap:body
2296
+ use="encoded"
2297
+ namespace="urn:iControl:Management/LDAPConfiguration"
2298
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2299
+ </output>
2300
+ </operation>
2301
+
2302
+ <operation name="set_check_roles_group_state">
2303
+ <documentation>
2304
+ Sets the states indicating whether to check the membership
2305
+ attribute in groups given in remote-role definitions for
2306
+ access control. Default is no; if set to yes, and user does
2307
+ not belong to any groups given in the remote-role
2308
+ definitions, and pam_ldap is configured for account
2309
+ management (authorization) then the user will only be able
2310
+ to log in using the default remote-role, which can be set
2311
+ to deny access.
2312
+
2313
+ </documentation>
2314
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2315
+ <input>
2316
+ <soap:body
2317
+ use="encoded"
2318
+ namespace="urn:iControl:Management/LDAPConfiguration"
2319
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2320
+ </input>
2321
+ <output>
2322
+ <soap:body
2323
+ use="encoded"
2324
+ namespace="urn:iControl:Management/LDAPConfiguration"
2325
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2326
+ </output>
2327
+ </operation>
2328
+
2329
+ <operation name="get_check_roles_group_state">
2330
+ <documentation>
2331
+ Gets the states indicating whether to check the membership
2332
+ attribute in groups given in remote-role definitions for
2333
+ access control.
2334
+
2335
+ </documentation>
2336
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2337
+ <input>
2338
+ <soap:body
2339
+ use="encoded"
2340
+ namespace="urn:iControl:Management/LDAPConfiguration"
2341
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2342
+ </input>
2343
+ <output>
2344
+ <soap:body
2345
+ use="encoded"
2346
+ namespace="urn:iControl:Management/LDAPConfiguration"
2347
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2348
+ </output>
2349
+ </operation>
2350
+
2351
+ <operation name="set_group_distinguished_name">
2352
+ <documentation>
2353
+ Sets the group distinguished names used to enforce membership.
2354
+
2355
+ </documentation>
2356
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2357
+ <input>
2358
+ <soap:body
2359
+ use="encoded"
2360
+ namespace="urn:iControl:Management/LDAPConfiguration"
2361
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2362
+ </input>
2363
+ <output>
2364
+ <soap:body
2365
+ use="encoded"
2366
+ namespace="urn:iControl:Management/LDAPConfiguration"
2367
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2368
+ </output>
2369
+ </operation>
2370
+
2371
+ <operation name="get_group_distinguished_name">
2372
+ <documentation>
2373
+ Gets the group distinguished names used to enforce membership.
2374
+
2375
+ </documentation>
2376
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2377
+ <input>
2378
+ <soap:body
2379
+ use="encoded"
2380
+ namespace="urn:iControl:Management/LDAPConfiguration"
2381
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2382
+ </input>
2383
+ <output>
2384
+ <soap:body
2385
+ use="encoded"
2386
+ namespace="urn:iControl:Management/LDAPConfiguration"
2387
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2388
+ </output>
2389
+ </operation>
2390
+
2391
+ <operation name="set_group_member_attribute">
2392
+ <documentation>
2393
+ Sets the group member attributes for the specified LDAP configurations.
2394
+
2395
+ </documentation>
2396
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2397
+ <input>
2398
+ <soap:body
2399
+ use="encoded"
2400
+ namespace="urn:iControl:Management/LDAPConfiguration"
2401
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2402
+ </input>
2403
+ <output>
2404
+ <soap:body
2405
+ use="encoded"
2406
+ namespace="urn:iControl:Management/LDAPConfiguration"
2407
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2408
+ </output>
2409
+ </operation>
2410
+
2411
+ <operation name="get_group_member_attribute">
2412
+ <documentation>
2413
+ Gets the group member attributes for the specified LDAP configurations.
2414
+
2415
+ </documentation>
2416
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2417
+ <input>
2418
+ <soap:body
2419
+ use="encoded"
2420
+ namespace="urn:iControl:Management/LDAPConfiguration"
2421
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2422
+ </input>
2423
+ <output>
2424
+ <soap:body
2425
+ use="encoded"
2426
+ namespace="urn:iControl:Management/LDAPConfiguration"
2427
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2428
+ </output>
2429
+ </operation>
2430
+
2431
+ <operation name="set_login_attribute">
2432
+ <documentation>
2433
+ Sets the login attributes used by the specified LDAP configurations.
2434
+
2435
+ </documentation>
2436
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2437
+ <input>
2438
+ <soap:body
2439
+ use="encoded"
2440
+ namespace="urn:iControl:Management/LDAPConfiguration"
2441
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2442
+ </input>
2443
+ <output>
2444
+ <soap:body
2445
+ use="encoded"
2446
+ namespace="urn:iControl:Management/LDAPConfiguration"
2447
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2448
+ </output>
2449
+ </operation>
2450
+
2451
+ <operation name="get_login_attribute">
2452
+ <documentation>
2453
+ Gets the login attributes used by the specified LDAP configurations.
2454
+
2455
+ </documentation>
2456
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2457
+ <input>
2458
+ <soap:body
2459
+ use="encoded"
2460
+ namespace="urn:iControl:Management/LDAPConfiguration"
2461
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2462
+ </input>
2463
+ <output>
2464
+ <soap:body
2465
+ use="encoded"
2466
+ namespace="urn:iControl:Management/LDAPConfiguration"
2467
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2468
+ </output>
2469
+ </operation>
2470
+
2471
+ <operation name="get_server">
2472
+ <documentation>
2473
+ Gets the lists of servers the specified LDAP configurations are associated with.
2474
+
2475
+ </documentation>
2476
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2477
+ <input>
2478
+ <soap:body
2479
+ use="encoded"
2480
+ namespace="urn:iControl:Management/LDAPConfiguration"
2481
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2482
+ </input>
2483
+ <output>
2484
+ <soap:body
2485
+ use="encoded"
2486
+ namespace="urn:iControl:Management/LDAPConfiguration"
2487
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2488
+ </output>
2489
+ </operation>
2490
+
2491
+ <operation name="add_server">
2492
+ <documentation>
2493
+ Adds/associates servers to the specified LDAP configurations.
2494
+
2495
+ </documentation>
2496
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2497
+ <input>
2498
+ <soap:body
2499
+ use="encoded"
2500
+ namespace="urn:iControl:Management/LDAPConfiguration"
2501
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2502
+ </input>
2503
+ <output>
2504
+ <soap:body
2505
+ use="encoded"
2506
+ namespace="urn:iControl:Management/LDAPConfiguration"
2507
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2508
+ </output>
2509
+ </operation>
2510
+
2511
+ <operation name="remove_server">
2512
+ <documentation>
2513
+ Removes servers from the specified LDAP configurations.
2514
+
2515
+ </documentation>
2516
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2517
+ <input>
2518
+ <soap:body
2519
+ use="encoded"
2520
+ namespace="urn:iControl:Management/LDAPConfiguration"
2521
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2522
+ </input>
2523
+ <output>
2524
+ <soap:body
2525
+ use="encoded"
2526
+ namespace="urn:iControl:Management/LDAPConfiguration"
2527
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2528
+ </output>
2529
+ </operation>
2530
+
2531
+ <operation name="set_user_template">
2532
+ <documentation>
2533
+ Sets the user templates used by the specified LDAP configurations.
2534
+
2535
+ </documentation>
2536
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2537
+ <input>
2538
+ <soap:body
2539
+ use="encoded"
2540
+ namespace="urn:iControl:Management/LDAPConfiguration"
2541
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2542
+ </input>
2543
+ <output>
2544
+ <soap:body
2545
+ use="encoded"
2546
+ namespace="urn:iControl:Management/LDAPConfiguration"
2547
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2548
+ </output>
2549
+ </operation>
2550
+
2551
+ <operation name="get_user_template">
2552
+ <documentation>
2553
+ Gets the user templates used by the specified LDAP configurations.
2554
+
2555
+ </documentation>
2556
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2557
+ <input>
2558
+ <soap:body
2559
+ use="encoded"
2560
+ namespace="urn:iControl:Management/LDAPConfiguration"
2561
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2562
+ </input>
2563
+ <output>
2564
+ <soap:body
2565
+ use="encoded"
2566
+ namespace="urn:iControl:Management/LDAPConfiguration"
2567
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2568
+ </output>
2569
+ </operation>
2570
+
2571
+ <operation name="set_description">
2572
+ <documentation>
2573
+ Sets the description for a set of LDAP configurations.
2574
+
2575
+ This is an arbitrary field which can be used for any purpose.
2576
+
2577
+ </documentation>
2578
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2579
+ <input>
2580
+ <soap:body
2581
+ use="encoded"
2582
+ namespace="urn:iControl:Management/LDAPConfiguration"
2583
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2584
+ </input>
2585
+ <output>
2586
+ <soap:body
2587
+ use="encoded"
2588
+ namespace="urn:iControl:Management/LDAPConfiguration"
2589
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2590
+ </output>
2591
+ </operation>
2592
+
2593
+ <operation name="get_description">
2594
+ <documentation>
2595
+ Gets the descriptions for a set of LDAP configurations.
2596
+
2597
+ </documentation>
2598
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2599
+ <input>
2600
+ <soap:body
2601
+ use="encoded"
2602
+ namespace="urn:iControl:Management/LDAPConfiguration"
2603
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2604
+ </input>
2605
+ <output>
2606
+ <soap:body
2607
+ use="encoded"
2608
+ namespace="urn:iControl:Management/LDAPConfiguration"
2609
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2610
+ </output>
2611
+ </operation>
2612
+
2613
+ <operation name="get_version">
2614
+ <documentation>
2615
+ Gets the version information for this interface.
2616
+
2617
+ </documentation>
2618
+ <soap:operation soapAction="urn:iControl:Management/LDAPConfiguration"/>
2619
+ <input>
2620
+ <soap:body
2621
+ use="encoded"
2622
+ namespace="urn:iControl:Management/LDAPConfiguration"
2623
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2624
+ </input>
2625
+ <output>
2626
+ <soap:body
2627
+ use="encoded"
2628
+ namespace="urn:iControl:Management/LDAPConfiguration"
2629
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2630
+ </output>
2631
+ </operation>
2632
+ </binding>
2633
+
2634
+ <!-- service -->
2635
+
2636
+ <service name="Management.LDAPConfiguration">
2637
+ <documentation>
2638
+ The LDAPConfiguration interface enables you to manage LDAP PAM configuration.
2639
+
2640
+ </documentation>
2641
+ <port name="Management.LDAPConfigurationPort" binding="tns:Management.LDAPConfigurationBinding">
2642
+ <soap:address location="https://url_to_service"/>
2643
+ </port>
2644
+ </service>
2645
+ </definitions>