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,796 @@
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="Networking.STPGlobals"
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.ULong">
25
+ <xsd:restriction base="xsd:long"/>
26
+ </xsd:simpleType>
27
+ <xsd:simpleType name="Networking.STPModeType">
28
+ <xsd:restriction base="xsd:string">
29
+ <xsd:enumeration value="STP_MODE_TYPE_DISABLED">
30
+ <xsd:annotation>
31
+ <xsd:documentation>STP_MODE_TYPE_DISABLED</xsd:documentation>
32
+ </xsd:annotation>
33
+ </xsd:enumeration>
34
+ <xsd:enumeration value="STP_MODE_TYPE_PASSTHROUGH">
35
+ <xsd:annotation>
36
+ <xsd:documentation>STP_MODE_TYPE_PASSTHROUGH</xsd:documentation>
37
+ </xsd:annotation>
38
+ </xsd:enumeration>
39
+ <xsd:enumeration value="STP_MODE_TYPE_STP">
40
+ <xsd:annotation>
41
+ <xsd:documentation>STP_MODE_TYPE_STP</xsd:documentation>
42
+ </xsd:annotation>
43
+ </xsd:enumeration>
44
+ <xsd:enumeration value="STP_MODE_TYPE_RSTP">
45
+ <xsd:annotation>
46
+ <xsd:documentation>STP_MODE_TYPE_RSTP</xsd:documentation>
47
+ </xsd:annotation>
48
+ </xsd:enumeration>
49
+ <xsd:enumeration value="STP_MODE_TYPE_MSTP">
50
+ <xsd:annotation>
51
+ <xsd:documentation>STP_MODE_TYPE_MSTP</xsd:documentation>
52
+ </xsd:annotation>
53
+ </xsd:enumeration>
54
+ </xsd:restriction>
55
+ </xsd:simpleType>
56
+ </xsd:schema>
57
+ </types>
58
+
59
+ <!-- message -->
60
+
61
+ <message name="Networking.STPGlobals.set_modeRequest">
62
+ <part name="value" type="tns:Networking.STPModeType"/>
63
+ </message>
64
+ <message name="Networking.STPGlobals.set_modeResponse">
65
+ </message>
66
+
67
+ <message name="Networking.STPGlobals.get_modeRequest">
68
+ </message>
69
+ <message name="Networking.STPGlobals.get_modeResponse">
70
+ <part name="return" type="tns:Networking.STPModeType"/>
71
+ </message>
72
+
73
+ <message name="Networking.STPGlobals.set_forward_delayRequest">
74
+ <part name="value" type="xsd:long"/>
75
+ </message>
76
+ <message name="Networking.STPGlobals.set_forward_delayResponse">
77
+ </message>
78
+
79
+ <message name="Networking.STPGlobals.get_forward_delayRequest">
80
+ </message>
81
+ <message name="Networking.STPGlobals.get_forward_delayResponse">
82
+ <part name="return" type="xsd:long"/>
83
+ </message>
84
+
85
+ <message name="Networking.STPGlobals.set_hello_timeRequest">
86
+ <part name="value" type="xsd:long"/>
87
+ </message>
88
+ <message name="Networking.STPGlobals.set_hello_timeResponse">
89
+ </message>
90
+
91
+ <message name="Networking.STPGlobals.get_hello_timeRequest">
92
+ </message>
93
+ <message name="Networking.STPGlobals.get_hello_timeResponse">
94
+ <part name="return" type="xsd:long"/>
95
+ </message>
96
+
97
+ <message name="Networking.STPGlobals.set_maximum_ageRequest">
98
+ <part name="value" type="xsd:long"/>
99
+ </message>
100
+ <message name="Networking.STPGlobals.set_maximum_ageResponse">
101
+ </message>
102
+
103
+ <message name="Networking.STPGlobals.get_maximum_ageRequest">
104
+ </message>
105
+ <message name="Networking.STPGlobals.get_maximum_ageResponse">
106
+ <part name="return" type="xsd:long"/>
107
+ </message>
108
+
109
+ <message name="Networking.STPGlobals.set_transmit_holdRequest">
110
+ <part name="value" type="xsd:long"/>
111
+ </message>
112
+ <message name="Networking.STPGlobals.set_transmit_holdResponse">
113
+ </message>
114
+
115
+ <message name="Networking.STPGlobals.get_transmit_holdRequest">
116
+ </message>
117
+ <message name="Networking.STPGlobals.get_transmit_holdResponse">
118
+ <part name="return" type="xsd:long"/>
119
+ </message>
120
+
121
+ <message name="Networking.STPGlobals.set_maximum_hopRequest">
122
+ <part name="value" type="xsd:long"/>
123
+ </message>
124
+ <message name="Networking.STPGlobals.set_maximum_hopResponse">
125
+ </message>
126
+
127
+ <message name="Networking.STPGlobals.get_maximum_hopRequest">
128
+ </message>
129
+ <message name="Networking.STPGlobals.get_maximum_hopResponse">
130
+ <part name="return" type="xsd:long"/>
131
+ </message>
132
+
133
+ <message name="Networking.STPGlobals.set_configuration_identifierRequest">
134
+ <part name="value" type="xsd:string"/>
135
+ </message>
136
+ <message name="Networking.STPGlobals.set_configuration_identifierResponse">
137
+ </message>
138
+
139
+ <message name="Networking.STPGlobals.get_configuration_identifierRequest">
140
+ </message>
141
+ <message name="Networking.STPGlobals.get_configuration_identifierResponse">
142
+ <part name="return" type="xsd:string"/>
143
+ </message>
144
+
145
+ <message name="Networking.STPGlobals.set_configuration_revisionRequest">
146
+ <part name="value" type="xsd:long"/>
147
+ </message>
148
+ <message name="Networking.STPGlobals.set_configuration_revisionResponse">
149
+ </message>
150
+
151
+ <message name="Networking.STPGlobals.get_configuration_revisionRequest">
152
+ </message>
153
+ <message name="Networking.STPGlobals.get_configuration_revisionResponse">
154
+ <part name="return" type="xsd:long"/>
155
+ </message>
156
+
157
+ <message name="Networking.STPGlobals.set_descriptionRequest">
158
+ <part name="description" type="xsd:string"/>
159
+ </message>
160
+ <message name="Networking.STPGlobals.set_descriptionResponse">
161
+ </message>
162
+
163
+ <message name="Networking.STPGlobals.get_descriptionRequest">
164
+ </message>
165
+ <message name="Networking.STPGlobals.get_descriptionResponse">
166
+ <part name="return" type="xsd:string"/>
167
+ </message>
168
+
169
+ <message name="Networking.STPGlobals.get_versionRequest">
170
+ </message>
171
+ <message name="Networking.STPGlobals.get_versionResponse">
172
+ <part name="return" type="xsd:string"/>
173
+ </message>
174
+
175
+ <!-- portType -->
176
+
177
+ <portType name="Networking.STPGlobalsPortType">
178
+ <operation name="set_mode">
179
+ <documentation>
180
+ Sets the STP mode.
181
+
182
+ </documentation>
183
+ <input message="tns:Networking.STPGlobals.set_modeRequest"/>
184
+ <output message="tns:Networking.STPGlobals.set_modeResponse"/>
185
+ </operation>
186
+ <operation name="get_mode">
187
+ <documentation>
188
+ Gets the STP mode.
189
+
190
+ </documentation>
191
+ <input message="tns:Networking.STPGlobals.get_modeRequest"/>
192
+ <output message="tns:Networking.STPGlobals.get_modeResponse"/>
193
+ </operation>
194
+ <operation name="set_forward_delay">
195
+ <documentation>
196
+ Sets the forward delay parameter, which controls how long an interface was blocked from
197
+ forwarding network traffic after a reconfiguration of the spanning tree topology. The
198
+ default value is 15 seconds, and the valid range is 4-30 seconds. Note that this parameter
199
+ has no effect when the STP mode is RSPT or MSTP, as long as all bridges in the spanning tree
200
+ use the RSTP or MSTP protocol.
201
+
202
+ </documentation>
203
+ <input message="tns:Networking.STPGlobals.set_forward_delayRequest"/>
204
+ <output message="tns:Networking.STPGlobals.set_forward_delayResponse"/>
205
+ </operation>
206
+ <operation name="get_forward_delay">
207
+ <documentation>
208
+ Gets the forward delay parameter, which controls how long an interface was blocked from
209
+ forwarding network traffic after a reconfiguration of the spanning tree topology. The
210
+ default value is 15 seconds, and the valid range is 4-30 seconds. Note that this parameter
211
+ has no effect when the STP mode is RSPT or MSTP, as long as all bridges in the spanning tree
212
+ use the RSTP or MSTP protocol.
213
+
214
+ </documentation>
215
+ <input message="tns:Networking.STPGlobals.get_forward_delayRequest"/>
216
+ <output message="tns:Networking.STPGlobals.get_forward_delayResponse"/>
217
+ </operation>
218
+ <operation name="set_hello_time">
219
+ <documentation>
220
+ Sets the hello time, which is the time interval in seconds between the periodic
221
+ transmissions that communicate spanning tree information to the adjacent bridges
222
+ in the network. The default value is 2 seconds, and the valid range is 1-10 seconds.
223
+
224
+ </documentation>
225
+ <input message="tns:Networking.STPGlobals.set_hello_timeRequest"/>
226
+ <output message="tns:Networking.STPGlobals.set_hello_timeResponse"/>
227
+ </operation>
228
+ <operation name="get_hello_time">
229
+ <documentation>
230
+ Gets the hello time, which is the time interval in seconds between the periodic
231
+ transmissions that communicate spanning tree information to the adjacent bridges
232
+ in the network. The default value is 2 seconds, and the valid range is 1-10 seconds.
233
+
234
+ </documentation>
235
+ <input message="tns:Networking.STPGlobals.get_hello_timeRequest"/>
236
+ <output message="tns:Networking.STPGlobals.get_hello_timeResponse"/>
237
+ </operation>
238
+ <operation name="set_maximum_age">
239
+ <documentation>
240
+ Sets the maximum age parameter, which controls how long spanning tree information
241
+ received from other bridges is considered valid. The default value is 20 seconds,
242
+ and the valid range is 6-40 seconds.
243
+
244
+ </documentation>
245
+ <input message="tns:Networking.STPGlobals.set_maximum_ageRequest"/>
246
+ <output message="tns:Networking.STPGlobals.set_maximum_ageResponse"/>
247
+ </operation>
248
+ <operation name="get_maximum_age">
249
+ <documentation>
250
+ Gets the maximum age parameter, which controls how long spanning tree information
251
+ received from other bridges is considered valid. The default value is 20 seconds,
252
+ and the valid range is 6-40 seconds.
253
+
254
+ </documentation>
255
+ <input message="tns:Networking.STPGlobals.get_maximum_ageRequest"/>
256
+ <output message="tns:Networking.STPGlobals.get_maximum_ageResponse"/>
257
+ </operation>
258
+ <operation name="set_transmit_hold">
259
+ <documentation>
260
+ Sets the transmit hold count parameter, which is an absolute limit on the number of spanning
261
+ tree protocol packets the BIG-IP may transmit on a port in any hello time interval. This ensures
262
+ that the spanning tree packets will not unduly load the network even in unstable conditions.
263
+ The default value is 6 packets, and the valid range is 1-10 packets.
264
+
265
+ </documentation>
266
+ <input message="tns:Networking.STPGlobals.set_transmit_holdRequest"/>
267
+ <output message="tns:Networking.STPGlobals.set_transmit_holdResponse"/>
268
+ </operation>
269
+ <operation name="get_transmit_hold">
270
+ <documentation>
271
+ Gets the transmit hold count parameter, which is an absolute limit on the number of spanning
272
+ tree protocol packets the BIG-IP may transmit on a port in any hello time interval. This ensures
273
+ that the spanning tree packets will not unduly load the network even in unstable conditions.
274
+ The default value is 6 packets, and the valid range is 1-10 packets.
275
+
276
+ </documentation>
277
+ <input message="tns:Networking.STPGlobals.get_transmit_holdRequest"/>
278
+ <output message="tns:Networking.STPGlobals.get_transmit_holdResponse"/>
279
+ </operation>
280
+ <operation name="set_maximum_hop">
281
+ <documentation>
282
+ Sets the maximum hops an MSTP packet may travel before it is discarded. It's used only when
283
+ the STP mode is MSTP, however, the user may set it in any STP mode.
284
+
285
+ </documentation>
286
+ <input message="tns:Networking.STPGlobals.set_maximum_hopRequest"/>
287
+ <output message="tns:Networking.STPGlobals.set_maximum_hopResponse"/>
288
+ </operation>
289
+ <operation name="get_maximum_hop">
290
+ <documentation>
291
+ Gets the maximum hops an MSTP packet may travel before it is discarded. It's used only when
292
+ the STP mode is MSTP, however, the user may set it in any STP mode.
293
+
294
+ </documentation>
295
+ <input message="tns:Networking.STPGlobals.get_maximum_hopRequest"/>
296
+ <output message="tns:Networking.STPGlobals.get_maximum_hopResponse"/>
297
+ </operation>
298
+ <operation name="set_configuration_identifier">
299
+ <documentation>
300
+ Sets the configuration identifier name in a spanning tree region, used to identify a group
301
+ of adjacent bridges with identical configuration name, configuration revision levels, and
302
+ assignments of VLANs to spanning tree instances. This setting is used only when the STP mode
303
+ is MSTP, however the user may set it in any STP mode.
304
+
305
+ </documentation>
306
+ <input message="tns:Networking.STPGlobals.set_configuration_identifierRequest"/>
307
+ <output message="tns:Networking.STPGlobals.set_configuration_identifierResponse"/>
308
+ </operation>
309
+ <operation name="get_configuration_identifier">
310
+ <documentation>
311
+ Gets the configuration identifier name in a spanning tree region, used to identify a group
312
+ of adjacent bridges with identical configuration name, configuration revision levels, and
313
+ assignments of VLANs to spanning tree instances. This setting is used only when the STP mode
314
+ is MSTP, however the user may set it in any STP mode.
315
+
316
+ </documentation>
317
+ <input message="tns:Networking.STPGlobals.get_configuration_identifierRequest"/>
318
+ <output message="tns:Networking.STPGlobals.get_configuration_identifierResponse"/>
319
+ </operation>
320
+ <operation name="set_configuration_revision">
321
+ <documentation>
322
+ Sets the configuration revision level of the MSTP configuration. It's used only when
323
+ the STP mode is MSTP, however, the user may set it in any STP mode.
324
+
325
+ </documentation>
326
+ <input message="tns:Networking.STPGlobals.set_configuration_revisionRequest"/>
327
+ <output message="tns:Networking.STPGlobals.set_configuration_revisionResponse"/>
328
+ </operation>
329
+ <operation name="get_configuration_revision">
330
+ <documentation>
331
+ Gets the configuration revision level of the MSTP configuration. It's used only when
332
+ the STP mode is MSTP, however, the user may set it in any STP mode.
333
+
334
+ </documentation>
335
+ <input message="tns:Networking.STPGlobals.get_configuration_revisionRequest"/>
336
+ <output message="tns:Networking.STPGlobals.get_configuration_revisionResponse"/>
337
+ </operation>
338
+ <operation name="set_description">
339
+ <documentation>
340
+ Sets the STP global description.
341
+
342
+ This is an arbitrary field which can be used for any purpose.
343
+
344
+ </documentation>
345
+ <input message="tns:Networking.STPGlobals.set_descriptionRequest"/>
346
+ <output message="tns:Networking.STPGlobals.set_descriptionResponse"/>
347
+ </operation>
348
+ <operation name="get_description">
349
+ <documentation>
350
+ Gets the STP global description.
351
+
352
+ </documentation>
353
+ <input message="tns:Networking.STPGlobals.get_descriptionRequest"/>
354
+ <output message="tns:Networking.STPGlobals.get_descriptionResponse"/>
355
+ </operation>
356
+ <operation name="get_version">
357
+ <documentation>
358
+ Gets the version information for this interface.
359
+
360
+ </documentation>
361
+ <input message="tns:Networking.STPGlobals.get_versionRequest"/>
362
+ <output message="tns:Networking.STPGlobals.get_versionResponse"/>
363
+ </operation>
364
+ </portType>
365
+
366
+ <!-- binding -->
367
+
368
+ <binding name="Networking.STPGlobalsBinding" type="tns:Networking.STPGlobalsPortType">
369
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
370
+ <operation name="set_mode">
371
+ <documentation>
372
+ Sets the STP mode.
373
+
374
+ </documentation>
375
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
376
+ <input>
377
+ <soap:body
378
+ use="encoded"
379
+ namespace="urn:iControl:Networking/STPGlobals"
380
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
381
+ </input>
382
+ <output>
383
+ <soap:body
384
+ use="encoded"
385
+ namespace="urn:iControl:Networking/STPGlobals"
386
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
387
+ </output>
388
+ </operation>
389
+
390
+ <operation name="get_mode">
391
+ <documentation>
392
+ Gets the STP mode.
393
+
394
+ </documentation>
395
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
396
+ <input>
397
+ <soap:body
398
+ use="encoded"
399
+ namespace="urn:iControl:Networking/STPGlobals"
400
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
401
+ </input>
402
+ <output>
403
+ <soap:body
404
+ use="encoded"
405
+ namespace="urn:iControl:Networking/STPGlobals"
406
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
407
+ </output>
408
+ </operation>
409
+
410
+ <operation name="set_forward_delay">
411
+ <documentation>
412
+ Sets the forward delay parameter, which controls how long an interface was blocked from
413
+ forwarding network traffic after a reconfiguration of the spanning tree topology. The
414
+ default value is 15 seconds, and the valid range is 4-30 seconds. Note that this parameter
415
+ has no effect when the STP mode is RSPT or MSTP, as long as all bridges in the spanning tree
416
+ use the RSTP or MSTP protocol.
417
+
418
+ </documentation>
419
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
420
+ <input>
421
+ <soap:body
422
+ use="encoded"
423
+ namespace="urn:iControl:Networking/STPGlobals"
424
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
425
+ </input>
426
+ <output>
427
+ <soap:body
428
+ use="encoded"
429
+ namespace="urn:iControl:Networking/STPGlobals"
430
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
431
+ </output>
432
+ </operation>
433
+
434
+ <operation name="get_forward_delay">
435
+ <documentation>
436
+ Gets the forward delay parameter, which controls how long an interface was blocked from
437
+ forwarding network traffic after a reconfiguration of the spanning tree topology. The
438
+ default value is 15 seconds, and the valid range is 4-30 seconds. Note that this parameter
439
+ has no effect when the STP mode is RSPT or MSTP, as long as all bridges in the spanning tree
440
+ use the RSTP or MSTP protocol.
441
+
442
+ </documentation>
443
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
444
+ <input>
445
+ <soap:body
446
+ use="encoded"
447
+ namespace="urn:iControl:Networking/STPGlobals"
448
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
449
+ </input>
450
+ <output>
451
+ <soap:body
452
+ use="encoded"
453
+ namespace="urn:iControl:Networking/STPGlobals"
454
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
455
+ </output>
456
+ </operation>
457
+
458
+ <operation name="set_hello_time">
459
+ <documentation>
460
+ Sets the hello time, which is the time interval in seconds between the periodic
461
+ transmissions that communicate spanning tree information to the adjacent bridges
462
+ in the network. The default value is 2 seconds, and the valid range is 1-10 seconds.
463
+
464
+ </documentation>
465
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
466
+ <input>
467
+ <soap:body
468
+ use="encoded"
469
+ namespace="urn:iControl:Networking/STPGlobals"
470
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
471
+ </input>
472
+ <output>
473
+ <soap:body
474
+ use="encoded"
475
+ namespace="urn:iControl:Networking/STPGlobals"
476
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
477
+ </output>
478
+ </operation>
479
+
480
+ <operation name="get_hello_time">
481
+ <documentation>
482
+ Gets the hello time, which is the time interval in seconds between the periodic
483
+ transmissions that communicate spanning tree information to the adjacent bridges
484
+ in the network. The default value is 2 seconds, and the valid range is 1-10 seconds.
485
+
486
+ </documentation>
487
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
488
+ <input>
489
+ <soap:body
490
+ use="encoded"
491
+ namespace="urn:iControl:Networking/STPGlobals"
492
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
493
+ </input>
494
+ <output>
495
+ <soap:body
496
+ use="encoded"
497
+ namespace="urn:iControl:Networking/STPGlobals"
498
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
499
+ </output>
500
+ </operation>
501
+
502
+ <operation name="set_maximum_age">
503
+ <documentation>
504
+ Sets the maximum age parameter, which controls how long spanning tree information
505
+ received from other bridges is considered valid. The default value is 20 seconds,
506
+ and the valid range is 6-40 seconds.
507
+
508
+ </documentation>
509
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
510
+ <input>
511
+ <soap:body
512
+ use="encoded"
513
+ namespace="urn:iControl:Networking/STPGlobals"
514
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
515
+ </input>
516
+ <output>
517
+ <soap:body
518
+ use="encoded"
519
+ namespace="urn:iControl:Networking/STPGlobals"
520
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
521
+ </output>
522
+ </operation>
523
+
524
+ <operation name="get_maximum_age">
525
+ <documentation>
526
+ Gets the maximum age parameter, which controls how long spanning tree information
527
+ received from other bridges is considered valid. The default value is 20 seconds,
528
+ and the valid range is 6-40 seconds.
529
+
530
+ </documentation>
531
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
532
+ <input>
533
+ <soap:body
534
+ use="encoded"
535
+ namespace="urn:iControl:Networking/STPGlobals"
536
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
537
+ </input>
538
+ <output>
539
+ <soap:body
540
+ use="encoded"
541
+ namespace="urn:iControl:Networking/STPGlobals"
542
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
543
+ </output>
544
+ </operation>
545
+
546
+ <operation name="set_transmit_hold">
547
+ <documentation>
548
+ Sets the transmit hold count parameter, which is an absolute limit on the number of spanning
549
+ tree protocol packets the BIG-IP may transmit on a port in any hello time interval. This ensures
550
+ that the spanning tree packets will not unduly load the network even in unstable conditions.
551
+ The default value is 6 packets, and the valid range is 1-10 packets.
552
+
553
+ </documentation>
554
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
555
+ <input>
556
+ <soap:body
557
+ use="encoded"
558
+ namespace="urn:iControl:Networking/STPGlobals"
559
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
560
+ </input>
561
+ <output>
562
+ <soap:body
563
+ use="encoded"
564
+ namespace="urn:iControl:Networking/STPGlobals"
565
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
566
+ </output>
567
+ </operation>
568
+
569
+ <operation name="get_transmit_hold">
570
+ <documentation>
571
+ Gets the transmit hold count parameter, which is an absolute limit on the number of spanning
572
+ tree protocol packets the BIG-IP may transmit on a port in any hello time interval. This ensures
573
+ that the spanning tree packets will not unduly load the network even in unstable conditions.
574
+ The default value is 6 packets, and the valid range is 1-10 packets.
575
+
576
+ </documentation>
577
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
578
+ <input>
579
+ <soap:body
580
+ use="encoded"
581
+ namespace="urn:iControl:Networking/STPGlobals"
582
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
583
+ </input>
584
+ <output>
585
+ <soap:body
586
+ use="encoded"
587
+ namespace="urn:iControl:Networking/STPGlobals"
588
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
589
+ </output>
590
+ </operation>
591
+
592
+ <operation name="set_maximum_hop">
593
+ <documentation>
594
+ Sets the maximum hops an MSTP packet may travel before it is discarded. It's used only when
595
+ the STP mode is MSTP, however, the user may set it in any STP mode.
596
+
597
+ </documentation>
598
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
599
+ <input>
600
+ <soap:body
601
+ use="encoded"
602
+ namespace="urn:iControl:Networking/STPGlobals"
603
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
604
+ </input>
605
+ <output>
606
+ <soap:body
607
+ use="encoded"
608
+ namespace="urn:iControl:Networking/STPGlobals"
609
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
610
+ </output>
611
+ </operation>
612
+
613
+ <operation name="get_maximum_hop">
614
+ <documentation>
615
+ Gets the maximum hops an MSTP packet may travel before it is discarded. It's used only when
616
+ the STP mode is MSTP, however, the user may set it in any STP mode.
617
+
618
+ </documentation>
619
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
620
+ <input>
621
+ <soap:body
622
+ use="encoded"
623
+ namespace="urn:iControl:Networking/STPGlobals"
624
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
625
+ </input>
626
+ <output>
627
+ <soap:body
628
+ use="encoded"
629
+ namespace="urn:iControl:Networking/STPGlobals"
630
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
631
+ </output>
632
+ </operation>
633
+
634
+ <operation name="set_configuration_identifier">
635
+ <documentation>
636
+ Sets the configuration identifier name in a spanning tree region, used to identify a group
637
+ of adjacent bridges with identical configuration name, configuration revision levels, and
638
+ assignments of VLANs to spanning tree instances. This setting is used only when the STP mode
639
+ is MSTP, however the user may set it in any STP mode.
640
+
641
+ </documentation>
642
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
643
+ <input>
644
+ <soap:body
645
+ use="encoded"
646
+ namespace="urn:iControl:Networking/STPGlobals"
647
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
648
+ </input>
649
+ <output>
650
+ <soap:body
651
+ use="encoded"
652
+ namespace="urn:iControl:Networking/STPGlobals"
653
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
654
+ </output>
655
+ </operation>
656
+
657
+ <operation name="get_configuration_identifier">
658
+ <documentation>
659
+ Gets the configuration identifier name in a spanning tree region, used to identify a group
660
+ of adjacent bridges with identical configuration name, configuration revision levels, and
661
+ assignments of VLANs to spanning tree instances. This setting is used only when the STP mode
662
+ is MSTP, however the user may set it in any STP mode.
663
+
664
+ </documentation>
665
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
666
+ <input>
667
+ <soap:body
668
+ use="encoded"
669
+ namespace="urn:iControl:Networking/STPGlobals"
670
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
671
+ </input>
672
+ <output>
673
+ <soap:body
674
+ use="encoded"
675
+ namespace="urn:iControl:Networking/STPGlobals"
676
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
677
+ </output>
678
+ </operation>
679
+
680
+ <operation name="set_configuration_revision">
681
+ <documentation>
682
+ Sets the configuration revision level of the MSTP configuration. It's used only when
683
+ the STP mode is MSTP, however, the user may set it in any STP mode.
684
+
685
+ </documentation>
686
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
687
+ <input>
688
+ <soap:body
689
+ use="encoded"
690
+ namespace="urn:iControl:Networking/STPGlobals"
691
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
692
+ </input>
693
+ <output>
694
+ <soap:body
695
+ use="encoded"
696
+ namespace="urn:iControl:Networking/STPGlobals"
697
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
698
+ </output>
699
+ </operation>
700
+
701
+ <operation name="get_configuration_revision">
702
+ <documentation>
703
+ Gets the configuration revision level of the MSTP configuration. It's used only when
704
+ the STP mode is MSTP, however, the user may set it in any STP mode.
705
+
706
+ </documentation>
707
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
708
+ <input>
709
+ <soap:body
710
+ use="encoded"
711
+ namespace="urn:iControl:Networking/STPGlobals"
712
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
713
+ </input>
714
+ <output>
715
+ <soap:body
716
+ use="encoded"
717
+ namespace="urn:iControl:Networking/STPGlobals"
718
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
719
+ </output>
720
+ </operation>
721
+
722
+ <operation name="set_description">
723
+ <documentation>
724
+ Sets the STP global description.
725
+
726
+ This is an arbitrary field which can be used for any purpose.
727
+
728
+ </documentation>
729
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
730
+ <input>
731
+ <soap:body
732
+ use="encoded"
733
+ namespace="urn:iControl:Networking/STPGlobals"
734
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
735
+ </input>
736
+ <output>
737
+ <soap:body
738
+ use="encoded"
739
+ namespace="urn:iControl:Networking/STPGlobals"
740
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
741
+ </output>
742
+ </operation>
743
+
744
+ <operation name="get_description">
745
+ <documentation>
746
+ Gets the STP global description.
747
+
748
+ </documentation>
749
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
750
+ <input>
751
+ <soap:body
752
+ use="encoded"
753
+ namespace="urn:iControl:Networking/STPGlobals"
754
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
755
+ </input>
756
+ <output>
757
+ <soap:body
758
+ use="encoded"
759
+ namespace="urn:iControl:Networking/STPGlobals"
760
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
761
+ </output>
762
+ </operation>
763
+
764
+ <operation name="get_version">
765
+ <documentation>
766
+ Gets the version information for this interface.
767
+
768
+ </documentation>
769
+ <soap:operation soapAction="urn:iControl:Networking/STPGlobals"/>
770
+ <input>
771
+ <soap:body
772
+ use="encoded"
773
+ namespace="urn:iControl:Networking/STPGlobals"
774
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
775
+ </input>
776
+ <output>
777
+ <soap:body
778
+ use="encoded"
779
+ namespace="urn:iControl:Networking/STPGlobals"
780
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
781
+ </output>
782
+ </operation>
783
+ </binding>
784
+
785
+ <!-- service -->
786
+
787
+ <service name="Networking.STPGlobals">
788
+ <documentation>
789
+ The STPGlobals interface enables you to work with global attributes used to configure STP (Spanning Tree Protocol).
790
+
791
+ </documentation>
792
+ <port name="Networking.STPGlobalsPort" binding="tns:Networking.STPGlobalsBinding">
793
+ <soap:address location="https://url_to_service"/>
794
+ </port>
795
+ </service>
796
+ </definitions>