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,943 @@
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.TACACSConfiguration"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:simpleType name="Common.EnabledState">
25
+ <xsd:restriction base="xsd:string">
26
+ <xsd:enumeration value="STATE_DISABLED">
27
+ <xsd:annotation>
28
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
29
+ </xsd:annotation>
30
+ </xsd:enumeration>
31
+ <xsd:enumeration value="STATE_ENABLED">
32
+ <xsd:annotation>
33
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
34
+ </xsd:annotation>
35
+ </xsd:enumeration>
36
+ </xsd:restriction>
37
+ </xsd:simpleType>
38
+ <xsd:complexType name="Common.StringSequence">
39
+ <xsd:complexContent>
40
+ <xsd:restriction base='SOAP-ENC:Array'>
41
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
42
+ </xsd:restriction>
43
+ </xsd:complexContent>
44
+ </xsd:complexType>
45
+ <xsd:complexType name="Common.StringSequenceSequence">
46
+ <xsd:complexContent>
47
+ <xsd:restriction base='SOAP-ENC:Array'>
48
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
49
+ </xsd:restriction>
50
+ </xsd:complexContent>
51
+ </xsd:complexType>
52
+ <xsd:complexType name="Common.EnabledStateSequence">
53
+ <xsd:complexContent>
54
+ <xsd:restriction base='SOAP-ENC:Array'>
55
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
56
+ </xsd:restriction>
57
+ </xsd:complexContent>
58
+ </xsd:complexType>
59
+ </xsd:schema>
60
+ </types>
61
+
62
+ <!-- message -->
63
+
64
+ <message name="Management.TACACSConfiguration.get_listRequest">
65
+ </message>
66
+ <message name="Management.TACACSConfiguration.get_listResponse">
67
+ <part name="return" type="tns:Common.StringSequence"/>
68
+ </message>
69
+
70
+ <message name="Management.TACACSConfiguration.createRequest">
71
+ <part name="config_names" type="tns:Common.StringSequence"/>
72
+ <part name="secrets" type="tns:Common.StringSequence"/>
73
+ <part name="service_names" type="tns:Common.StringSequence"/>
74
+ <part name="protocol_names" type="tns:Common.StringSequence"/>
75
+ <part name="servers" type="tns:Common.StringSequenceSequence"/>
76
+ </message>
77
+ <message name="Management.TACACSConfiguration.createResponse">
78
+ </message>
79
+
80
+ <message name="Management.TACACSConfiguration.delete_configurationRequest">
81
+ <part name="config_names" type="tns:Common.StringSequence"/>
82
+ </message>
83
+ <message name="Management.TACACSConfiguration.delete_configurationResponse">
84
+ </message>
85
+
86
+ <message name="Management.TACACSConfiguration.delete_all_configurationsRequest">
87
+ </message>
88
+ <message name="Management.TACACSConfiguration.delete_all_configurationsResponse">
89
+ </message>
90
+
91
+ <message name="Management.TACACSConfiguration.set_debug_stateRequest">
92
+ <part name="config_names" type="tns:Common.StringSequence"/>
93
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
94
+ </message>
95
+ <message name="Management.TACACSConfiguration.set_debug_stateResponse">
96
+ </message>
97
+
98
+ <message name="Management.TACACSConfiguration.get_debug_stateRequest">
99
+ <part name="config_names" type="tns:Common.StringSequence"/>
100
+ </message>
101
+ <message name="Management.TACACSConfiguration.get_debug_stateResponse">
102
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
103
+ </message>
104
+
105
+ <message name="Management.TACACSConfiguration.set_encryption_stateRequest">
106
+ <part name="config_names" type="tns:Common.StringSequence"/>
107
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
108
+ </message>
109
+ <message name="Management.TACACSConfiguration.set_encryption_stateResponse">
110
+ </message>
111
+
112
+ <message name="Management.TACACSConfiguration.get_encryption_stateRequest">
113
+ <part name="config_names" type="tns:Common.StringSequence"/>
114
+ </message>
115
+ <message name="Management.TACACSConfiguration.get_encryption_stateResponse">
116
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
117
+ </message>
118
+
119
+ <message name="Management.TACACSConfiguration.set_secretRequest">
120
+ <part name="config_names" type="tns:Common.StringSequence"/>
121
+ <part name="secrets" type="tns:Common.StringSequence"/>
122
+ </message>
123
+ <message name="Management.TACACSConfiguration.set_secretResponse">
124
+ </message>
125
+
126
+ <message name="Management.TACACSConfiguration.get_secretRequest">
127
+ <part name="config_names" type="tns:Common.StringSequence"/>
128
+ </message>
129
+ <message name="Management.TACACSConfiguration.get_secretResponse">
130
+ <part name="return" type="tns:Common.StringSequence"/>
131
+ </message>
132
+
133
+ <message name="Management.TACACSConfiguration.set_first_hit_stateRequest">
134
+ <part name="config_names" type="tns:Common.StringSequence"/>
135
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
136
+ </message>
137
+ <message name="Management.TACACSConfiguration.set_first_hit_stateResponse">
138
+ </message>
139
+
140
+ <message name="Management.TACACSConfiguration.get_first_hit_stateRequest">
141
+ <part name="config_names" type="tns:Common.StringSequence"/>
142
+ </message>
143
+ <message name="Management.TACACSConfiguration.get_first_hit_stateResponse">
144
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
145
+ </message>
146
+
147
+ <message name="Management.TACACSConfiguration.set_accounting_to_all_stateRequest">
148
+ <part name="config_names" type="tns:Common.StringSequence"/>
149
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
150
+ </message>
151
+ <message name="Management.TACACSConfiguration.set_accounting_to_all_stateResponse">
152
+ </message>
153
+
154
+ <message name="Management.TACACSConfiguration.get_accounting_to_all_stateRequest">
155
+ <part name="config_names" type="tns:Common.StringSequence"/>
156
+ </message>
157
+ <message name="Management.TACACSConfiguration.get_accounting_to_all_stateResponse">
158
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
159
+ </message>
160
+
161
+ <message name="Management.TACACSConfiguration.set_service_nameRequest">
162
+ <part name="config_names" type="tns:Common.StringSequence"/>
163
+ <part name="service_names" type="tns:Common.StringSequence"/>
164
+ </message>
165
+ <message name="Management.TACACSConfiguration.set_service_nameResponse">
166
+ </message>
167
+
168
+ <message name="Management.TACACSConfiguration.get_service_nameRequest">
169
+ <part name="config_names" type="tns:Common.StringSequence"/>
170
+ </message>
171
+ <message name="Management.TACACSConfiguration.get_service_nameResponse">
172
+ <part name="return" type="tns:Common.StringSequence"/>
173
+ </message>
174
+
175
+ <message name="Management.TACACSConfiguration.set_protocol_nameRequest">
176
+ <part name="config_names" type="tns:Common.StringSequence"/>
177
+ <part name="protocol_names" type="tns:Common.StringSequence"/>
178
+ </message>
179
+ <message name="Management.TACACSConfiguration.set_protocol_nameResponse">
180
+ </message>
181
+
182
+ <message name="Management.TACACSConfiguration.get_protocol_nameRequest">
183
+ <part name="config_names" type="tns:Common.StringSequence"/>
184
+ </message>
185
+ <message name="Management.TACACSConfiguration.get_protocol_nameResponse">
186
+ <part name="return" type="tns:Common.StringSequence"/>
187
+ </message>
188
+
189
+ <message name="Management.TACACSConfiguration.get_serverRequest">
190
+ <part name="config_names" type="tns:Common.StringSequence"/>
191
+ </message>
192
+ <message name="Management.TACACSConfiguration.get_serverResponse">
193
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
194
+ </message>
195
+
196
+ <message name="Management.TACACSConfiguration.add_serverRequest">
197
+ <part name="config_names" type="tns:Common.StringSequence"/>
198
+ <part name="servers" type="tns:Common.StringSequenceSequence"/>
199
+ </message>
200
+ <message name="Management.TACACSConfiguration.add_serverResponse">
201
+ </message>
202
+
203
+ <message name="Management.TACACSConfiguration.remove_serverRequest">
204
+ <part name="config_names" type="tns:Common.StringSequence"/>
205
+ <part name="servers" type="tns:Common.StringSequenceSequence"/>
206
+ </message>
207
+ <message name="Management.TACACSConfiguration.remove_serverResponse">
208
+ </message>
209
+
210
+ <message name="Management.TACACSConfiguration.set_descriptionRequest">
211
+ <part name="config_names" type="tns:Common.StringSequence"/>
212
+ <part name="descriptions" type="tns:Common.StringSequence"/>
213
+ </message>
214
+ <message name="Management.TACACSConfiguration.set_descriptionResponse">
215
+ </message>
216
+
217
+ <message name="Management.TACACSConfiguration.get_descriptionRequest">
218
+ <part name="config_names" type="tns:Common.StringSequence"/>
219
+ </message>
220
+ <message name="Management.TACACSConfiguration.get_descriptionResponse">
221
+ <part name="return" type="tns:Common.StringSequence"/>
222
+ </message>
223
+
224
+ <message name="Management.TACACSConfiguration.get_versionRequest">
225
+ </message>
226
+ <message name="Management.TACACSConfiguration.get_versionResponse">
227
+ <part name="return" type="xsd:string"/>
228
+ </message>
229
+
230
+ <!-- portType -->
231
+
232
+ <portType name="Management.TACACSConfigurationPortType">
233
+ <operation name="get_list">
234
+ <documentation>
235
+ Gets a list of all TACACS configurations.
236
+
237
+ </documentation>
238
+ <input message="tns:Management.TACACSConfiguration.get_listRequest"/>
239
+ <output message="tns:Management.TACACSConfiguration.get_listResponse"/>
240
+ </operation>
241
+ <operation name="create">
242
+ <documentation>
243
+ Creates the specified TACACS configurations.
244
+
245
+ </documentation>
246
+ <input message="tns:Management.TACACSConfiguration.createRequest"/>
247
+ <output message="tns:Management.TACACSConfiguration.createResponse"/>
248
+ </operation>
249
+ <operation name="delete_configuration">
250
+ <documentation>
251
+ Deletes the specified TACACS configurations.
252
+
253
+ </documentation>
254
+ <input message="tns:Management.TACACSConfiguration.delete_configurationRequest"/>
255
+ <output message="tns:Management.TACACSConfiguration.delete_configurationResponse"/>
256
+ </operation>
257
+ <operation name="delete_all_configurations">
258
+ <documentation>
259
+ Deletes all TACACS configurations.
260
+
261
+ </documentation>
262
+ <input message="tns:Management.TACACSConfiguration.delete_all_configurationsRequest"/>
263
+ <output message="tns:Management.TACACSConfiguration.delete_all_configurationsResponse"/>
264
+ </operation>
265
+ <operation name="set_debug_state">
266
+ <documentation>
267
+ Sets the states indicating whether syslog debugging is enabled/disabled.
268
+
269
+ </documentation>
270
+ <input message="tns:Management.TACACSConfiguration.set_debug_stateRequest"/>
271
+ <output message="tns:Management.TACACSConfiguration.set_debug_stateResponse"/>
272
+ </operation>
273
+ <operation name="get_debug_state">
274
+ <documentation>
275
+ Gets the states indicating whether syslog debugging is enabled/disabled.
276
+
277
+ </documentation>
278
+ <input message="tns:Management.TACACSConfiguration.get_debug_stateRequest"/>
279
+ <output message="tns:Management.TACACSConfiguration.get_debug_stateResponse"/>
280
+ </operation>
281
+ <operation name="set_encryption_state">
282
+ <documentation>
283
+ Sets the states indicating whether encryption on TACACS+ packets is enabled/disabled.
284
+
285
+ </documentation>
286
+ <input message="tns:Management.TACACSConfiguration.set_encryption_stateRequest"/>
287
+ <output message="tns:Management.TACACSConfiguration.set_encryption_stateResponse"/>
288
+ </operation>
289
+ <operation name="get_encryption_state">
290
+ <documentation>
291
+ Gets the states indicating whether encryption on TACACS+ packets is enabled/disabled.
292
+
293
+ </documentation>
294
+ <input message="tns:Management.TACACSConfiguration.get_encryption_stateRequest"/>
295
+ <output message="tns:Management.TACACSConfiguration.get_encryption_stateResponse"/>
296
+ </operation>
297
+ <operation name="set_secret">
298
+ <documentation>
299
+ Sets the secret keys used to encrypt/decrypt packets sent/received from the server.
300
+
301
+ </documentation>
302
+ <input message="tns:Management.TACACSConfiguration.set_secretRequest"/>
303
+ <output message="tns:Management.TACACSConfiguration.set_secretResponse"/>
304
+ </operation>
305
+ <operation name="get_secret">
306
+ <documentation>
307
+ Gets the secret keys used to encrypt/decrypt packets sent/received from the server.
308
+
309
+ </documentation>
310
+ <input message="tns:Management.TACACSConfiguration.get_secretRequest"/>
311
+ <output message="tns:Management.TACACSConfiguration.get_secretResponse"/>
312
+ </operation>
313
+ <operation name="set_first_hit_state">
314
+ <documentation>
315
+ Sets the states such that if enabled and if multiple servers are defined, try to authenticate the
316
+ user on all servers until the first authentication succeeds, or until all servers have been queried.
317
+ The first success response results in the auth succeeding.
318
+
319
+ </documentation>
320
+ <input message="tns:Management.TACACSConfiguration.set_first_hit_stateRequest"/>
321
+ <output message="tns:Management.TACACSConfiguration.set_first_hit_stateResponse"/>
322
+ </operation>
323
+ <operation name="get_first_hit_state">
324
+ <documentation>
325
+ Gets the states such that if enabled and if multiple servers are defined, try to authenticate the
326
+ user on all servers until the first authentication succeeds, or until all servers have been queried.
327
+ The first success response results in the auth succeeding.
328
+
329
+ </documentation>
330
+ <input message="tns:Management.TACACSConfiguration.get_first_hit_stateRequest"/>
331
+ <output message="tns:Management.TACACSConfiguration.get_first_hit_stateResponse"/>
332
+ </operation>
333
+ <operation name="set_accounting_to_all_state">
334
+ <documentation>
335
+ Sets the states such that if enabled and if multiple servers are defined, send accounting
336
+ start/stop packets to all servers (if session accounting has been enabled in the PAM service
337
+ configuration).
338
+
339
+ </documentation>
340
+ <input message="tns:Management.TACACSConfiguration.set_accounting_to_all_stateRequest"/>
341
+ <output message="tns:Management.TACACSConfiguration.set_accounting_to_all_stateResponse"/>
342
+ </operation>
343
+ <operation name="get_accounting_to_all_state">
344
+ <documentation>
345
+ Gets the states such that if enabled and if multiple servers are defined, send accounting
346
+ start/stop packets to all servers (if session accounting has been enabled in the PAM service
347
+ configuration).
348
+
349
+ </documentation>
350
+ <input message="tns:Management.TACACSConfiguration.get_accounting_to_all_stateRequest"/>
351
+ <output message="tns:Management.TACACSConfiguration.get_accounting_to_all_stateResponse"/>
352
+ </operation>
353
+ <operation name="set_service_name">
354
+ <documentation>
355
+ Sets the names of the TACACS+ servers' listening services used by the configurations.
356
+
357
+ </documentation>
358
+ <input message="tns:Management.TACACSConfiguration.set_service_nameRequest"/>
359
+ <output message="tns:Management.TACACSConfiguration.set_service_nameResponse"/>
360
+ </operation>
361
+ <operation name="get_service_name">
362
+ <documentation>
363
+ Gets the names of the TACACS+ servers' listening services used by the configurations.
364
+
365
+ </documentation>
366
+ <input message="tns:Management.TACACSConfiguration.get_service_nameRequest"/>
367
+ <output message="tns:Management.TACACSConfiguration.get_service_nameResponse"/>
368
+ </operation>
369
+ <operation name="set_protocol_name">
370
+ <documentation>
371
+ Sets the names of the TACACS+ servers' listening protocols used by the configurations.
372
+
373
+ </documentation>
374
+ <input message="tns:Management.TACACSConfiguration.set_protocol_nameRequest"/>
375
+ <output message="tns:Management.TACACSConfiguration.set_protocol_nameResponse"/>
376
+ </operation>
377
+ <operation name="get_protocol_name">
378
+ <documentation>
379
+ Gets the names of the TACACS+ servers' listening protocols used by the configurations.
380
+
381
+ </documentation>
382
+ <input message="tns:Management.TACACSConfiguration.get_protocol_nameRequest"/>
383
+ <output message="tns:Management.TACACSConfiguration.get_protocol_nameResponse"/>
384
+ </operation>
385
+ <operation name="get_server">
386
+ <documentation>
387
+ Gets the lists of servers the specified TACACS configurations are associated with.
388
+
389
+ </documentation>
390
+ <input message="tns:Management.TACACSConfiguration.get_serverRequest"/>
391
+ <output message="tns:Management.TACACSConfiguration.get_serverResponse"/>
392
+ </operation>
393
+ <operation name="add_server">
394
+ <documentation>
395
+ Adds/associates servers to the specified TACACS configurations.
396
+
397
+ </documentation>
398
+ <input message="tns:Management.TACACSConfiguration.add_serverRequest"/>
399
+ <output message="tns:Management.TACACSConfiguration.add_serverResponse"/>
400
+ </operation>
401
+ <operation name="remove_server">
402
+ <documentation>
403
+ Removes servers from the specified TACACS configurations.
404
+
405
+ </documentation>
406
+ <input message="tns:Management.TACACSConfiguration.remove_serverRequest"/>
407
+ <output message="tns:Management.TACACSConfiguration.remove_serverResponse"/>
408
+ </operation>
409
+ <operation name="set_description">
410
+ <documentation>
411
+ Sets the description for a set of TACACS configurations.
412
+
413
+ This is an arbitrary field which can be used for any purpose.
414
+
415
+ </documentation>
416
+ <input message="tns:Management.TACACSConfiguration.set_descriptionRequest"/>
417
+ <output message="tns:Management.TACACSConfiguration.set_descriptionResponse"/>
418
+ </operation>
419
+ <operation name="get_description">
420
+ <documentation>
421
+ Gets the descriptions for a set of TACACS configurations.
422
+
423
+ </documentation>
424
+ <input message="tns:Management.TACACSConfiguration.get_descriptionRequest"/>
425
+ <output message="tns:Management.TACACSConfiguration.get_descriptionResponse"/>
426
+ </operation>
427
+ <operation name="get_version">
428
+ <documentation>
429
+ Gets the version information for this interface.
430
+
431
+ </documentation>
432
+ <input message="tns:Management.TACACSConfiguration.get_versionRequest"/>
433
+ <output message="tns:Management.TACACSConfiguration.get_versionResponse"/>
434
+ </operation>
435
+ </portType>
436
+
437
+ <!-- binding -->
438
+
439
+ <binding name="Management.TACACSConfigurationBinding" type="tns:Management.TACACSConfigurationPortType">
440
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
441
+ <operation name="get_list">
442
+ <documentation>
443
+ Gets a list of all TACACS configurations.
444
+
445
+ </documentation>
446
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
447
+ <input>
448
+ <soap:body
449
+ use="encoded"
450
+ namespace="urn:iControl:Management/TACACSConfiguration"
451
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
452
+ </input>
453
+ <output>
454
+ <soap:body
455
+ use="encoded"
456
+ namespace="urn:iControl:Management/TACACSConfiguration"
457
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
458
+ </output>
459
+ </operation>
460
+
461
+ <operation name="create">
462
+ <documentation>
463
+ Creates the specified TACACS configurations.
464
+
465
+ </documentation>
466
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
467
+ <input>
468
+ <soap:body
469
+ use="encoded"
470
+ namespace="urn:iControl:Management/TACACSConfiguration"
471
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
472
+ </input>
473
+ <output>
474
+ <soap:body
475
+ use="encoded"
476
+ namespace="urn:iControl:Management/TACACSConfiguration"
477
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
478
+ </output>
479
+ </operation>
480
+
481
+ <operation name="delete_configuration">
482
+ <documentation>
483
+ Deletes the specified TACACS configurations.
484
+
485
+ </documentation>
486
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
487
+ <input>
488
+ <soap:body
489
+ use="encoded"
490
+ namespace="urn:iControl:Management/TACACSConfiguration"
491
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
492
+ </input>
493
+ <output>
494
+ <soap:body
495
+ use="encoded"
496
+ namespace="urn:iControl:Management/TACACSConfiguration"
497
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
498
+ </output>
499
+ </operation>
500
+
501
+ <operation name="delete_all_configurations">
502
+ <documentation>
503
+ Deletes all TACACS configurations.
504
+
505
+ </documentation>
506
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
507
+ <input>
508
+ <soap:body
509
+ use="encoded"
510
+ namespace="urn:iControl:Management/TACACSConfiguration"
511
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
512
+ </input>
513
+ <output>
514
+ <soap:body
515
+ use="encoded"
516
+ namespace="urn:iControl:Management/TACACSConfiguration"
517
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
518
+ </output>
519
+ </operation>
520
+
521
+ <operation name="set_debug_state">
522
+ <documentation>
523
+ Sets the states indicating whether syslog debugging is enabled/disabled.
524
+
525
+ </documentation>
526
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
527
+ <input>
528
+ <soap:body
529
+ use="encoded"
530
+ namespace="urn:iControl:Management/TACACSConfiguration"
531
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
532
+ </input>
533
+ <output>
534
+ <soap:body
535
+ use="encoded"
536
+ namespace="urn:iControl:Management/TACACSConfiguration"
537
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
538
+ </output>
539
+ </operation>
540
+
541
+ <operation name="get_debug_state">
542
+ <documentation>
543
+ Gets the states indicating whether syslog debugging is enabled/disabled.
544
+
545
+ </documentation>
546
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
547
+ <input>
548
+ <soap:body
549
+ use="encoded"
550
+ namespace="urn:iControl:Management/TACACSConfiguration"
551
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
552
+ </input>
553
+ <output>
554
+ <soap:body
555
+ use="encoded"
556
+ namespace="urn:iControl:Management/TACACSConfiguration"
557
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
558
+ </output>
559
+ </operation>
560
+
561
+ <operation name="set_encryption_state">
562
+ <documentation>
563
+ Sets the states indicating whether encryption on TACACS+ packets is enabled/disabled.
564
+
565
+ </documentation>
566
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
567
+ <input>
568
+ <soap:body
569
+ use="encoded"
570
+ namespace="urn:iControl:Management/TACACSConfiguration"
571
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
572
+ </input>
573
+ <output>
574
+ <soap:body
575
+ use="encoded"
576
+ namespace="urn:iControl:Management/TACACSConfiguration"
577
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
578
+ </output>
579
+ </operation>
580
+
581
+ <operation name="get_encryption_state">
582
+ <documentation>
583
+ Gets the states indicating whether encryption on TACACS+ packets is enabled/disabled.
584
+
585
+ </documentation>
586
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
587
+ <input>
588
+ <soap:body
589
+ use="encoded"
590
+ namespace="urn:iControl:Management/TACACSConfiguration"
591
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
592
+ </input>
593
+ <output>
594
+ <soap:body
595
+ use="encoded"
596
+ namespace="urn:iControl:Management/TACACSConfiguration"
597
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
598
+ </output>
599
+ </operation>
600
+
601
+ <operation name="set_secret">
602
+ <documentation>
603
+ Sets the secret keys used to encrypt/decrypt packets sent/received from the server.
604
+
605
+ </documentation>
606
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
607
+ <input>
608
+ <soap:body
609
+ use="encoded"
610
+ namespace="urn:iControl:Management/TACACSConfiguration"
611
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
612
+ </input>
613
+ <output>
614
+ <soap:body
615
+ use="encoded"
616
+ namespace="urn:iControl:Management/TACACSConfiguration"
617
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
618
+ </output>
619
+ </operation>
620
+
621
+ <operation name="get_secret">
622
+ <documentation>
623
+ Gets the secret keys used to encrypt/decrypt packets sent/received from the server.
624
+
625
+ </documentation>
626
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
627
+ <input>
628
+ <soap:body
629
+ use="encoded"
630
+ namespace="urn:iControl:Management/TACACSConfiguration"
631
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
632
+ </input>
633
+ <output>
634
+ <soap:body
635
+ use="encoded"
636
+ namespace="urn:iControl:Management/TACACSConfiguration"
637
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
638
+ </output>
639
+ </operation>
640
+
641
+ <operation name="set_first_hit_state">
642
+ <documentation>
643
+ Sets the states such that if enabled and if multiple servers are defined, try to authenticate the
644
+ user on all servers until the first authentication succeeds, or until all servers have been queried.
645
+ The first success response results in the auth succeeding.
646
+
647
+ </documentation>
648
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
649
+ <input>
650
+ <soap:body
651
+ use="encoded"
652
+ namespace="urn:iControl:Management/TACACSConfiguration"
653
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
654
+ </input>
655
+ <output>
656
+ <soap:body
657
+ use="encoded"
658
+ namespace="urn:iControl:Management/TACACSConfiguration"
659
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
660
+ </output>
661
+ </operation>
662
+
663
+ <operation name="get_first_hit_state">
664
+ <documentation>
665
+ Gets the states such that if enabled and if multiple servers are defined, try to authenticate the
666
+ user on all servers until the first authentication succeeds, or until all servers have been queried.
667
+ The first success response results in the auth succeeding.
668
+
669
+ </documentation>
670
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
671
+ <input>
672
+ <soap:body
673
+ use="encoded"
674
+ namespace="urn:iControl:Management/TACACSConfiguration"
675
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
676
+ </input>
677
+ <output>
678
+ <soap:body
679
+ use="encoded"
680
+ namespace="urn:iControl:Management/TACACSConfiguration"
681
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
682
+ </output>
683
+ </operation>
684
+
685
+ <operation name="set_accounting_to_all_state">
686
+ <documentation>
687
+ Sets the states such that if enabled and if multiple servers are defined, send accounting
688
+ start/stop packets to all servers (if session accounting has been enabled in the PAM service
689
+ configuration).
690
+
691
+ </documentation>
692
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
693
+ <input>
694
+ <soap:body
695
+ use="encoded"
696
+ namespace="urn:iControl:Management/TACACSConfiguration"
697
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
698
+ </input>
699
+ <output>
700
+ <soap:body
701
+ use="encoded"
702
+ namespace="urn:iControl:Management/TACACSConfiguration"
703
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
704
+ </output>
705
+ </operation>
706
+
707
+ <operation name="get_accounting_to_all_state">
708
+ <documentation>
709
+ Gets the states such that if enabled and if multiple servers are defined, send accounting
710
+ start/stop packets to all servers (if session accounting has been enabled in the PAM service
711
+ configuration).
712
+
713
+ </documentation>
714
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
715
+ <input>
716
+ <soap:body
717
+ use="encoded"
718
+ namespace="urn:iControl:Management/TACACSConfiguration"
719
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
720
+ </input>
721
+ <output>
722
+ <soap:body
723
+ use="encoded"
724
+ namespace="urn:iControl:Management/TACACSConfiguration"
725
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
726
+ </output>
727
+ </operation>
728
+
729
+ <operation name="set_service_name">
730
+ <documentation>
731
+ Sets the names of the TACACS+ servers' listening services used by the configurations.
732
+
733
+ </documentation>
734
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
735
+ <input>
736
+ <soap:body
737
+ use="encoded"
738
+ namespace="urn:iControl:Management/TACACSConfiguration"
739
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
740
+ </input>
741
+ <output>
742
+ <soap:body
743
+ use="encoded"
744
+ namespace="urn:iControl:Management/TACACSConfiguration"
745
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
746
+ </output>
747
+ </operation>
748
+
749
+ <operation name="get_service_name">
750
+ <documentation>
751
+ Gets the names of the TACACS+ servers' listening services used by the configurations.
752
+
753
+ </documentation>
754
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
755
+ <input>
756
+ <soap:body
757
+ use="encoded"
758
+ namespace="urn:iControl:Management/TACACSConfiguration"
759
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
760
+ </input>
761
+ <output>
762
+ <soap:body
763
+ use="encoded"
764
+ namespace="urn:iControl:Management/TACACSConfiguration"
765
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
766
+ </output>
767
+ </operation>
768
+
769
+ <operation name="set_protocol_name">
770
+ <documentation>
771
+ Sets the names of the TACACS+ servers' listening protocols used by the configurations.
772
+
773
+ </documentation>
774
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
775
+ <input>
776
+ <soap:body
777
+ use="encoded"
778
+ namespace="urn:iControl:Management/TACACSConfiguration"
779
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
780
+ </input>
781
+ <output>
782
+ <soap:body
783
+ use="encoded"
784
+ namespace="urn:iControl:Management/TACACSConfiguration"
785
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
786
+ </output>
787
+ </operation>
788
+
789
+ <operation name="get_protocol_name">
790
+ <documentation>
791
+ Gets the names of the TACACS+ servers' listening protocols used by the configurations.
792
+
793
+ </documentation>
794
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
795
+ <input>
796
+ <soap:body
797
+ use="encoded"
798
+ namespace="urn:iControl:Management/TACACSConfiguration"
799
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
800
+ </input>
801
+ <output>
802
+ <soap:body
803
+ use="encoded"
804
+ namespace="urn:iControl:Management/TACACSConfiguration"
805
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
806
+ </output>
807
+ </operation>
808
+
809
+ <operation name="get_server">
810
+ <documentation>
811
+ Gets the lists of servers the specified TACACS configurations are associated with.
812
+
813
+ </documentation>
814
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
815
+ <input>
816
+ <soap:body
817
+ use="encoded"
818
+ namespace="urn:iControl:Management/TACACSConfiguration"
819
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
820
+ </input>
821
+ <output>
822
+ <soap:body
823
+ use="encoded"
824
+ namespace="urn:iControl:Management/TACACSConfiguration"
825
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
826
+ </output>
827
+ </operation>
828
+
829
+ <operation name="add_server">
830
+ <documentation>
831
+ Adds/associates servers to the specified TACACS configurations.
832
+
833
+ </documentation>
834
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
835
+ <input>
836
+ <soap:body
837
+ use="encoded"
838
+ namespace="urn:iControl:Management/TACACSConfiguration"
839
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
840
+ </input>
841
+ <output>
842
+ <soap:body
843
+ use="encoded"
844
+ namespace="urn:iControl:Management/TACACSConfiguration"
845
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
846
+ </output>
847
+ </operation>
848
+
849
+ <operation name="remove_server">
850
+ <documentation>
851
+ Removes servers from the specified TACACS configurations.
852
+
853
+ </documentation>
854
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
855
+ <input>
856
+ <soap:body
857
+ use="encoded"
858
+ namespace="urn:iControl:Management/TACACSConfiguration"
859
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
860
+ </input>
861
+ <output>
862
+ <soap:body
863
+ use="encoded"
864
+ namespace="urn:iControl:Management/TACACSConfiguration"
865
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
866
+ </output>
867
+ </operation>
868
+
869
+ <operation name="set_description">
870
+ <documentation>
871
+ Sets the description for a set of TACACS configurations.
872
+
873
+ This is an arbitrary field which can be used for any purpose.
874
+
875
+ </documentation>
876
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
877
+ <input>
878
+ <soap:body
879
+ use="encoded"
880
+ namespace="urn:iControl:Management/TACACSConfiguration"
881
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
882
+ </input>
883
+ <output>
884
+ <soap:body
885
+ use="encoded"
886
+ namespace="urn:iControl:Management/TACACSConfiguration"
887
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
888
+ </output>
889
+ </operation>
890
+
891
+ <operation name="get_description">
892
+ <documentation>
893
+ Gets the descriptions for a set of TACACS configurations.
894
+
895
+ </documentation>
896
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
897
+ <input>
898
+ <soap:body
899
+ use="encoded"
900
+ namespace="urn:iControl:Management/TACACSConfiguration"
901
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
902
+ </input>
903
+ <output>
904
+ <soap:body
905
+ use="encoded"
906
+ namespace="urn:iControl:Management/TACACSConfiguration"
907
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
908
+ </output>
909
+ </operation>
910
+
911
+ <operation name="get_version">
912
+ <documentation>
913
+ Gets the version information for this interface.
914
+
915
+ </documentation>
916
+ <soap:operation soapAction="urn:iControl:Management/TACACSConfiguration"/>
917
+ <input>
918
+ <soap:body
919
+ use="encoded"
920
+ namespace="urn:iControl:Management/TACACSConfiguration"
921
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
922
+ </input>
923
+ <output>
924
+ <soap:body
925
+ use="encoded"
926
+ namespace="urn:iControl:Management/TACACSConfiguration"
927
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
928
+ </output>
929
+ </operation>
930
+ </binding>
931
+
932
+ <!-- service -->
933
+
934
+ <service name="Management.TACACSConfiguration">
935
+ <documentation>
936
+ The TACACSConfiguration interface enables you to manage TACACS PAM configuration.
937
+
938
+ </documentation>
939
+ <port name="Management.TACACSConfigurationPort" binding="tns:Management.TACACSConfigurationBinding">
940
+ <soap:address location="https://url_to_service"/>
941
+ </port>
942
+ </service>
943
+ </definitions>