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,854 @@
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.SMTPConfiguration"
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:simpleType name="Management.SMTPConfiguration.EncryptedConnectionType">
46
+ <xsd:restriction base="xsd:string">
47
+ <xsd:enumeration value="SMTP_ENCRYPTED_CONNECTION_TYPE_UNKNOWN">
48
+ <xsd:annotation>
49
+ <xsd:documentation>SMTP_ENCRYPTED_CONNECTION_TYPE_UNKNOWN</xsd:documentation>
50
+ </xsd:annotation>
51
+ </xsd:enumeration>
52
+ <xsd:enumeration value="SMTP_ENCRYPTED_CONNECTION_TYPE_NONE">
53
+ <xsd:annotation>
54
+ <xsd:documentation>SMTP_ENCRYPTED_CONNECTION_TYPE_NONE</xsd:documentation>
55
+ </xsd:annotation>
56
+ </xsd:enumeration>
57
+ <xsd:enumeration value="SMTP_ENCRYPTED_CONNECTION_TYPE_TLS">
58
+ <xsd:annotation>
59
+ <xsd:documentation>SMTP_ENCRYPTED_CONNECTION_TYPE_TLS</xsd:documentation>
60
+ </xsd:annotation>
61
+ </xsd:enumeration>
62
+ <xsd:enumeration value="SMTP_ENCRYPTED_CONNECTION_TYPE_SSL">
63
+ <xsd:annotation>
64
+ <xsd:documentation>SMTP_ENCRYPTED_CONNECTION_TYPE_SSL</xsd:documentation>
65
+ </xsd:annotation>
66
+ </xsd:enumeration>
67
+ </xsd:restriction>
68
+ </xsd:simpleType>
69
+ <xsd:complexType name="Management.SMTPConfiguration.EncryptedConnectionTypeSequence">
70
+ <xsd:complexContent>
71
+ <xsd:restriction base='SOAP-ENC:Array'>
72
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Management.SMTPConfiguration.EncryptedConnectionType[]'/>
73
+ </xsd:restriction>
74
+ </xsd:complexContent>
75
+ </xsd:complexType>
76
+ <xsd:complexType name="Common.PortSequence">
77
+ <xsd:complexContent>
78
+ <xsd:restriction base='SOAP-ENC:Array'>
79
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
80
+ </xsd:restriction>
81
+ </xsd:complexContent>
82
+ </xsd:complexType>
83
+ <xsd:complexType name="Common.EnabledStateSequence">
84
+ <xsd:complexContent>
85
+ <xsd:restriction base='SOAP-ENC:Array'>
86
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
87
+ </xsd:restriction>
88
+ </xsd:complexContent>
89
+ </xsd:complexType>
90
+ </xsd:schema>
91
+ </types>
92
+
93
+ <!-- message -->
94
+
95
+ <message name="Management.SMTPConfiguration.get_listRequest">
96
+ </message>
97
+ <message name="Management.SMTPConfiguration.get_listResponse">
98
+ <part name="return" type="tns:Common.StringSequence"/>
99
+ </message>
100
+
101
+ <message name="Management.SMTPConfiguration.createRequest">
102
+ <part name="configs" type="tns:Common.StringSequence"/>
103
+ </message>
104
+ <message name="Management.SMTPConfiguration.createResponse">
105
+ </message>
106
+
107
+ <message name="Management.SMTPConfiguration.delete_smtp_configRequest">
108
+ <part name="configs" type="tns:Common.StringSequence"/>
109
+ </message>
110
+ <message name="Management.SMTPConfiguration.delete_smtp_configResponse">
111
+ </message>
112
+
113
+ <message name="Management.SMTPConfiguration.delete_all_smtp_configsRequest">
114
+ </message>
115
+ <message name="Management.SMTPConfiguration.delete_all_smtp_configsResponse">
116
+ </message>
117
+
118
+ <message name="Management.SMTPConfiguration.set_auth_enabled_stateRequest">
119
+ <part name="configs" type="tns:Common.StringSequence"/>
120
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
121
+ </message>
122
+ <message name="Management.SMTPConfiguration.set_auth_enabled_stateResponse">
123
+ </message>
124
+
125
+ <message name="Management.SMTPConfiguration.get_auth_enabled_stateRequest">
126
+ <part name="configs" type="tns:Common.StringSequence"/>
127
+ </message>
128
+ <message name="Management.SMTPConfiguration.get_auth_enabled_stateResponse">
129
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
130
+ </message>
131
+
132
+ <message name="Management.SMTPConfiguration.set_encrypted_connection_typeRequest">
133
+ <part name="configs" type="tns:Common.StringSequence"/>
134
+ <part name="encryption_types" type="tns:Management.SMTPConfiguration.EncryptedConnectionTypeSequence"/>
135
+ </message>
136
+ <message name="Management.SMTPConfiguration.set_encrypted_connection_typeResponse">
137
+ </message>
138
+
139
+ <message name="Management.SMTPConfiguration.get_encrypted_connection_typeRequest">
140
+ <part name="configs" type="tns:Common.StringSequence"/>
141
+ </message>
142
+ <message name="Management.SMTPConfiguration.get_encrypted_connection_typeResponse">
143
+ <part name="return" type="tns:Management.SMTPConfiguration.EncryptedConnectionTypeSequence"/>
144
+ </message>
145
+
146
+ <message name="Management.SMTPConfiguration.set_from_addressRequest">
147
+ <part name="configs" type="tns:Common.StringSequence"/>
148
+ <part name="addresses" type="tns:Common.StringSequence"/>
149
+ </message>
150
+ <message name="Management.SMTPConfiguration.set_from_addressResponse">
151
+ </message>
152
+
153
+ <message name="Management.SMTPConfiguration.get_from_addressRequest">
154
+ <part name="configs" type="tns:Common.StringSequence"/>
155
+ </message>
156
+ <message name="Management.SMTPConfiguration.get_from_addressResponse">
157
+ <part name="return" type="tns:Common.StringSequence"/>
158
+ </message>
159
+
160
+ <message name="Management.SMTPConfiguration.set_local_host_nameRequest">
161
+ <part name="configs" type="tns:Common.StringSequence"/>
162
+ <part name="values" type="tns:Common.StringSequence"/>
163
+ </message>
164
+ <message name="Management.SMTPConfiguration.set_local_host_nameResponse">
165
+ </message>
166
+
167
+ <message name="Management.SMTPConfiguration.get_local_host_nameRequest">
168
+ <part name="configs" type="tns:Common.StringSequence"/>
169
+ </message>
170
+ <message name="Management.SMTPConfiguration.get_local_host_nameResponse">
171
+ <part name="return" type="tns:Common.StringSequence"/>
172
+ </message>
173
+
174
+ <message name="Management.SMTPConfiguration.set_smtp_server_host_nameRequest">
175
+ <part name="configs" type="tns:Common.StringSequence"/>
176
+ <part name="values" type="tns:Common.StringSequence"/>
177
+ </message>
178
+ <message name="Management.SMTPConfiguration.set_smtp_server_host_nameResponse">
179
+ </message>
180
+
181
+ <message name="Management.SMTPConfiguration.get_smtp_server_host_nameRequest">
182
+ <part name="configs" type="tns:Common.StringSequence"/>
183
+ </message>
184
+ <message name="Management.SMTPConfiguration.get_smtp_server_host_nameResponse">
185
+ <part name="return" type="tns:Common.StringSequence"/>
186
+ </message>
187
+
188
+ <message name="Management.SMTPConfiguration.set_smtp_server_portRequest">
189
+ <part name="configs" type="tns:Common.StringSequence"/>
190
+ <part name="ports" type="tns:Common.PortSequence"/>
191
+ </message>
192
+ <message name="Management.SMTPConfiguration.set_smtp_server_portResponse">
193
+ </message>
194
+
195
+ <message name="Management.SMTPConfiguration.get_smtp_server_portRequest">
196
+ <part name="configs" type="tns:Common.StringSequence"/>
197
+ </message>
198
+ <message name="Management.SMTPConfiguration.get_smtp_server_portResponse">
199
+ <part name="return" type="tns:Common.PortSequence"/>
200
+ </message>
201
+
202
+ <message name="Management.SMTPConfiguration.set_user_nameRequest">
203
+ <part name="configs" type="tns:Common.StringSequence"/>
204
+ <part name="values" type="tns:Common.StringSequence"/>
205
+ </message>
206
+ <message name="Management.SMTPConfiguration.set_user_nameResponse">
207
+ </message>
208
+
209
+ <message name="Management.SMTPConfiguration.get_user_nameRequest">
210
+ <part name="configs" type="tns:Common.StringSequence"/>
211
+ </message>
212
+ <message name="Management.SMTPConfiguration.get_user_nameResponse">
213
+ <part name="return" type="tns:Common.StringSequence"/>
214
+ </message>
215
+
216
+ <message name="Management.SMTPConfiguration.set_passwordRequest">
217
+ <part name="configs" type="tns:Common.StringSequence"/>
218
+ <part name="passwords" type="tns:Common.StringSequence"/>
219
+ </message>
220
+ <message name="Management.SMTPConfiguration.set_passwordResponse">
221
+ </message>
222
+
223
+ <message name="Management.SMTPConfiguration.get_passwordRequest">
224
+ <part name="configs" type="tns:Common.StringSequence"/>
225
+ </message>
226
+ <message name="Management.SMTPConfiguration.get_passwordResponse">
227
+ <part name="return" type="tns:Common.StringSequence"/>
228
+ </message>
229
+
230
+ <message name="Management.SMTPConfiguration.get_versionRequest">
231
+ </message>
232
+ <message name="Management.SMTPConfiguration.get_versionResponse">
233
+ <part name="return" type="xsd:string"/>
234
+ </message>
235
+
236
+ <!-- portType -->
237
+
238
+ <portType name="Management.SMTPConfigurationPortType">
239
+ <operation name="get_list">
240
+ <documentation>
241
+ Gets a list of all SMTP configuration objects.
242
+
243
+ </documentation>
244
+ <input message="tns:Management.SMTPConfiguration.get_listRequest"/>
245
+ <output message="tns:Management.SMTPConfiguration.get_listResponse"/>
246
+ </operation>
247
+ <operation name="create">
248
+ <documentation>
249
+ Creates the specified SMTP configuration object.
250
+
251
+ </documentation>
252
+ <input message="tns:Management.SMTPConfiguration.createRequest"/>
253
+ <output message="tns:Management.SMTPConfiguration.createResponse"/>
254
+ </operation>
255
+ <operation name="delete_smtp_config">
256
+ <documentation>
257
+ Deletes specified SMTP configuration objects.
258
+
259
+ </documentation>
260
+ <input message="tns:Management.SMTPConfiguration.delete_smtp_configRequest"/>
261
+ <output message="tns:Management.SMTPConfiguration.delete_smtp_configResponse"/>
262
+ </operation>
263
+ <operation name="delete_all_smtp_configs">
264
+ <documentation>
265
+ Deletes all SMTP configuration objects.
266
+
267
+ </documentation>
268
+ <input message="tns:Management.SMTPConfiguration.delete_all_smtp_configsRequest"/>
269
+ <output message="tns:Management.SMTPConfiguration.delete_all_smtp_configsResponse"/>
270
+ </operation>
271
+ <operation name="set_auth_enabled_state">
272
+ <documentation>
273
+ Sets the authentication enabled flag for the specified SMTP configuration object.
274
+ Specify this only if the SMTP server requires authentication.
275
+
276
+ </documentation>
277
+ <input message="tns:Management.SMTPConfiguration.set_auth_enabled_stateRequest"/>
278
+ <output message="tns:Management.SMTPConfiguration.set_auth_enabled_stateResponse"/>
279
+ </operation>
280
+ <operation name="get_auth_enabled_state">
281
+ <documentation>
282
+ Gets the authentication enabled flag for the specified SMTP configuration object.
283
+
284
+ </documentation>
285
+ <input message="tns:Management.SMTPConfiguration.get_auth_enabled_stateRequest"/>
286
+ <output message="tns:Management.SMTPConfiguration.get_auth_enabled_stateResponse"/>
287
+ </operation>
288
+ <operation name="set_encrypted_connection_type">
289
+ <documentation>
290
+ Sets the encrypted connection type for the specified SMTP configuration object.
291
+
292
+ </documentation>
293
+ <input message="tns:Management.SMTPConfiguration.set_encrypted_connection_typeRequest"/>
294
+ <output message="tns:Management.SMTPConfiguration.set_encrypted_connection_typeResponse"/>
295
+ </operation>
296
+ <operation name="get_encrypted_connection_type">
297
+ <documentation>
298
+ Get the encrypted connection type for the specified SMTP configuration object.
299
+
300
+ </documentation>
301
+ <input message="tns:Management.SMTPConfiguration.get_encrypted_connection_typeRequest"/>
302
+ <output message="tns:Management.SMTPConfiguration.get_encrypted_connection_typeResponse"/>
303
+ </operation>
304
+ <operation name="set_from_address">
305
+ <documentation>
306
+ Sets the email address that the eMail items will be sent from. This is the "Reply-to" address that the recipient sees.
307
+
308
+ </documentation>
309
+ <input message="tns:Management.SMTPConfiguration.set_from_addressRequest"/>
310
+ <output message="tns:Management.SMTPConfiguration.set_from_addressResponse"/>
311
+ </operation>
312
+ <operation name="get_from_address">
313
+ <documentation>
314
+ Gets the email address that the eMail items will be sent from.
315
+
316
+ </documentation>
317
+ <input message="tns:Management.SMTPConfiguration.get_from_addressRequest"/>
318
+ <output message="tns:Management.SMTPConfiguration.get_from_addressResponse"/>
319
+ </operation>
320
+ <operation name="set_local_host_name">
321
+ <documentation>
322
+ Sets the host name used in SMTP headers in the format of a fully qualified domain name.
323
+ This setting does not refer to the BIG-IP system's Hostname.
324
+
325
+ </documentation>
326
+ <input message="tns:Management.SMTPConfiguration.set_local_host_nameRequest"/>
327
+ <output message="tns:Management.SMTPConfiguration.set_local_host_nameResponse"/>
328
+ </operation>
329
+ <operation name="get_local_host_name">
330
+ <documentation>
331
+ Get the host name used in SMTP headers.
332
+
333
+ </documentation>
334
+ <input message="tns:Management.SMTPConfiguration.get_local_host_nameRequest"/>
335
+ <output message="tns:Management.SMTPConfiguration.get_local_host_nameResponse"/>
336
+ </operation>
337
+ <operation name="set_smtp_server_host_name">
338
+ <documentation>
339
+ Sets the SMTP server host name in the format of a fully qualified domain name.
340
+
341
+ </documentation>
342
+ <input message="tns:Management.SMTPConfiguration.set_smtp_server_host_nameRequest"/>
343
+ <output message="tns:Management.SMTPConfiguration.set_smtp_server_host_nameResponse"/>
344
+ </operation>
345
+ <operation name="get_smtp_server_host_name">
346
+ <documentation>
347
+ Gets the SMTP server host name.
348
+
349
+ </documentation>
350
+ <input message="tns:Management.SMTPConfiguration.get_smtp_server_host_nameRequest"/>
351
+ <output message="tns:Management.SMTPConfiguration.get_smtp_server_host_nameResponse"/>
352
+ </operation>
353
+ <operation name="set_smtp_server_port">
354
+ <documentation>
355
+ Sets the SMTP server port number.
356
+
357
+ </documentation>
358
+ <input message="tns:Management.SMTPConfiguration.set_smtp_server_portRequest"/>
359
+ <output message="tns:Management.SMTPConfiguration.set_smtp_server_portResponse"/>
360
+ </operation>
361
+ <operation name="get_smtp_server_port">
362
+ <documentation>
363
+ Gets the SMTP server port number.
364
+
365
+ </documentation>
366
+ <input message="tns:Management.SMTPConfiguration.get_smtp_server_portRequest"/>
367
+ <output message="tns:Management.SMTPConfiguration.get_smtp_server_portResponse"/>
368
+ </operation>
369
+ <operation name="set_user_name">
370
+ <documentation>
371
+ Sets the user name that the SMTP server requires when validating a user.
372
+
373
+ </documentation>
374
+ <input message="tns:Management.SMTPConfiguration.set_user_nameRequest"/>
375
+ <output message="tns:Management.SMTPConfiguration.set_user_nameResponse"/>
376
+ </operation>
377
+ <operation name="get_user_name">
378
+ <documentation>
379
+ Gets the user name that the SMTP server requires when validating a user.
380
+
381
+ </documentation>
382
+ <input message="tns:Management.SMTPConfiguration.get_user_nameRequest"/>
383
+ <output message="tns:Management.SMTPConfiguration.get_user_nameResponse"/>
384
+ </operation>
385
+ <operation name="set_password">
386
+ <documentation>
387
+ Sets the password that the SMTP server requires when validating a user.
388
+
389
+ </documentation>
390
+ <input message="tns:Management.SMTPConfiguration.set_passwordRequest"/>
391
+ <output message="tns:Management.SMTPConfiguration.set_passwordResponse"/>
392
+ </operation>
393
+ <operation name="get_password">
394
+ <documentation>
395
+ Gets the password that the SMTP server requires when validating a user.
396
+
397
+ </documentation>
398
+ <input message="tns:Management.SMTPConfiguration.get_passwordRequest"/>
399
+ <output message="tns:Management.SMTPConfiguration.get_passwordResponse"/>
400
+ </operation>
401
+ <operation name="get_version">
402
+ <documentation>
403
+ Gets the version information for this interface.
404
+
405
+ </documentation>
406
+ <input message="tns:Management.SMTPConfiguration.get_versionRequest"/>
407
+ <output message="tns:Management.SMTPConfiguration.get_versionResponse"/>
408
+ </operation>
409
+ </portType>
410
+
411
+ <!-- binding -->
412
+
413
+ <binding name="Management.SMTPConfigurationBinding" type="tns:Management.SMTPConfigurationPortType">
414
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
415
+ <operation name="get_list">
416
+ <documentation>
417
+ Gets a list of all SMTP configuration objects.
418
+
419
+ </documentation>
420
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
421
+ <input>
422
+ <soap:body
423
+ use="encoded"
424
+ namespace="urn:iControl:Management/SMTPConfiguration"
425
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
426
+ </input>
427
+ <output>
428
+ <soap:body
429
+ use="encoded"
430
+ namespace="urn:iControl:Management/SMTPConfiguration"
431
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
432
+ </output>
433
+ </operation>
434
+
435
+ <operation name="create">
436
+ <documentation>
437
+ Creates the specified SMTP configuration object.
438
+
439
+ </documentation>
440
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
441
+ <input>
442
+ <soap:body
443
+ use="encoded"
444
+ namespace="urn:iControl:Management/SMTPConfiguration"
445
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
446
+ </input>
447
+ <output>
448
+ <soap:body
449
+ use="encoded"
450
+ namespace="urn:iControl:Management/SMTPConfiguration"
451
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
452
+ </output>
453
+ </operation>
454
+
455
+ <operation name="delete_smtp_config">
456
+ <documentation>
457
+ Deletes specified SMTP configuration objects.
458
+
459
+ </documentation>
460
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
461
+ <input>
462
+ <soap:body
463
+ use="encoded"
464
+ namespace="urn:iControl:Management/SMTPConfiguration"
465
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
466
+ </input>
467
+ <output>
468
+ <soap:body
469
+ use="encoded"
470
+ namespace="urn:iControl:Management/SMTPConfiguration"
471
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
472
+ </output>
473
+ </operation>
474
+
475
+ <operation name="delete_all_smtp_configs">
476
+ <documentation>
477
+ Deletes all SMTP configuration objects.
478
+
479
+ </documentation>
480
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
481
+ <input>
482
+ <soap:body
483
+ use="encoded"
484
+ namespace="urn:iControl:Management/SMTPConfiguration"
485
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
486
+ </input>
487
+ <output>
488
+ <soap:body
489
+ use="encoded"
490
+ namespace="urn:iControl:Management/SMTPConfiguration"
491
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
492
+ </output>
493
+ </operation>
494
+
495
+ <operation name="set_auth_enabled_state">
496
+ <documentation>
497
+ Sets the authentication enabled flag for the specified SMTP configuration object.
498
+ Specify this only if the SMTP server requires authentication.
499
+
500
+ </documentation>
501
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
502
+ <input>
503
+ <soap:body
504
+ use="encoded"
505
+ namespace="urn:iControl:Management/SMTPConfiguration"
506
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
507
+ </input>
508
+ <output>
509
+ <soap:body
510
+ use="encoded"
511
+ namespace="urn:iControl:Management/SMTPConfiguration"
512
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
513
+ </output>
514
+ </operation>
515
+
516
+ <operation name="get_auth_enabled_state">
517
+ <documentation>
518
+ Gets the authentication enabled flag for the specified SMTP configuration object.
519
+
520
+ </documentation>
521
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
522
+ <input>
523
+ <soap:body
524
+ use="encoded"
525
+ namespace="urn:iControl:Management/SMTPConfiguration"
526
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
527
+ </input>
528
+ <output>
529
+ <soap:body
530
+ use="encoded"
531
+ namespace="urn:iControl:Management/SMTPConfiguration"
532
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
533
+ </output>
534
+ </operation>
535
+
536
+ <operation name="set_encrypted_connection_type">
537
+ <documentation>
538
+ Sets the encrypted connection type for the specified SMTP configuration object.
539
+
540
+ </documentation>
541
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
542
+ <input>
543
+ <soap:body
544
+ use="encoded"
545
+ namespace="urn:iControl:Management/SMTPConfiguration"
546
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
547
+ </input>
548
+ <output>
549
+ <soap:body
550
+ use="encoded"
551
+ namespace="urn:iControl:Management/SMTPConfiguration"
552
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
553
+ </output>
554
+ </operation>
555
+
556
+ <operation name="get_encrypted_connection_type">
557
+ <documentation>
558
+ Get the encrypted connection type for the specified SMTP configuration object.
559
+
560
+ </documentation>
561
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
562
+ <input>
563
+ <soap:body
564
+ use="encoded"
565
+ namespace="urn:iControl:Management/SMTPConfiguration"
566
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
567
+ </input>
568
+ <output>
569
+ <soap:body
570
+ use="encoded"
571
+ namespace="urn:iControl:Management/SMTPConfiguration"
572
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
573
+ </output>
574
+ </operation>
575
+
576
+ <operation name="set_from_address">
577
+ <documentation>
578
+ Sets the email address that the eMail items will be sent from. This is the "Reply-to" address that the recipient sees.
579
+
580
+ </documentation>
581
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
582
+ <input>
583
+ <soap:body
584
+ use="encoded"
585
+ namespace="urn:iControl:Management/SMTPConfiguration"
586
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
587
+ </input>
588
+ <output>
589
+ <soap:body
590
+ use="encoded"
591
+ namespace="urn:iControl:Management/SMTPConfiguration"
592
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
593
+ </output>
594
+ </operation>
595
+
596
+ <operation name="get_from_address">
597
+ <documentation>
598
+ Gets the email address that the eMail items will be sent from.
599
+
600
+ </documentation>
601
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
602
+ <input>
603
+ <soap:body
604
+ use="encoded"
605
+ namespace="urn:iControl:Management/SMTPConfiguration"
606
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
607
+ </input>
608
+ <output>
609
+ <soap:body
610
+ use="encoded"
611
+ namespace="urn:iControl:Management/SMTPConfiguration"
612
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
613
+ </output>
614
+ </operation>
615
+
616
+ <operation name="set_local_host_name">
617
+ <documentation>
618
+ Sets the host name used in SMTP headers in the format of a fully qualified domain name.
619
+ This setting does not refer to the BIG-IP system's Hostname.
620
+
621
+ </documentation>
622
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
623
+ <input>
624
+ <soap:body
625
+ use="encoded"
626
+ namespace="urn:iControl:Management/SMTPConfiguration"
627
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
628
+ </input>
629
+ <output>
630
+ <soap:body
631
+ use="encoded"
632
+ namespace="urn:iControl:Management/SMTPConfiguration"
633
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
634
+ </output>
635
+ </operation>
636
+
637
+ <operation name="get_local_host_name">
638
+ <documentation>
639
+ Get the host name used in SMTP headers.
640
+
641
+ </documentation>
642
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
643
+ <input>
644
+ <soap:body
645
+ use="encoded"
646
+ namespace="urn:iControl:Management/SMTPConfiguration"
647
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
648
+ </input>
649
+ <output>
650
+ <soap:body
651
+ use="encoded"
652
+ namespace="urn:iControl:Management/SMTPConfiguration"
653
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
654
+ </output>
655
+ </operation>
656
+
657
+ <operation name="set_smtp_server_host_name">
658
+ <documentation>
659
+ Sets the SMTP server host name in the format of a fully qualified domain name.
660
+
661
+ </documentation>
662
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
663
+ <input>
664
+ <soap:body
665
+ use="encoded"
666
+ namespace="urn:iControl:Management/SMTPConfiguration"
667
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
668
+ </input>
669
+ <output>
670
+ <soap:body
671
+ use="encoded"
672
+ namespace="urn:iControl:Management/SMTPConfiguration"
673
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
674
+ </output>
675
+ </operation>
676
+
677
+ <operation name="get_smtp_server_host_name">
678
+ <documentation>
679
+ Gets the SMTP server host name.
680
+
681
+ </documentation>
682
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
683
+ <input>
684
+ <soap:body
685
+ use="encoded"
686
+ namespace="urn:iControl:Management/SMTPConfiguration"
687
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
688
+ </input>
689
+ <output>
690
+ <soap:body
691
+ use="encoded"
692
+ namespace="urn:iControl:Management/SMTPConfiguration"
693
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
694
+ </output>
695
+ </operation>
696
+
697
+ <operation name="set_smtp_server_port">
698
+ <documentation>
699
+ Sets the SMTP server port number.
700
+
701
+ </documentation>
702
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
703
+ <input>
704
+ <soap:body
705
+ use="encoded"
706
+ namespace="urn:iControl:Management/SMTPConfiguration"
707
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
708
+ </input>
709
+ <output>
710
+ <soap:body
711
+ use="encoded"
712
+ namespace="urn:iControl:Management/SMTPConfiguration"
713
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
714
+ </output>
715
+ </operation>
716
+
717
+ <operation name="get_smtp_server_port">
718
+ <documentation>
719
+ Gets the SMTP server port number.
720
+
721
+ </documentation>
722
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
723
+ <input>
724
+ <soap:body
725
+ use="encoded"
726
+ namespace="urn:iControl:Management/SMTPConfiguration"
727
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
728
+ </input>
729
+ <output>
730
+ <soap:body
731
+ use="encoded"
732
+ namespace="urn:iControl:Management/SMTPConfiguration"
733
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
734
+ </output>
735
+ </operation>
736
+
737
+ <operation name="set_user_name">
738
+ <documentation>
739
+ Sets the user name that the SMTP server requires when validating a user.
740
+
741
+ </documentation>
742
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
743
+ <input>
744
+ <soap:body
745
+ use="encoded"
746
+ namespace="urn:iControl:Management/SMTPConfiguration"
747
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
748
+ </input>
749
+ <output>
750
+ <soap:body
751
+ use="encoded"
752
+ namespace="urn:iControl:Management/SMTPConfiguration"
753
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
754
+ </output>
755
+ </operation>
756
+
757
+ <operation name="get_user_name">
758
+ <documentation>
759
+ Gets the user name that the SMTP server requires when validating a user.
760
+
761
+ </documentation>
762
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
763
+ <input>
764
+ <soap:body
765
+ use="encoded"
766
+ namespace="urn:iControl:Management/SMTPConfiguration"
767
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
768
+ </input>
769
+ <output>
770
+ <soap:body
771
+ use="encoded"
772
+ namespace="urn:iControl:Management/SMTPConfiguration"
773
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
774
+ </output>
775
+ </operation>
776
+
777
+ <operation name="set_password">
778
+ <documentation>
779
+ Sets the password that the SMTP server requires when validating a user.
780
+
781
+ </documentation>
782
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
783
+ <input>
784
+ <soap:body
785
+ use="encoded"
786
+ namespace="urn:iControl:Management/SMTPConfiguration"
787
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
788
+ </input>
789
+ <output>
790
+ <soap:body
791
+ use="encoded"
792
+ namespace="urn:iControl:Management/SMTPConfiguration"
793
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
794
+ </output>
795
+ </operation>
796
+
797
+ <operation name="get_password">
798
+ <documentation>
799
+ Gets the password that the SMTP server requires when validating a user.
800
+
801
+ </documentation>
802
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
803
+ <input>
804
+ <soap:body
805
+ use="encoded"
806
+ namespace="urn:iControl:Management/SMTPConfiguration"
807
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
808
+ </input>
809
+ <output>
810
+ <soap:body
811
+ use="encoded"
812
+ namespace="urn:iControl:Management/SMTPConfiguration"
813
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
814
+ </output>
815
+ </operation>
816
+
817
+ <operation name="get_version">
818
+ <documentation>
819
+ Gets the version information for this interface.
820
+
821
+ </documentation>
822
+ <soap:operation soapAction="urn:iControl:Management/SMTPConfiguration"/>
823
+ <input>
824
+ <soap:body
825
+ use="encoded"
826
+ namespace="urn:iControl:Management/SMTPConfiguration"
827
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
828
+ </input>
829
+ <output>
830
+ <soap:body
831
+ use="encoded"
832
+ namespace="urn:iControl:Management/SMTPConfiguration"
833
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
834
+ </output>
835
+ </operation>
836
+ </binding>
837
+
838
+ <!-- service -->
839
+
840
+ <service name="Management.SMTPConfiguration">
841
+ <documentation>
842
+ The SMTPConfiguration interface enables you to create, delete and modify different
843
+ SMTP configurations on the BIG-IP. Each SMTP configuration item can be used
844
+ in several different profiles (such as Analytics and Classification).
845
+ For example:
846
+ 1. Alert notifications in Analytics.
847
+ 2. Reports exporting in both Analytics and Classification.
848
+
849
+ </documentation>
850
+ <port name="Management.SMTPConfigurationPort" binding="tns:Management.SMTPConfigurationBinding">
851
+ <soap:address location="https://url_to_service"/>
852
+ </port>
853
+ </service>
854
+ </definitions>