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