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