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,1147 @@
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.STPInstance"
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="Networking.STPStateType">
25
+ <xsd:restriction base="xsd:string">
26
+ <xsd:enumeration value="STP_STATE_TYPE_DETACH">
27
+ <xsd:annotation>
28
+ <xsd:documentation>STP_STATE_TYPE_DETACH</xsd:documentation>
29
+ </xsd:annotation>
30
+ </xsd:enumeration>
31
+ <xsd:enumeration value="STP_STATE_TYPE_BLOCK">
32
+ <xsd:annotation>
33
+ <xsd:documentation>STP_STATE_TYPE_BLOCK</xsd:documentation>
34
+ </xsd:annotation>
35
+ </xsd:enumeration>
36
+ <xsd:enumeration value="STP_STATE_TYPE_LISTEN">
37
+ <xsd:annotation>
38
+ <xsd:documentation>STP_STATE_TYPE_LISTEN</xsd:documentation>
39
+ </xsd:annotation>
40
+ </xsd:enumeration>
41
+ <xsd:enumeration value="STP_STATE_TYPE_LEARN">
42
+ <xsd:annotation>
43
+ <xsd:documentation>STP_STATE_TYPE_LEARN</xsd:documentation>
44
+ </xsd:annotation>
45
+ </xsd:enumeration>
46
+ <xsd:enumeration value="STP_STATE_TYPE_FORWARD">
47
+ <xsd:annotation>
48
+ <xsd:documentation>STP_STATE_TYPE_FORWARD</xsd:documentation>
49
+ </xsd:annotation>
50
+ </xsd:enumeration>
51
+ <xsd:enumeration value="STP_STATE_TYPE_DISABLE">
52
+ <xsd:annotation>
53
+ <xsd:documentation>STP_STATE_TYPE_DISABLE</xsd:documentation>
54
+ </xsd:annotation>
55
+ </xsd:enumeration>
56
+ </xsd:restriction>
57
+ </xsd:simpleType>
58
+ <xsd:complexType name="Networking.STPInstance.InterfacePrioritySequence">
59
+ <xsd:complexContent>
60
+ <xsd:restriction base='SOAP-ENC:Array'>
61
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.STPInstance.InterfacePriority[]'/>
62
+ </xsd:restriction>
63
+ </xsd:complexContent>
64
+ </xsd:complexType>
65
+ <xsd:complexType name="Networking.STPInstance.InterfaceSTPRoleSequence">
66
+ <xsd:complexContent>
67
+ <xsd:restriction base='SOAP-ENC:Array'>
68
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.STPInstance.InterfaceSTPRole[]'/>
69
+ </xsd:restriction>
70
+ </xsd:complexContent>
71
+ </xsd:complexType>
72
+ <xsd:complexType name="Networking.STPInstance.InterfaceSTPState">
73
+ <xsd:sequence>
74
+ <xsd:element name="name" type="xsd:string"/>
75
+ <xsd:element name="state" type="tns:Networking.STPStateType"/>
76
+ </xsd:sequence>
77
+ </xsd:complexType>
78
+ <xsd:complexType name="Networking.STPInstance.InterfaceSTPStateSequenceSequence">
79
+ <xsd:complexContent>
80
+ <xsd:restriction base='SOAP-ENC:Array'>
81
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.STPInstance.InterfaceSTPStateSequence[]'/>
82
+ </xsd:restriction>
83
+ </xsd:complexContent>
84
+ </xsd:complexType>
85
+ <xsd:complexType name="Common.StringSequence">
86
+ <xsd:complexContent>
87
+ <xsd:restriction base='SOAP-ENC:Array'>
88
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
89
+ </xsd:restriction>
90
+ </xsd:complexContent>
91
+ </xsd:complexType>
92
+ <xsd:complexType name="Common.ULongSequence">
93
+ <xsd:complexContent>
94
+ <xsd:restriction base='SOAP-ENC:Array'>
95
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
96
+ </xsd:restriction>
97
+ </xsd:complexContent>
98
+ </xsd:complexType>
99
+ <xsd:complexType name="Networking.STPInstance.InterfacePriority">
100
+ <xsd:sequence>
101
+ <xsd:element name="name" type="xsd:string"/>
102
+ <xsd:element name="priority" type="xsd:long"/>
103
+ </xsd:sequence>
104
+ </xsd:complexType>
105
+ <xsd:simpleType name="Networking.STPInstance.PathCostType">
106
+ <xsd:restriction base="xsd:string">
107
+ <xsd:enumeration value="PATH_COST_INTERNAL">
108
+ <xsd:annotation>
109
+ <xsd:documentation>PATH_COST_INTERNAL</xsd:documentation>
110
+ </xsd:annotation>
111
+ </xsd:enumeration>
112
+ <xsd:enumeration value="PATH_COST_EXTERNAL">
113
+ <xsd:annotation>
114
+ <xsd:documentation>PATH_COST_EXTERNAL</xsd:documentation>
115
+ </xsd:annotation>
116
+ </xsd:enumeration>
117
+ </xsd:restriction>
118
+ </xsd:simpleType>
119
+ <xsd:complexType name="Networking.STPInstance.PathCostTypeSequence">
120
+ <xsd:complexContent>
121
+ <xsd:restriction base='SOAP-ENC:Array'>
122
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.STPInstance.PathCostType[]'/>
123
+ </xsd:restriction>
124
+ </xsd:complexContent>
125
+ </xsd:complexType>
126
+ <xsd:complexType name="Networking.STPInstance.InterfacePathCostSequence">
127
+ <xsd:complexContent>
128
+ <xsd:restriction base='SOAP-ENC:Array'>
129
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.STPInstance.InterfacePathCost[]'/>
130
+ </xsd:restriction>
131
+ </xsd:complexContent>
132
+ </xsd:complexType>
133
+ <xsd:complexType name="Networking.STPInstance.PathCostTypeSequenceSequence">
134
+ <xsd:complexContent>
135
+ <xsd:restriction base='SOAP-ENC:Array'>
136
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.STPInstance.PathCostTypeSequence[]'/>
137
+ </xsd:restriction>
138
+ </xsd:complexContent>
139
+ </xsd:complexType>
140
+ <xsd:complexType name="Networking.STPInstance.InterfacePathCost">
141
+ <xsd:sequence>
142
+ <xsd:element name="name" type="xsd:string"/>
143
+ <xsd:element name="path_cost" type="tns:Networking.STPInstance.PathCost"/>
144
+ </xsd:sequence>
145
+ </xsd:complexType>
146
+ <xsd:complexType name="Common.StringSequenceSequence">
147
+ <xsd:complexContent>
148
+ <xsd:restriction base='SOAP-ENC:Array'>
149
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
150
+ </xsd:restriction>
151
+ </xsd:complexContent>
152
+ </xsd:complexType>
153
+ <xsd:complexType name="Networking.STPInstance.InterfacePrioritySequenceSequence">
154
+ <xsd:complexContent>
155
+ <xsd:restriction base='SOAP-ENC:Array'>
156
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.STPInstance.InterfacePrioritySequence[]'/>
157
+ </xsd:restriction>
158
+ </xsd:complexContent>
159
+ </xsd:complexType>
160
+ <xsd:complexType name="Networking.STPInstance.InterfaceSTPStateSequence">
161
+ <xsd:complexContent>
162
+ <xsd:restriction base='SOAP-ENC:Array'>
163
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.STPInstance.InterfaceSTPState[]'/>
164
+ </xsd:restriction>
165
+ </xsd:complexContent>
166
+ </xsd:complexType>
167
+ <xsd:simpleType name="Networking.STPRoleType">
168
+ <xsd:restriction base="xsd:string">
169
+ <xsd:enumeration value="STP_ROLE_TYPE_DISABLE">
170
+ <xsd:annotation>
171
+ <xsd:documentation>STP_ROLE_TYPE_DISABLE</xsd:documentation>
172
+ </xsd:annotation>
173
+ </xsd:enumeration>
174
+ <xsd:enumeration value="STP_ROLE_TYPE_ROOT">
175
+ <xsd:annotation>
176
+ <xsd:documentation>STP_ROLE_TYPE_ROOT</xsd:documentation>
177
+ </xsd:annotation>
178
+ </xsd:enumeration>
179
+ <xsd:enumeration value="STP_ROLE_TYPE_DESIGNATE">
180
+ <xsd:annotation>
181
+ <xsd:documentation>STP_ROLE_TYPE_DESIGNATE</xsd:documentation>
182
+ </xsd:annotation>
183
+ </xsd:enumeration>
184
+ <xsd:enumeration value="STP_ROLE_TYPE_ALTERNATE">
185
+ <xsd:annotation>
186
+ <xsd:documentation>STP_ROLE_TYPE_ALTERNATE</xsd:documentation>
187
+ </xsd:annotation>
188
+ </xsd:enumeration>
189
+ <xsd:enumeration value="STP_ROLE_TYPE_BACKUP">
190
+ <xsd:annotation>
191
+ <xsd:documentation>STP_ROLE_TYPE_BACKUP</xsd:documentation>
192
+ </xsd:annotation>
193
+ </xsd:enumeration>
194
+ <xsd:enumeration value="STP_ROLE_TYPE_MASTER">
195
+ <xsd:annotation>
196
+ <xsd:documentation>STP_ROLE_TYPE_MASTER</xsd:documentation>
197
+ </xsd:annotation>
198
+ </xsd:enumeration>
199
+ </xsd:restriction>
200
+ </xsd:simpleType>
201
+ <xsd:complexType name="Networking.STPInstance.InterfacePathCostSequenceSequence">
202
+ <xsd:complexContent>
203
+ <xsd:restriction base='SOAP-ENC:Array'>
204
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.STPInstance.InterfacePathCostSequence[]'/>
205
+ </xsd:restriction>
206
+ </xsd:complexContent>
207
+ </xsd:complexType>
208
+ <xsd:complexType name="Networking.STPInstance.InterfaceSTPRole">
209
+ <xsd:sequence>
210
+ <xsd:element name="name" type="xsd:string"/>
211
+ <xsd:element name="role" type="tns:Networking.STPRoleType"/>
212
+ </xsd:sequence>
213
+ </xsd:complexType>
214
+ <xsd:complexType name="Networking.STPInstance.InterfaceSTPRoleSequenceSequence">
215
+ <xsd:complexContent>
216
+ <xsd:restriction base='SOAP-ENC:Array'>
217
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.STPInstance.InterfaceSTPRoleSequence[]'/>
218
+ </xsd:restriction>
219
+ </xsd:complexContent>
220
+ </xsd:complexType>
221
+ <xsd:complexType name="Networking.STPInstance.PathCost">
222
+ <xsd:sequence>
223
+ <xsd:element name="type" type="tns:Networking.STPInstance.PathCostType"/>
224
+ <xsd:element name="value" type="xsd:long"/>
225
+ </xsd:sequence>
226
+ </xsd:complexType>
227
+ </xsd:schema>
228
+ </types>
229
+
230
+ <!-- message -->
231
+
232
+ <message name="Networking.STPInstance.get_listRequest">
233
+ </message>
234
+ <message name="Networking.STPInstance.get_listResponse">
235
+ <part name="return" type="tns:Common.ULongSequence"/>
236
+ </message>
237
+
238
+ <message name="Networking.STPInstance.createRequest">
239
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
240
+ <part name="priorities" type="tns:Common.ULongSequence"/>
241
+ <part name="vlan_names" type="tns:Common.StringSequenceSequence"/>
242
+ </message>
243
+ <message name="Networking.STPInstance.createResponse">
244
+ </message>
245
+
246
+ <message name="Networking.STPInstance.delete_instanceRequest">
247
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
248
+ </message>
249
+ <message name="Networking.STPInstance.delete_instanceResponse">
250
+ </message>
251
+
252
+ <message name="Networking.STPInstance.delete_all_instancesRequest">
253
+ </message>
254
+ <message name="Networking.STPInstance.delete_all_instancesResponse">
255
+ </message>
256
+
257
+ <message name="Networking.STPInstance.set_bridge_priorityRequest">
258
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
259
+ <part name="priorities" type="tns:Common.ULongSequence"/>
260
+ </message>
261
+ <message name="Networking.STPInstance.set_bridge_priorityResponse">
262
+ </message>
263
+
264
+ <message name="Networking.STPInstance.get_bridge_priorityRequest">
265
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
266
+ </message>
267
+ <message name="Networking.STPInstance.get_bridge_priorityResponse">
268
+ <part name="return" type="tns:Common.ULongSequence"/>
269
+ </message>
270
+
271
+ <message name="Networking.STPInstance.get_root_bridge_mac_addressRequest">
272
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
273
+ </message>
274
+ <message name="Networking.STPInstance.get_root_bridge_mac_addressResponse">
275
+ <part name="return" type="tns:Common.StringSequence"/>
276
+ </message>
277
+
278
+ <message name="Networking.STPInstance.get_regional_root_bridge_mac_addressRequest">
279
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
280
+ </message>
281
+ <message name="Networking.STPInstance.get_regional_root_bridge_mac_addressResponse">
282
+ <part name="return" type="tns:Common.StringSequence"/>
283
+ </message>
284
+
285
+ <message name="Networking.STPInstance.get_vlanRequest">
286
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
287
+ </message>
288
+ <message name="Networking.STPInstance.get_vlanResponse">
289
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
290
+ </message>
291
+
292
+ <message name="Networking.STPInstance.add_vlanRequest">
293
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
294
+ <part name="vlan_names" type="tns:Common.StringSequenceSequence"/>
295
+ </message>
296
+ <message name="Networking.STPInstance.add_vlanResponse">
297
+ </message>
298
+
299
+ <message name="Networking.STPInstance.remove_vlanRequest">
300
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
301
+ <part name="vlan_names" type="tns:Common.StringSequenceSequence"/>
302
+ </message>
303
+ <message name="Networking.STPInstance.remove_vlanResponse">
304
+ </message>
305
+
306
+ <message name="Networking.STPInstance.remove_all_vlansRequest">
307
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
308
+ </message>
309
+ <message name="Networking.STPInstance.remove_all_vlansResponse">
310
+ </message>
311
+
312
+ <message name="Networking.STPInstance.get_interface_active_stateRequest">
313
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
314
+ <part name="interfaces" type="tns:Common.StringSequenceSequence"/>
315
+ </message>
316
+ <message name="Networking.STPInstance.get_interface_active_stateResponse">
317
+ <part name="return" type="tns:Networking.STPInstance.InterfaceSTPStateSequenceSequence"/>
318
+ </message>
319
+
320
+ <message name="Networking.STPInstance.get_interface_requested_stateRequest">
321
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
322
+ <part name="interfaces" type="tns:Common.StringSequenceSequence"/>
323
+ </message>
324
+ <message name="Networking.STPInstance.get_interface_requested_stateResponse">
325
+ <part name="return" type="tns:Networking.STPInstance.InterfaceSTPStateSequenceSequence"/>
326
+ </message>
327
+
328
+ <message name="Networking.STPInstance.get_interface_roleRequest">
329
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
330
+ <part name="interfaces" type="tns:Common.StringSequenceSequence"/>
331
+ </message>
332
+ <message name="Networking.STPInstance.get_interface_roleResponse">
333
+ <part name="return" type="tns:Networking.STPInstance.InterfaceSTPRoleSequenceSequence"/>
334
+ </message>
335
+
336
+ <message name="Networking.STPInstance.set_interface_priorityRequest">
337
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
338
+ <part name="priorities" type="tns:Networking.STPInstance.InterfacePrioritySequenceSequence"/>
339
+ </message>
340
+ <message name="Networking.STPInstance.set_interface_priorityResponse">
341
+ </message>
342
+
343
+ <message name="Networking.STPInstance.get_interface_priorityRequest">
344
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
345
+ <part name="interfaces" type="tns:Common.StringSequenceSequence"/>
346
+ </message>
347
+ <message name="Networking.STPInstance.get_interface_priorityResponse">
348
+ <part name="return" type="tns:Networking.STPInstance.InterfacePrioritySequenceSequence"/>
349
+ </message>
350
+
351
+ <message name="Networking.STPInstance.set_interface_path_costRequest">
352
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
353
+ <part name="path_costs" type="tns:Networking.STPInstance.InterfacePathCostSequenceSequence"/>
354
+ </message>
355
+ <message name="Networking.STPInstance.set_interface_path_costResponse">
356
+ </message>
357
+
358
+ <message name="Networking.STPInstance.get_interface_path_costRequest">
359
+ <part name="stp_instances" type="tns:Common.ULongSequence"/>
360
+ <part name="interfaces" type="tns:Common.StringSequenceSequence"/>
361
+ <part name="path_cost_types" type="tns:Networking.STPInstance.PathCostTypeSequenceSequence"/>
362
+ </message>
363
+ <message name="Networking.STPInstance.get_interface_path_costResponse">
364
+ <part name="return" type="tns:Networking.STPInstance.InterfacePathCostSequenceSequence"/>
365
+ </message>
366
+
367
+ <message name="Networking.STPInstance.get_versionRequest">
368
+ </message>
369
+ <message name="Networking.STPInstance.get_versionResponse">
370
+ <part name="return" type="xsd:string"/>
371
+ </message>
372
+
373
+ <!-- portType -->
374
+
375
+ <portType name="Networking.STPInstancePortType">
376
+ <operation name="get_list">
377
+ <documentation>
378
+ Gets a list of all spanning tree instances.
379
+
380
+ </documentation>
381
+ <input message="tns:Networking.STPInstance.get_listRequest"/>
382
+ <output message="tns:Networking.STPInstance.get_listResponse"/>
383
+ </operation>
384
+ <operation name="create">
385
+ <documentation>
386
+ Creates the specified spanning tree instances.
387
+
388
+ </documentation>
389
+ <input message="tns:Networking.STPInstance.createRequest"/>
390
+ <output message="tns:Networking.STPInstance.createResponse"/>
391
+ </operation>
392
+ <operation name="delete_instance">
393
+ <documentation>
394
+ Deletes the specified spanning tree instances.
395
+
396
+ </documentation>
397
+ <input message="tns:Networking.STPInstance.delete_instanceRequest"/>
398
+ <output message="tns:Networking.STPInstance.delete_instanceResponse"/>
399
+ </operation>
400
+ <operation name="delete_all_instances">
401
+ <documentation>
402
+ Deletes all spanning tree instances.
403
+
404
+ </documentation>
405
+ <input message="tns:Networking.STPInstance.delete_all_instancesRequest"/>
406
+ <output message="tns:Networking.STPInstance.delete_all_instancesResponse"/>
407
+ </operation>
408
+ <operation name="set_bridge_priority">
409
+ <documentation>
410
+ Sets the bridge priorities of the specified spanning tree instances. Each bridge in a
411
+ spanning tree instance has a priority value, which controls the topoloty of the spanning
412
+ tree chosen by the protocol. The bridge with the lowest priority value will become the
413
+ root of the spanning tree. Priority values range from 0-61440 in steps of 4096. Hence,
414
+ the supported priorities are:
415
+ 0 16384 32768 49152
416
+ 4096 20480 36864 53248
417
+ 8192 24576 40960 57344
418
+ 12288 28672 45056 61440
419
+
420
+ The default bridge priority is 61440, which will prevent BIGIP from being chosen as the root
421
+ bridge. If the specified bridge priority is not one of the allowed values listed above, it is
422
+ rounded down to the next lower value in the list.
423
+ In STP or RSTP mode, only STP intance 0 is valid.
424
+
425
+ </documentation>
426
+ <input message="tns:Networking.STPInstance.set_bridge_priorityRequest"/>
427
+ <output message="tns:Networking.STPInstance.set_bridge_priorityResponse"/>
428
+ </operation>
429
+ <operation name="get_bridge_priority">
430
+ <documentation>
431
+ Gets the bridge priorities of the specified spanning tree instances. Each bridge in a
432
+ spanning tree instance has a priority value, which controls the topoloty of the spanning
433
+ tree chosen by the protocol. The bridge with the lowest priority value will become the
434
+ root of the spanning tree. Priority values range from 0-61440 in steps of 4096. Hence,
435
+ the supported priorities are:
436
+ 0 16384 32768 49152
437
+ 4096 20480 36864 53248
438
+ 8192 24576 40960 57344
439
+ 12288 28672 45056 61440
440
+
441
+ The default bridge priority is 61440, which will prevent BIGIP from being chosen as the root
442
+ bridge. If the specified bridge priority is not one of the allowed values listed above, it is
443
+ rounded down to the next lower value in the list.
444
+ In STP or RSTP mode, only STP intance 0 is valid.
445
+
446
+ </documentation>
447
+ <input message="tns:Networking.STPInstance.get_bridge_priorityRequest"/>
448
+ <output message="tns:Networking.STPInstance.get_bridge_priorityResponse"/>
449
+ </operation>
450
+ <operation name="get_root_bridge_mac_address">
451
+ <documentation>
452
+ Gets the MAC addresses of the root bridges.
453
+
454
+ </documentation>
455
+ <input message="tns:Networking.STPInstance.get_root_bridge_mac_addressRequest"/>
456
+ <output message="tns:Networking.STPInstance.get_root_bridge_mac_addressResponse"/>
457
+ </operation>
458
+ <operation name="get_regional_root_bridge_mac_address">
459
+ <documentation>
460
+ Gets the MAC addresses of the regional root bridges.
461
+
462
+ </documentation>
463
+ <input message="tns:Networking.STPInstance.get_regional_root_bridge_mac_addressRequest"/>
464
+ <output message="tns:Networking.STPInstance.get_regional_root_bridge_mac_addressResponse"/>
465
+ </operation>
466
+ <operation name="get_vlan">
467
+ <documentation>
468
+ Gets the lists of VLANs the specified spanning tree instances are associated with.
469
+ This method may be used only in MSTP mode. In STP or RSTP mode, all VLANs automatically
470
+ belong to spanning tree instance 0.
471
+
472
+ </documentation>
473
+ <input message="tns:Networking.STPInstance.get_vlanRequest"/>
474
+ <output message="tns:Networking.STPInstance.get_vlanResponse"/>
475
+ </operation>
476
+ <operation name="add_vlan">
477
+ <documentation>
478
+ Adds/associates VLANs to the specified spanning tree instances.
479
+ This method may be used only in MSTP mode. In STP or RSTP mode, all VLANs
480
+ automatically belong to spanning tree instance 0.
481
+
482
+ </documentation>
483
+ <input message="tns:Networking.STPInstance.add_vlanRequest"/>
484
+ <output message="tns:Networking.STPInstance.add_vlanResponse"/>
485
+ </operation>
486
+ <operation name="remove_vlan">
487
+ <documentation>
488
+ Removes VLANs from the specified spanning tree instances.
489
+ This method may be used only in MSTP mode. In STP or RSTP mode, all VLANs
490
+ automatically belong to spanning tree instance 0, and they can not be deleted
491
+ from it.
492
+
493
+ </documentation>
494
+ <input message="tns:Networking.STPInstance.remove_vlanRequest"/>
495
+ <output message="tns:Networking.STPInstance.remove_vlanResponse"/>
496
+ </operation>
497
+ <operation name="remove_all_vlans">
498
+ <documentation>
499
+ Removes all VLANs from the specified spanning tree instances.
500
+ This method may be used only in MSTP mode. In STP or RSTP mode, all VLANs
501
+ automatically belong to spanning tree instance 0, and they can not be deleted
502
+ from it.
503
+
504
+ </documentation>
505
+ <input message="tns:Networking.STPInstance.remove_all_vlansRequest"/>
506
+ <output message="tns:Networking.STPInstance.remove_all_vlansResponse"/>
507
+ </operation>
508
+ <operation name="get_interface_active_state">
509
+ <documentation>
510
+ Gets the STP active states for the specified STP port objects.
511
+
512
+ </documentation>
513
+ <input message="tns:Networking.STPInstance.get_interface_active_stateRequest"/>
514
+ <output message="tns:Networking.STPInstance.get_interface_active_stateResponse"/>
515
+ </operation>
516
+ <operation name="get_interface_requested_state">
517
+ <documentation>
518
+ Gets the STP requested/configured states for the specified STP port objects.
519
+
520
+ </documentation>
521
+ <input message="tns:Networking.STPInstance.get_interface_requested_stateRequest"/>
522
+ <output message="tns:Networking.STPInstance.get_interface_requested_stateResponse"/>
523
+ </operation>
524
+ <operation name="get_interface_role">
525
+ <documentation>
526
+ Gets the STP roles for the specified STP port objects.
527
+
528
+ </documentation>
529
+ <input message="tns:Networking.STPInstance.get_interface_roleRequest"/>
530
+ <output message="tns:Networking.STPInstance.get_interface_roleResponse"/>
531
+ </operation>
532
+ <operation name="set_interface_priority">
533
+ <documentation>
534
+ Sets the priorities for the specified network interfaces in the specified spanning tree instances.
535
+ These priority values influence which interfaces are chosen to carry network traffic. Interfaces with
536
+ numerically lower values are favored to carry traffic. Interface priorities have values in the range
537
+ from 0-240 in steps of 16. Hence, the supported priorities are:
538
+ 0 64 128 192
539
+ 16 80 144 208
540
+ 32 96 160 224
541
+ 48 112 176 240
542
+
543
+ The default interface priority is 128. If the specified interface priority is not one of the allowed
544
+ values listed above, it is rounded down to the next lower value in the list.
545
+ In STP or RSTP mode, only STP intance 0 is valid.
546
+
547
+ </documentation>
548
+ <input message="tns:Networking.STPInstance.set_interface_priorityRequest"/>
549
+ <output message="tns:Networking.STPInstance.set_interface_priorityResponse"/>
550
+ </operation>
551
+ <operation name="get_interface_priority">
552
+ <documentation>
553
+ Gets the priorities for the specified network interfaces in the specified spanning tree instances.
554
+ These priority values influence which interfaces are chosen to carry network traffic. Interfaces with
555
+ numerically lower values are favored to carry traffic. Interface priorities have values in the range
556
+ from 0-240 in steps of 16. Hence, the supported priorities are:
557
+ 0 64 128 192
558
+ 16 80 144 208
559
+ 32 96 160 224
560
+ 48 112 176 240
561
+
562
+ The default interface priority is 128. If the specified interface priority is not one of the allowed
563
+ values listed above, it is rounded down to the next lower value in the list.
564
+ In STP or RSTP mode, only STP intance 0 is valid.
565
+
566
+ </documentation>
567
+ <input message="tns:Networking.STPInstance.get_interface_priorityRequest"/>
568
+ <output message="tns:Networking.STPInstance.get_interface_priorityResponse"/>
569
+ </operation>
570
+ <operation name="set_interface_path_cost">
571
+ <documentation>
572
+ Sets the path costs for the specified network interfaces in the specified spanning tree instances.
573
+ An interface path cost represents the relative cost of sending network traffic through that interface.
574
+ In calculating the spanning tree, the algorithm tries to minimize the total path cost between each point
575
+ and the root bridge. By manipulating the path costs of different interfaces, it's possible to steer
576
+ traffic toward paths that are faster, more reliable, and/or more economical. Path costs have a range of
577
+ 1-200,000,000, and the default path cost for an interface is based on the interface's maximum speed (not
578
+ the actual speed).
579
+ Max interface speed Default path cost
580
+ 10 Gb/s 2,000
581
+ 1 Gb/s 20,000
582
+ 100 Mb/s 200,000
583
+ 10 MB/s 2,000,000
584
+
585
+ The default path cost is a function of the interface's maximum speed, not its actual speed, so the default
586
+ path cost of a 10/100/1000 Mb/s interface will be 20,000 even if the interface is running at 10 Mb/s.
587
+ Changes in link speed don't cause path costs to change.
588
+ Link aggregation doesn't affect the default path cost, i.e. a trunk of four 1 Gb/s interfaces will still
589
+ have a default path cost of 20,000.
590
+ In STP or RSTP mode, only STP intance 0 is valid.
591
+
592
+ </documentation>
593
+ <input message="tns:Networking.STPInstance.set_interface_path_costRequest"/>
594
+ <output message="tns:Networking.STPInstance.set_interface_path_costResponse"/>
595
+ </operation>
596
+ <operation name="get_interface_path_cost">
597
+ <documentation>
598
+ Gets the path costs for the specified network interfaces in the specified spanning tree instances.
599
+ An interface path cost represents the relative cost of sending network traffic through that interface.
600
+ In calculating the spanning tree, the algorithm tries to minimize the total path cost between each point
601
+ and the root bridge. By manipulating the path costs of different interfaces, it's possible to steer
602
+ traffic toward paths that are faster, more reliable, and/or more economical. Path costs have a range of
603
+ 1-200,000,000, and the default path cost for an interface is based on the interface's maximum speed (not
604
+ the actual speed).
605
+ Max interface speed Default path cost
606
+ 10 Gb/s 2,000
607
+ 1 Gb/s 20,000
608
+ 100 Mb/s 200,000
609
+ 10 MB/s 2,000,000
610
+
611
+ The default path cost is a function of the interface's maximum speed, not its actual speed, so the default
612
+ path cost of a 10/100/1000 Mb/s interface will be 20,000 even if the interface is running at 10 Mb/s.
613
+ Changes in link speed don't cause path costs to change.
614
+ Link aggregation doesn't affect the default path cost, i.e. a trunk of four 1 Gb/s interfaces will still
615
+ have a default path cost of 20,000.
616
+ In STP or RSTP mode, only STP intance 0 is valid.
617
+
618
+ </documentation>
619
+ <input message="tns:Networking.STPInstance.get_interface_path_costRequest"/>
620
+ <output message="tns:Networking.STPInstance.get_interface_path_costResponse"/>
621
+ </operation>
622
+ <operation name="get_version">
623
+ <documentation>
624
+ Gets the version information for this interface.
625
+
626
+ </documentation>
627
+ <input message="tns:Networking.STPInstance.get_versionRequest"/>
628
+ <output message="tns:Networking.STPInstance.get_versionResponse"/>
629
+ </operation>
630
+ </portType>
631
+
632
+ <!-- binding -->
633
+
634
+ <binding name="Networking.STPInstanceBinding" type="tns:Networking.STPInstancePortType">
635
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
636
+ <operation name="get_list">
637
+ <documentation>
638
+ Gets a list of all spanning tree instances.
639
+
640
+ </documentation>
641
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
642
+ <input>
643
+ <soap:body
644
+ use="encoded"
645
+ namespace="urn:iControl:Networking/STPInstance"
646
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
647
+ </input>
648
+ <output>
649
+ <soap:body
650
+ use="encoded"
651
+ namespace="urn:iControl:Networking/STPInstance"
652
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
653
+ </output>
654
+ </operation>
655
+
656
+ <operation name="create">
657
+ <documentation>
658
+ Creates the specified spanning tree instances.
659
+
660
+ </documentation>
661
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
662
+ <input>
663
+ <soap:body
664
+ use="encoded"
665
+ namespace="urn:iControl:Networking/STPInstance"
666
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
667
+ </input>
668
+ <output>
669
+ <soap:body
670
+ use="encoded"
671
+ namespace="urn:iControl:Networking/STPInstance"
672
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
673
+ </output>
674
+ </operation>
675
+
676
+ <operation name="delete_instance">
677
+ <documentation>
678
+ Deletes the specified spanning tree instances.
679
+
680
+ </documentation>
681
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
682
+ <input>
683
+ <soap:body
684
+ use="encoded"
685
+ namespace="urn:iControl:Networking/STPInstance"
686
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
687
+ </input>
688
+ <output>
689
+ <soap:body
690
+ use="encoded"
691
+ namespace="urn:iControl:Networking/STPInstance"
692
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
693
+ </output>
694
+ </operation>
695
+
696
+ <operation name="delete_all_instances">
697
+ <documentation>
698
+ Deletes all spanning tree instances.
699
+
700
+ </documentation>
701
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
702
+ <input>
703
+ <soap:body
704
+ use="encoded"
705
+ namespace="urn:iControl:Networking/STPInstance"
706
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
707
+ </input>
708
+ <output>
709
+ <soap:body
710
+ use="encoded"
711
+ namespace="urn:iControl:Networking/STPInstance"
712
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
713
+ </output>
714
+ </operation>
715
+
716
+ <operation name="set_bridge_priority">
717
+ <documentation>
718
+ Sets the bridge priorities of the specified spanning tree instances. Each bridge in a
719
+ spanning tree instance has a priority value, which controls the topoloty of the spanning
720
+ tree chosen by the protocol. The bridge with the lowest priority value will become the
721
+ root of the spanning tree. Priority values range from 0-61440 in steps of 4096. Hence,
722
+ the supported priorities are:
723
+ 0 16384 32768 49152
724
+ 4096 20480 36864 53248
725
+ 8192 24576 40960 57344
726
+ 12288 28672 45056 61440
727
+
728
+ The default bridge priority is 61440, which will prevent BIGIP from being chosen as the root
729
+ bridge. If the specified bridge priority is not one of the allowed values listed above, it is
730
+ rounded down to the next lower value in the list.
731
+ In STP or RSTP mode, only STP intance 0 is valid.
732
+
733
+ </documentation>
734
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
735
+ <input>
736
+ <soap:body
737
+ use="encoded"
738
+ namespace="urn:iControl:Networking/STPInstance"
739
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
740
+ </input>
741
+ <output>
742
+ <soap:body
743
+ use="encoded"
744
+ namespace="urn:iControl:Networking/STPInstance"
745
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
746
+ </output>
747
+ </operation>
748
+
749
+ <operation name="get_bridge_priority">
750
+ <documentation>
751
+ Gets the bridge priorities of the specified spanning tree instances. Each bridge in a
752
+ spanning tree instance has a priority value, which controls the topoloty of the spanning
753
+ tree chosen by the protocol. The bridge with the lowest priority value will become the
754
+ root of the spanning tree. Priority values range from 0-61440 in steps of 4096. Hence,
755
+ the supported priorities are:
756
+ 0 16384 32768 49152
757
+ 4096 20480 36864 53248
758
+ 8192 24576 40960 57344
759
+ 12288 28672 45056 61440
760
+
761
+ The default bridge priority is 61440, which will prevent BIGIP from being chosen as the root
762
+ bridge. If the specified bridge priority is not one of the allowed values listed above, it is
763
+ rounded down to the next lower value in the list.
764
+ In STP or RSTP mode, only STP intance 0 is valid.
765
+
766
+ </documentation>
767
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
768
+ <input>
769
+ <soap:body
770
+ use="encoded"
771
+ namespace="urn:iControl:Networking/STPInstance"
772
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
773
+ </input>
774
+ <output>
775
+ <soap:body
776
+ use="encoded"
777
+ namespace="urn:iControl:Networking/STPInstance"
778
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
779
+ </output>
780
+ </operation>
781
+
782
+ <operation name="get_root_bridge_mac_address">
783
+ <documentation>
784
+ Gets the MAC addresses of the root bridges.
785
+
786
+ </documentation>
787
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
788
+ <input>
789
+ <soap:body
790
+ use="encoded"
791
+ namespace="urn:iControl:Networking/STPInstance"
792
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
793
+ </input>
794
+ <output>
795
+ <soap:body
796
+ use="encoded"
797
+ namespace="urn:iControl:Networking/STPInstance"
798
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
799
+ </output>
800
+ </operation>
801
+
802
+ <operation name="get_regional_root_bridge_mac_address">
803
+ <documentation>
804
+ Gets the MAC addresses of the regional root bridges.
805
+
806
+ </documentation>
807
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
808
+ <input>
809
+ <soap:body
810
+ use="encoded"
811
+ namespace="urn:iControl:Networking/STPInstance"
812
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
813
+ </input>
814
+ <output>
815
+ <soap:body
816
+ use="encoded"
817
+ namespace="urn:iControl:Networking/STPInstance"
818
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
819
+ </output>
820
+ </operation>
821
+
822
+ <operation name="get_vlan">
823
+ <documentation>
824
+ Gets the lists of VLANs the specified spanning tree instances are associated with.
825
+ This method may be used only in MSTP mode. In STP or RSTP mode, all VLANs automatically
826
+ belong to spanning tree instance 0.
827
+
828
+ </documentation>
829
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
830
+ <input>
831
+ <soap:body
832
+ use="encoded"
833
+ namespace="urn:iControl:Networking/STPInstance"
834
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
835
+ </input>
836
+ <output>
837
+ <soap:body
838
+ use="encoded"
839
+ namespace="urn:iControl:Networking/STPInstance"
840
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
841
+ </output>
842
+ </operation>
843
+
844
+ <operation name="add_vlan">
845
+ <documentation>
846
+ Adds/associates VLANs to the specified spanning tree instances.
847
+ This method may be used only in MSTP mode. In STP or RSTP mode, all VLANs
848
+ automatically belong to spanning tree instance 0.
849
+
850
+ </documentation>
851
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
852
+ <input>
853
+ <soap:body
854
+ use="encoded"
855
+ namespace="urn:iControl:Networking/STPInstance"
856
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
857
+ </input>
858
+ <output>
859
+ <soap:body
860
+ use="encoded"
861
+ namespace="urn:iControl:Networking/STPInstance"
862
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
863
+ </output>
864
+ </operation>
865
+
866
+ <operation name="remove_vlan">
867
+ <documentation>
868
+ Removes VLANs from the specified spanning tree instances.
869
+ This method may be used only in MSTP mode. In STP or RSTP mode, all VLANs
870
+ automatically belong to spanning tree instance 0, and they can not be deleted
871
+ from it.
872
+
873
+ </documentation>
874
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
875
+ <input>
876
+ <soap:body
877
+ use="encoded"
878
+ namespace="urn:iControl:Networking/STPInstance"
879
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
880
+ </input>
881
+ <output>
882
+ <soap:body
883
+ use="encoded"
884
+ namespace="urn:iControl:Networking/STPInstance"
885
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
886
+ </output>
887
+ </operation>
888
+
889
+ <operation name="remove_all_vlans">
890
+ <documentation>
891
+ Removes all VLANs from the specified spanning tree instances.
892
+ This method may be used only in MSTP mode. In STP or RSTP mode, all VLANs
893
+ automatically belong to spanning tree instance 0, and they can not be deleted
894
+ from it.
895
+
896
+ </documentation>
897
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
898
+ <input>
899
+ <soap:body
900
+ use="encoded"
901
+ namespace="urn:iControl:Networking/STPInstance"
902
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
903
+ </input>
904
+ <output>
905
+ <soap:body
906
+ use="encoded"
907
+ namespace="urn:iControl:Networking/STPInstance"
908
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
909
+ </output>
910
+ </operation>
911
+
912
+ <operation name="get_interface_active_state">
913
+ <documentation>
914
+ Gets the STP active states for the specified STP port objects.
915
+
916
+ </documentation>
917
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
918
+ <input>
919
+ <soap:body
920
+ use="encoded"
921
+ namespace="urn:iControl:Networking/STPInstance"
922
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
923
+ </input>
924
+ <output>
925
+ <soap:body
926
+ use="encoded"
927
+ namespace="urn:iControl:Networking/STPInstance"
928
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
929
+ </output>
930
+ </operation>
931
+
932
+ <operation name="get_interface_requested_state">
933
+ <documentation>
934
+ Gets the STP requested/configured states for the specified STP port objects.
935
+
936
+ </documentation>
937
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
938
+ <input>
939
+ <soap:body
940
+ use="encoded"
941
+ namespace="urn:iControl:Networking/STPInstance"
942
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
943
+ </input>
944
+ <output>
945
+ <soap:body
946
+ use="encoded"
947
+ namespace="urn:iControl:Networking/STPInstance"
948
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
949
+ </output>
950
+ </operation>
951
+
952
+ <operation name="get_interface_role">
953
+ <documentation>
954
+ Gets the STP roles for the specified STP port objects.
955
+
956
+ </documentation>
957
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
958
+ <input>
959
+ <soap:body
960
+ use="encoded"
961
+ namespace="urn:iControl:Networking/STPInstance"
962
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
963
+ </input>
964
+ <output>
965
+ <soap:body
966
+ use="encoded"
967
+ namespace="urn:iControl:Networking/STPInstance"
968
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
969
+ </output>
970
+ </operation>
971
+
972
+ <operation name="set_interface_priority">
973
+ <documentation>
974
+ Sets the priorities for the specified network interfaces in the specified spanning tree instances.
975
+ These priority values influence which interfaces are chosen to carry network traffic. Interfaces with
976
+ numerically lower values are favored to carry traffic. Interface priorities have values in the range
977
+ from 0-240 in steps of 16. Hence, the supported priorities are:
978
+ 0 64 128 192
979
+ 16 80 144 208
980
+ 32 96 160 224
981
+ 48 112 176 240
982
+
983
+ The default interface priority is 128. If the specified interface priority is not one of the allowed
984
+ values listed above, it is rounded down to the next lower value in the list.
985
+ In STP or RSTP mode, only STP intance 0 is valid.
986
+
987
+ </documentation>
988
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
989
+ <input>
990
+ <soap:body
991
+ use="encoded"
992
+ namespace="urn:iControl:Networking/STPInstance"
993
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
994
+ </input>
995
+ <output>
996
+ <soap:body
997
+ use="encoded"
998
+ namespace="urn:iControl:Networking/STPInstance"
999
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1000
+ </output>
1001
+ </operation>
1002
+
1003
+ <operation name="get_interface_priority">
1004
+ <documentation>
1005
+ Gets the priorities for the specified network interfaces in the specified spanning tree instances.
1006
+ These priority values influence which interfaces are chosen to carry network traffic. Interfaces with
1007
+ numerically lower values are favored to carry traffic. Interface priorities have values in the range
1008
+ from 0-240 in steps of 16. Hence, the supported priorities are:
1009
+ 0 64 128 192
1010
+ 16 80 144 208
1011
+ 32 96 160 224
1012
+ 48 112 176 240
1013
+
1014
+ The default interface priority is 128. If the specified interface priority is not one of the allowed
1015
+ values listed above, it is rounded down to the next lower value in the list.
1016
+ In STP or RSTP mode, only STP intance 0 is valid.
1017
+
1018
+ </documentation>
1019
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
1020
+ <input>
1021
+ <soap:body
1022
+ use="encoded"
1023
+ namespace="urn:iControl:Networking/STPInstance"
1024
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1025
+ </input>
1026
+ <output>
1027
+ <soap:body
1028
+ use="encoded"
1029
+ namespace="urn:iControl:Networking/STPInstance"
1030
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1031
+ </output>
1032
+ </operation>
1033
+
1034
+ <operation name="set_interface_path_cost">
1035
+ <documentation>
1036
+ Sets the path costs for the specified network interfaces in the specified spanning tree instances.
1037
+ An interface path cost represents the relative cost of sending network traffic through that interface.
1038
+ In calculating the spanning tree, the algorithm tries to minimize the total path cost between each point
1039
+ and the root bridge. By manipulating the path costs of different interfaces, it's possible to steer
1040
+ traffic toward paths that are faster, more reliable, and/or more economical. Path costs have a range of
1041
+ 1-200,000,000, and the default path cost for an interface is based on the interface's maximum speed (not
1042
+ the actual speed).
1043
+ Max interface speed Default path cost
1044
+ 10 Gb/s 2,000
1045
+ 1 Gb/s 20,000
1046
+ 100 Mb/s 200,000
1047
+ 10 MB/s 2,000,000
1048
+
1049
+ The default path cost is a function of the interface's maximum speed, not its actual speed, so the default
1050
+ path cost of a 10/100/1000 Mb/s interface will be 20,000 even if the interface is running at 10 Mb/s.
1051
+ Changes in link speed don't cause path costs to change.
1052
+ Link aggregation doesn't affect the default path cost, i.e. a trunk of four 1 Gb/s interfaces will still
1053
+ have a default path cost of 20,000.
1054
+ In STP or RSTP mode, only STP intance 0 is valid.
1055
+
1056
+ </documentation>
1057
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
1058
+ <input>
1059
+ <soap:body
1060
+ use="encoded"
1061
+ namespace="urn:iControl:Networking/STPInstance"
1062
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1063
+ </input>
1064
+ <output>
1065
+ <soap:body
1066
+ use="encoded"
1067
+ namespace="urn:iControl:Networking/STPInstance"
1068
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1069
+ </output>
1070
+ </operation>
1071
+
1072
+ <operation name="get_interface_path_cost">
1073
+ <documentation>
1074
+ Gets the path costs for the specified network interfaces in the specified spanning tree instances.
1075
+ An interface path cost represents the relative cost of sending network traffic through that interface.
1076
+ In calculating the spanning tree, the algorithm tries to minimize the total path cost between each point
1077
+ and the root bridge. By manipulating the path costs of different interfaces, it's possible to steer
1078
+ traffic toward paths that are faster, more reliable, and/or more economical. Path costs have a range of
1079
+ 1-200,000,000, and the default path cost for an interface is based on the interface's maximum speed (not
1080
+ the actual speed).
1081
+ Max interface speed Default path cost
1082
+ 10 Gb/s 2,000
1083
+ 1 Gb/s 20,000
1084
+ 100 Mb/s 200,000
1085
+ 10 MB/s 2,000,000
1086
+
1087
+ The default path cost is a function of the interface's maximum speed, not its actual speed, so the default
1088
+ path cost of a 10/100/1000 Mb/s interface will be 20,000 even if the interface is running at 10 Mb/s.
1089
+ Changes in link speed don't cause path costs to change.
1090
+ Link aggregation doesn't affect the default path cost, i.e. a trunk of four 1 Gb/s interfaces will still
1091
+ have a default path cost of 20,000.
1092
+ In STP or RSTP mode, only STP intance 0 is valid.
1093
+
1094
+ </documentation>
1095
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
1096
+ <input>
1097
+ <soap:body
1098
+ use="encoded"
1099
+ namespace="urn:iControl:Networking/STPInstance"
1100
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1101
+ </input>
1102
+ <output>
1103
+ <soap:body
1104
+ use="encoded"
1105
+ namespace="urn:iControl:Networking/STPInstance"
1106
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1107
+ </output>
1108
+ </operation>
1109
+
1110
+ <operation name="get_version">
1111
+ <documentation>
1112
+ Gets the version information for this interface.
1113
+
1114
+ </documentation>
1115
+ <soap:operation soapAction="urn:iControl:Networking/STPInstance"/>
1116
+ <input>
1117
+ <soap:body
1118
+ use="encoded"
1119
+ namespace="urn:iControl:Networking/STPInstance"
1120
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1121
+ </input>
1122
+ <output>
1123
+ <soap:body
1124
+ use="encoded"
1125
+ namespace="urn:iControl:Networking/STPInstance"
1126
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1127
+ </output>
1128
+ </operation>
1129
+ </binding>
1130
+
1131
+ <!-- service -->
1132
+
1133
+ <service name="Networking.STPInstance">
1134
+ <documentation>
1135
+ *IMPORTANT* This entire interface has been deprecated (as of
1136
+ 11.0.0), due to a change from using numeric identifiers to
1137
+ using names to identify STP instances. Please use the
1138
+ STPInstanceV2 interface.
1139
+
1140
+ The STPInstance interface enables you to work with the definitions and attributes associated with an STP instance.
1141
+
1142
+ </documentation>
1143
+ <port name="Networking.STPInstancePort" binding="tns:Networking.STPInstanceBinding">
1144
+ <soap:address location="https://url_to_service"/>
1145
+ </port>
1146
+ </service>
1147
+ </definitions>