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,679 @@
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="LTConfig.Field"
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="LTConfig.ClassInstanceKey">
25
+ <xsd:sequence>
26
+ <xsd:element name="container" type="xsd:string"/>
27
+ <xsd:element name="container_class" type="xsd:string"/>
28
+ <xsd:element name="class_name" type="xsd:string"/>
29
+ <xsd:element name="name" type="xsd:string"/>
30
+ </xsd:sequence>
31
+ </xsd:complexType>
32
+ <xsd:simpleType name="Common.EnabledState">
33
+ <xsd:restriction base="xsd:string">
34
+ <xsd:enumeration value="STATE_DISABLED">
35
+ <xsd:annotation>
36
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
37
+ </xsd:annotation>
38
+ </xsd:enumeration>
39
+ <xsd:enumeration value="STATE_ENABLED">
40
+ <xsd:annotation>
41
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
42
+ </xsd:annotation>
43
+ </xsd:enumeration>
44
+ </xsd:restriction>
45
+ </xsd:simpleType>
46
+ <xsd:complexType name="Common.StringSequence">
47
+ <xsd:complexContent>
48
+ <xsd:restriction base='SOAP-ENC:Array'>
49
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
50
+ </xsd:restriction>
51
+ </xsd:complexContent>
52
+ </xsd:complexType>
53
+ <xsd:complexType name="Common.StringSequenceSequence">
54
+ <xsd:complexContent>
55
+ <xsd:restriction base='SOAP-ENC:Array'>
56
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
57
+ </xsd:restriction>
58
+ </xsd:complexContent>
59
+ </xsd:complexType>
60
+ <xsd:complexType name="LTConfig.Field.EnabledStateSequenceSequence">
61
+ <xsd:complexContent>
62
+ <xsd:restriction base='SOAP-ENC:Array'>
63
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledStateSequence[]'/>
64
+ </xsd:restriction>
65
+ </xsd:complexContent>
66
+ </xsd:complexType>
67
+ <xsd:complexType name="LTConfig.ClassInstanceKeySequence">
68
+ <xsd:complexContent>
69
+ <xsd:restriction base='SOAP-ENC:Array'>
70
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:LTConfig.ClassInstanceKey[]'/>
71
+ </xsd:restriction>
72
+ </xsd:complexContent>
73
+ </xsd:complexType>
74
+ <xsd:complexType name="Common.EnabledStateSequence">
75
+ <xsd:complexContent>
76
+ <xsd:restriction base='SOAP-ENC:Array'>
77
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
78
+ </xsd:restriction>
79
+ </xsd:complexContent>
80
+ </xsd:complexType>
81
+ </xsd:schema>
82
+ </types>
83
+
84
+ <!-- message -->
85
+
86
+ <message name="LTConfig.Field.get_listRequest">
87
+ <part name="class_names" type="tns:Common.StringSequence"/>
88
+ </message>
89
+ <message name="LTConfig.Field.get_listResponse">
90
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
91
+ </message>
92
+
93
+ <message name="LTConfig.Field.get_display_nameRequest">
94
+ <part name="class_names" type="tns:Common.StringSequence"/>
95
+ <part name="field_names" type="tns:Common.StringSequenceSequence"/>
96
+ </message>
97
+ <message name="LTConfig.Field.get_display_nameResponse">
98
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
99
+ </message>
100
+
101
+ <message name="LTConfig.Field.get_type_informationRequest">
102
+ <part name="class_names" type="tns:Common.StringSequence"/>
103
+ <part name="field_names" type="tns:Common.StringSequenceSequence"/>
104
+ </message>
105
+ <message name="LTConfig.Field.get_type_informationResponse">
106
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
107
+ </message>
108
+
109
+ <message name="LTConfig.Field.get_defaultRequest">
110
+ <part name="class_names" type="tns:Common.StringSequence"/>
111
+ <part name="field_names" type="tns:Common.StringSequenceSequence"/>
112
+ </message>
113
+ <message name="LTConfig.Field.get_defaultResponse">
114
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
115
+ </message>
116
+
117
+ <message name="LTConfig.Field.get_required_stateRequest">
118
+ <part name="class_names" type="tns:Common.StringSequence"/>
119
+ <part name="field_names" type="tns:Common.StringSequenceSequence"/>
120
+ </message>
121
+ <message name="LTConfig.Field.get_required_stateResponse">
122
+ <part name="return" type="tns:LTConfig.Field.EnabledStateSequenceSequence"/>
123
+ </message>
124
+
125
+ <message name="LTConfig.Field.get_application_dataRequest">
126
+ <part name="class_names" type="tns:Common.StringSequence"/>
127
+ <part name="field_names" type="tns:Common.StringSequenceSequence"/>
128
+ </message>
129
+ <message name="LTConfig.Field.get_application_dataResponse">
130
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
131
+ </message>
132
+
133
+ <message name="LTConfig.Field.get_db_variable_mirror_informationRequest">
134
+ <part name="class_names" type="tns:Common.StringSequence"/>
135
+ <part name="field_names" type="tns:Common.StringSequenceSequence"/>
136
+ </message>
137
+ <message name="LTConfig.Field.get_db_variable_mirror_informationResponse">
138
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
139
+ </message>
140
+
141
+ <message name="LTConfig.Field.get_clustered_stateRequest">
142
+ <part name="class_names" type="tns:Common.StringSequence"/>
143
+ <part name="field_names" type="tns:Common.StringSequenceSequence"/>
144
+ </message>
145
+ <message name="LTConfig.Field.get_clustered_stateResponse">
146
+ <part name="return" type="tns:LTConfig.Field.EnabledStateSequenceSequence"/>
147
+ </message>
148
+
149
+ <message name="LTConfig.Field.get_configsyncd_stateRequest">
150
+ <part name="class_names" type="tns:Common.StringSequence"/>
151
+ <part name="field_names" type="tns:Common.StringSequenceSequence"/>
152
+ </message>
153
+ <message name="LTConfig.Field.get_configsyncd_stateResponse">
154
+ <part name="return" type="tns:LTConfig.Field.EnabledStateSequenceSequence"/>
155
+ </message>
156
+
157
+ <message name="LTConfig.Field.set_valuesRequest">
158
+ <part name="create_instances_if_needed" type="xsd:boolean"/>
159
+ <part name="class_instance_keys" type="tns:LTConfig.ClassInstanceKeySequence"/>
160
+ <part name="field_instance_names" type="tns:Common.StringSequenceSequence"/>
161
+ <part name="values" type="tns:Common.StringSequenceSequence"/>
162
+ </message>
163
+ <message name="LTConfig.Field.set_valuesResponse">
164
+ </message>
165
+
166
+ <message name="LTConfig.Field.get_valuesRequest">
167
+ <part name="class_instance_keys" type="tns:LTConfig.ClassInstanceKeySequence"/>
168
+ <part name="field_instance_names" type="tns:Common.StringSequenceSequence"/>
169
+ </message>
170
+ <message name="LTConfig.Field.get_valuesResponse">
171
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
172
+ </message>
173
+
174
+ <message name="LTConfig.Field.set_valueRequest">
175
+ <part name="create_instances_if_needed" type="xsd:boolean"/>
176
+ <part name="class_instance_key" type="tns:LTConfig.ClassInstanceKey"/>
177
+ <part name="field_instance_name" type="xsd:string"/>
178
+ <part name="value" type="xsd:string"/>
179
+ </message>
180
+ <message name="LTConfig.Field.set_valueResponse">
181
+ </message>
182
+
183
+ <message name="LTConfig.Field.get_valueRequest">
184
+ <part name="class_instance_key" type="tns:LTConfig.ClassInstanceKey"/>
185
+ <part name="field_instance_name" type="xsd:string"/>
186
+ </message>
187
+ <message name="LTConfig.Field.get_valueResponse">
188
+ <part name="return" type="xsd:string"/>
189
+ </message>
190
+
191
+ <message name="LTConfig.Field.get_versionRequest">
192
+ </message>
193
+ <message name="LTConfig.Field.get_versionResponse">
194
+ <part name="return" type="xsd:string"/>
195
+ </message>
196
+
197
+ <!-- portType -->
198
+
199
+ <portType name="LTConfig.FieldPortType">
200
+ <operation name="get_list">
201
+ <documentation>
202
+ Gets a list of loosely-typed configuration fields for the
203
+ specified classes.
204
+
205
+ </documentation>
206
+ <input message="tns:LTConfig.Field.get_listRequest"/>
207
+ <output message="tns:LTConfig.Field.get_listResponse"/>
208
+ </operation>
209
+ <operation name="get_display_name">
210
+ <documentation>
211
+ Gets display name information for one or more loosely-typed
212
+ configuration fields for the specified classes.
213
+
214
+ </documentation>
215
+ <input message="tns:LTConfig.Field.get_display_nameRequest"/>
216
+ <output message="tns:LTConfig.Field.get_display_nameResponse"/>
217
+ </operation>
218
+ <operation name="get_type_information">
219
+ <documentation>
220
+ Gets type information for one or more loosely-typed
221
+ configuration fields for the specified classes.
222
+ (This is not to be confused with type; type information
223
+ gives information relevant to the processing of a basic
224
+ type, for example, type int might have type information
225
+ specifying min and max value).
226
+
227
+ </documentation>
228
+ <input message="tns:LTConfig.Field.get_type_informationRequest"/>
229
+ <output message="tns:LTConfig.Field.get_type_informationResponse"/>
230
+ </operation>
231
+ <operation name="get_default">
232
+ <documentation>
233
+ Gets default value information for one or more loosely-typed
234
+ configuration fields for the specified classes.
235
+
236
+ </documentation>
237
+ <input message="tns:LTConfig.Field.get_defaultRequest"/>
238
+ <output message="tns:LTConfig.Field.get_defaultResponse"/>
239
+ </operation>
240
+ <operation name="get_required_state">
241
+ <documentation>
242
+ Gets the required state for one or more specified
243
+ loosely-typed configuration fields for the specified
244
+ classes. If the field is required, that means don't use the
245
+ default.
246
+
247
+ </documentation>
248
+ <input message="tns:LTConfig.Field.get_required_stateRequest"/>
249
+ <output message="tns:LTConfig.Field.get_required_stateResponse"/>
250
+ </operation>
251
+ <operation name="get_application_data">
252
+ <documentation>
253
+ Gets application data for one or more loosely-typed
254
+ configuration fields for the specified classes. This is the
255
+ "back-end application hook".
256
+
257
+ </documentation>
258
+ <input message="tns:LTConfig.Field.get_application_dataRequest"/>
259
+ <output message="tns:LTConfig.Field.get_application_dataResponse"/>
260
+ </operation>
261
+ <operation name="get_db_variable_mirror_information">
262
+ <documentation>
263
+ Gets db variable mirror information for one or more
264
+ loosely-typed configuration fields for the specified
265
+ classes. This, if non-empty, indicates which db variable
266
+ should have its value mirrored with this field.
267
+
268
+ </documentation>
269
+ <input message="tns:LTConfig.Field.get_db_variable_mirror_informationRequest"/>
270
+ <output message="tns:LTConfig.Field.get_db_variable_mirror_informationResponse"/>
271
+ </operation>
272
+ <operation name="get_clustered_state">
273
+ <documentation>
274
+ Gets the clustered state for one or more specified
275
+ loosely-typed configuration fields for the specified
276
+ classes. If the field is clustered, that means don't use the
277
+ default.
278
+
279
+ </documentation>
280
+ <input message="tns:LTConfig.Field.get_clustered_stateRequest"/>
281
+ <output message="tns:LTConfig.Field.get_clustered_stateResponse"/>
282
+ </operation>
283
+ <operation name="get_configsyncd_state">
284
+ <documentation>
285
+ Gets the configsyncd state for one or more specified
286
+ loosely-typed configuration fields for the specified
287
+ classes. If the field is configsyncd, that means don't use the
288
+ default.
289
+
290
+ </documentation>
291
+ <input message="tns:LTConfig.Field.get_configsyncd_stateRequest"/>
292
+ <output message="tns:LTConfig.Field.get_configsyncd_stateResponse"/>
293
+ </operation>
294
+ <operation name="set_values">
295
+ <documentation>
296
+ Sets values for one or more loosely-typed configuration
297
+ field instances for the specified class instances.
298
+
299
+ </documentation>
300
+ <input message="tns:LTConfig.Field.set_valuesRequest"/>
301
+ <output message="tns:LTConfig.Field.set_valuesResponse"/>
302
+ </operation>
303
+ <operation name="get_values">
304
+ <documentation>
305
+ Gets values for one or more loosely-typed configuration
306
+ field instances for the specified class instances.
307
+
308
+ </documentation>
309
+ <input message="tns:LTConfig.Field.get_valuesRequest"/>
310
+ <output message="tns:LTConfig.Field.get_valuesResponse"/>
311
+ </operation>
312
+ <operation name="set_value">
313
+ <documentation>
314
+ Sets the value for one loosely-typed configuration
315
+ field instance for the specified class instance.
316
+
317
+ This is for convenience, when you want to set just one
318
+ value in just one class instance. Use set_values instead
319
+ for greater efficiency when setting multiple field values.
320
+
321
+ </documentation>
322
+ <input message="tns:LTConfig.Field.set_valueRequest"/>
323
+ <output message="tns:LTConfig.Field.set_valueResponse"/>
324
+ </operation>
325
+ <operation name="get_value">
326
+ <documentation>
327
+ Gets the value for one loosely-typed configuration
328
+ field instance for the specified class instance.
329
+
330
+ This is for convenience, when you want to get just one
331
+ value in just one class instance. Use get_values instead
332
+ for greater efficiency when getting multiple field values.
333
+
334
+ </documentation>
335
+ <input message="tns:LTConfig.Field.get_valueRequest"/>
336
+ <output message="tns:LTConfig.Field.get_valueResponse"/>
337
+ </operation>
338
+ <operation name="get_version">
339
+ <documentation>
340
+ Gets the version information for this interface.
341
+
342
+ </documentation>
343
+ <input message="tns:LTConfig.Field.get_versionRequest"/>
344
+ <output message="tns:LTConfig.Field.get_versionResponse"/>
345
+ </operation>
346
+ </portType>
347
+
348
+ <!-- binding -->
349
+
350
+ <binding name="LTConfig.FieldBinding" type="tns:LTConfig.FieldPortType">
351
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
352
+ <operation name="get_list">
353
+ <documentation>
354
+ Gets a list of loosely-typed configuration fields for the
355
+ specified classes.
356
+
357
+ </documentation>
358
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
359
+ <input>
360
+ <soap:body
361
+ use="encoded"
362
+ namespace="urn:iControl:LTConfig/Field"
363
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
364
+ </input>
365
+ <output>
366
+ <soap:body
367
+ use="encoded"
368
+ namespace="urn:iControl:LTConfig/Field"
369
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
370
+ </output>
371
+ </operation>
372
+
373
+ <operation name="get_display_name">
374
+ <documentation>
375
+ Gets display name information for one or more loosely-typed
376
+ configuration fields for the specified classes.
377
+
378
+ </documentation>
379
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
380
+ <input>
381
+ <soap:body
382
+ use="encoded"
383
+ namespace="urn:iControl:LTConfig/Field"
384
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
385
+ </input>
386
+ <output>
387
+ <soap:body
388
+ use="encoded"
389
+ namespace="urn:iControl:LTConfig/Field"
390
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
391
+ </output>
392
+ </operation>
393
+
394
+ <operation name="get_type_information">
395
+ <documentation>
396
+ Gets type information for one or more loosely-typed
397
+ configuration fields for the specified classes.
398
+ (This is not to be confused with type; type information
399
+ gives information relevant to the processing of a basic
400
+ type, for example, type int might have type information
401
+ specifying min and max value).
402
+
403
+ </documentation>
404
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
405
+ <input>
406
+ <soap:body
407
+ use="encoded"
408
+ namespace="urn:iControl:LTConfig/Field"
409
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
410
+ </input>
411
+ <output>
412
+ <soap:body
413
+ use="encoded"
414
+ namespace="urn:iControl:LTConfig/Field"
415
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
416
+ </output>
417
+ </operation>
418
+
419
+ <operation name="get_default">
420
+ <documentation>
421
+ Gets default value information for one or more loosely-typed
422
+ configuration fields for the specified classes.
423
+
424
+ </documentation>
425
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
426
+ <input>
427
+ <soap:body
428
+ use="encoded"
429
+ namespace="urn:iControl:LTConfig/Field"
430
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
431
+ </input>
432
+ <output>
433
+ <soap:body
434
+ use="encoded"
435
+ namespace="urn:iControl:LTConfig/Field"
436
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
437
+ </output>
438
+ </operation>
439
+
440
+ <operation name="get_required_state">
441
+ <documentation>
442
+ Gets the required state for one or more specified
443
+ loosely-typed configuration fields for the specified
444
+ classes. If the field is required, that means don't use the
445
+ default.
446
+
447
+ </documentation>
448
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
449
+ <input>
450
+ <soap:body
451
+ use="encoded"
452
+ namespace="urn:iControl:LTConfig/Field"
453
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
454
+ </input>
455
+ <output>
456
+ <soap:body
457
+ use="encoded"
458
+ namespace="urn:iControl:LTConfig/Field"
459
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
460
+ </output>
461
+ </operation>
462
+
463
+ <operation name="get_application_data">
464
+ <documentation>
465
+ Gets application data for one or more loosely-typed
466
+ configuration fields for the specified classes. This is the
467
+ "back-end application hook".
468
+
469
+ </documentation>
470
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
471
+ <input>
472
+ <soap:body
473
+ use="encoded"
474
+ namespace="urn:iControl:LTConfig/Field"
475
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
476
+ </input>
477
+ <output>
478
+ <soap:body
479
+ use="encoded"
480
+ namespace="urn:iControl:LTConfig/Field"
481
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
482
+ </output>
483
+ </operation>
484
+
485
+ <operation name="get_db_variable_mirror_information">
486
+ <documentation>
487
+ Gets db variable mirror information for one or more
488
+ loosely-typed configuration fields for the specified
489
+ classes. This, if non-empty, indicates which db variable
490
+ should have its value mirrored with this field.
491
+
492
+ </documentation>
493
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
494
+ <input>
495
+ <soap:body
496
+ use="encoded"
497
+ namespace="urn:iControl:LTConfig/Field"
498
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
499
+ </input>
500
+ <output>
501
+ <soap:body
502
+ use="encoded"
503
+ namespace="urn:iControl:LTConfig/Field"
504
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
505
+ </output>
506
+ </operation>
507
+
508
+ <operation name="get_clustered_state">
509
+ <documentation>
510
+ Gets the clustered state for one or more specified
511
+ loosely-typed configuration fields for the specified
512
+ classes. If the field is clustered, that means don't use the
513
+ default.
514
+
515
+ </documentation>
516
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
517
+ <input>
518
+ <soap:body
519
+ use="encoded"
520
+ namespace="urn:iControl:LTConfig/Field"
521
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
522
+ </input>
523
+ <output>
524
+ <soap:body
525
+ use="encoded"
526
+ namespace="urn:iControl:LTConfig/Field"
527
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
528
+ </output>
529
+ </operation>
530
+
531
+ <operation name="get_configsyncd_state">
532
+ <documentation>
533
+ Gets the configsyncd state for one or more specified
534
+ loosely-typed configuration fields for the specified
535
+ classes. If the field is configsyncd, that means don't use the
536
+ default.
537
+
538
+ </documentation>
539
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
540
+ <input>
541
+ <soap:body
542
+ use="encoded"
543
+ namespace="urn:iControl:LTConfig/Field"
544
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
545
+ </input>
546
+ <output>
547
+ <soap:body
548
+ use="encoded"
549
+ namespace="urn:iControl:LTConfig/Field"
550
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
551
+ </output>
552
+ </operation>
553
+
554
+ <operation name="set_values">
555
+ <documentation>
556
+ Sets values for one or more loosely-typed configuration
557
+ field instances for the specified class instances.
558
+
559
+ </documentation>
560
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
561
+ <input>
562
+ <soap:body
563
+ use="encoded"
564
+ namespace="urn:iControl:LTConfig/Field"
565
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
566
+ </input>
567
+ <output>
568
+ <soap:body
569
+ use="encoded"
570
+ namespace="urn:iControl:LTConfig/Field"
571
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
572
+ </output>
573
+ </operation>
574
+
575
+ <operation name="get_values">
576
+ <documentation>
577
+ Gets values for one or more loosely-typed configuration
578
+ field instances for the specified class instances.
579
+
580
+ </documentation>
581
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
582
+ <input>
583
+ <soap:body
584
+ use="encoded"
585
+ namespace="urn:iControl:LTConfig/Field"
586
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
587
+ </input>
588
+ <output>
589
+ <soap:body
590
+ use="encoded"
591
+ namespace="urn:iControl:LTConfig/Field"
592
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
593
+ </output>
594
+ </operation>
595
+
596
+ <operation name="set_value">
597
+ <documentation>
598
+ Sets the value for one loosely-typed configuration
599
+ field instance for the specified class instance.
600
+
601
+ This is for convenience, when you want to set just one
602
+ value in just one class instance. Use set_values instead
603
+ for greater efficiency when setting multiple field values.
604
+
605
+ </documentation>
606
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
607
+ <input>
608
+ <soap:body
609
+ use="encoded"
610
+ namespace="urn:iControl:LTConfig/Field"
611
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
612
+ </input>
613
+ <output>
614
+ <soap:body
615
+ use="encoded"
616
+ namespace="urn:iControl:LTConfig/Field"
617
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
618
+ </output>
619
+ </operation>
620
+
621
+ <operation name="get_value">
622
+ <documentation>
623
+ Gets the value for one loosely-typed configuration
624
+ field instance for the specified class instance.
625
+
626
+ This is for convenience, when you want to get just one
627
+ value in just one class instance. Use get_values instead
628
+ for greater efficiency when getting multiple field values.
629
+
630
+ </documentation>
631
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
632
+ <input>
633
+ <soap:body
634
+ use="encoded"
635
+ namespace="urn:iControl:LTConfig/Field"
636
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
637
+ </input>
638
+ <output>
639
+ <soap:body
640
+ use="encoded"
641
+ namespace="urn:iControl:LTConfig/Field"
642
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
643
+ </output>
644
+ </operation>
645
+
646
+ <operation name="get_version">
647
+ <documentation>
648
+ Gets the version information for this interface.
649
+
650
+ </documentation>
651
+ <soap:operation soapAction="urn:iControl:LTConfig/Field"/>
652
+ <input>
653
+ <soap:body
654
+ use="encoded"
655
+ namespace="urn:iControl:LTConfig/Field"
656
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
657
+ </input>
658
+ <output>
659
+ <soap:body
660
+ use="encoded"
661
+ namespace="urn:iControl:LTConfig/Field"
662
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
663
+ </output>
664
+ </operation>
665
+ </binding>
666
+
667
+ <!-- service -->
668
+
669
+ <service name="LTConfig.Field">
670
+ <documentation>
671
+ The Field interface enables you to manage fields and field
672
+ instances in the Loosely-Typed Configuration system.
673
+
674
+ </documentation>
675
+ <port name="LTConfig.FieldPort" binding="tns:LTConfig.FieldBinding">
676
+ <soap:address location="https://url_to_service"/>
677
+ </port>
678
+ </service>
679
+ </definitions>