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,2215 @@
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.VLAN"
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.LearningMode">
25
+ <xsd:restriction base="xsd:string">
26
+ <xsd:enumeration value="LEARNING_MODE_ENABLE_FORWARD">
27
+ <xsd:annotation>
28
+ <xsd:documentation>LEARNING_MODE_ENABLE_FORWARD</xsd:documentation>
29
+ </xsd:annotation>
30
+ </xsd:enumeration>
31
+ <xsd:enumeration value="LEARNING_MODE_DISABLE_FORWARD">
32
+ <xsd:annotation>
33
+ <xsd:documentation>LEARNING_MODE_DISABLE_FORWARD</xsd:documentation>
34
+ </xsd:annotation>
35
+ </xsd:enumeration>
36
+ <xsd:enumeration value="LEARNING_MODE_DISABLE_DROP">
37
+ <xsd:annotation>
38
+ <xsd:documentation>LEARNING_MODE_DISABLE_DROP</xsd:documentation>
39
+ </xsd:annotation>
40
+ </xsd:enumeration>
41
+ </xsd:restriction>
42
+ </xsd:simpleType>
43
+ <xsd:simpleType name="Networking.VLAN.VLANCMPHash">
44
+ <xsd:restriction base="xsd:string">
45
+ <xsd:enumeration value="CMP_HASH_UNKNOWN">
46
+ <xsd:annotation>
47
+ <xsd:documentation>CMP_HASH_UNKNOWN</xsd:documentation>
48
+ </xsd:annotation>
49
+ </xsd:enumeration>
50
+ <xsd:enumeration value="CMP_HASH_DEFAULT">
51
+ <xsd:annotation>
52
+ <xsd:documentation>CMP_HASH_DEFAULT</xsd:documentation>
53
+ </xsd:annotation>
54
+ </xsd:enumeration>
55
+ <xsd:enumeration value="CMP_HASH_DESTINATION_IP">
56
+ <xsd:annotation>
57
+ <xsd:documentation>CMP_HASH_DESTINATION_IP</xsd:documentation>
58
+ </xsd:annotation>
59
+ </xsd:enumeration>
60
+ <xsd:enumeration value="CMP_HASH_SOURCE_IP">
61
+ <xsd:annotation>
62
+ <xsd:documentation>CMP_HASH_SOURCE_IP</xsd:documentation>
63
+ </xsd:annotation>
64
+ </xsd:enumeration>
65
+ </xsd:restriction>
66
+ </xsd:simpleType>
67
+ <xsd:complexType name="Networking.VLAN.ForwardingTableSequence">
68
+ <xsd:complexContent>
69
+ <xsd:restriction base='SOAP-ENC:Array'>
70
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.VLAN.ForwardingTableEntry[]'/>
71
+ </xsd:restriction>
72
+ </xsd:complexContent>
73
+ </xsd:complexType>
74
+ <xsd:simpleType name="Common.EnabledState">
75
+ <xsd:restriction base="xsd:string">
76
+ <xsd:enumeration value="STATE_DISABLED">
77
+ <xsd:annotation>
78
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
79
+ </xsd:annotation>
80
+ </xsd:enumeration>
81
+ <xsd:enumeration value="STATE_ENABLED">
82
+ <xsd:annotation>
83
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
84
+ </xsd:annotation>
85
+ </xsd:enumeration>
86
+ </xsd:restriction>
87
+ </xsd:simpleType>
88
+ <xsd:complexType name="Networking.VLAN.ForwardingTableSequenceSequence">
89
+ <xsd:complexContent>
90
+ <xsd:restriction base='SOAP-ENC:Array'>
91
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.VLAN.ForwardingTableSequence[]'/>
92
+ </xsd:restriction>
93
+ </xsd:complexContent>
94
+ </xsd:complexType>
95
+ <xsd:simpleType name="Common.AutoLasthop">
96
+ <xsd:restriction base="xsd:string">
97
+ <xsd:enumeration value="AUTO_LASTHOP_UNKNOWN">
98
+ <xsd:annotation>
99
+ <xsd:documentation>AUTO_LASTHOP_UNKNOWN</xsd:documentation>
100
+ </xsd:annotation>
101
+ </xsd:enumeration>
102
+ <xsd:enumeration value="AUTO_LASTHOP_DEFAULT">
103
+ <xsd:annotation>
104
+ <xsd:documentation>AUTO_LASTHOP_DEFAULT</xsd:documentation>
105
+ </xsd:annotation>
106
+ </xsd:enumeration>
107
+ <xsd:enumeration value="AUTO_LASTHOP_ENABLED">
108
+ <xsd:annotation>
109
+ <xsd:documentation>AUTO_LASTHOP_ENABLED</xsd:documentation>
110
+ </xsd:annotation>
111
+ </xsd:enumeration>
112
+ <xsd:enumeration value="AUTO_LASTHOP_DISABLED">
113
+ <xsd:annotation>
114
+ <xsd:documentation>AUTO_LASTHOP_DISABLED</xsd:documentation>
115
+ </xsd:annotation>
116
+ </xsd:enumeration>
117
+ </xsd:restriction>
118
+ </xsd:simpleType>
119
+ <xsd:complexType name="Common.StringSequence">
120
+ <xsd:complexContent>
121
+ <xsd:restriction base='SOAP-ENC:Array'>
122
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
123
+ </xsd:restriction>
124
+ </xsd:complexContent>
125
+ </xsd:complexType>
126
+ <xsd:complexType name="Networking.VLAN.MemberSequenceSequence">
127
+ <xsd:complexContent>
128
+ <xsd:restriction base='SOAP-ENC:Array'>
129
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.VLAN.MemberSequence[]'/>
130
+ </xsd:restriction>
131
+ </xsd:complexContent>
132
+ </xsd:complexType>
133
+ <xsd:complexType name="Common.ULongSequence">
134
+ <xsd:complexContent>
135
+ <xsd:restriction base='SOAP-ENC:Array'>
136
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
137
+ </xsd:restriction>
138
+ </xsd:complexContent>
139
+ </xsd:complexType>
140
+ <xsd:complexType name="Common.SFlowGlobalTypeSequence">
141
+ <xsd:complexContent>
142
+ <xsd:restriction base='SOAP-ENC:Array'>
143
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.SFlowGlobalType[]'/>
144
+ </xsd:restriction>
145
+ </xsd:complexContent>
146
+ </xsd:complexType>
147
+ <xsd:complexType name="Networking.LearningModeSequence">
148
+ <xsd:complexContent>
149
+ <xsd:restriction base='SOAP-ENC:Array'>
150
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.LearningMode[]'/>
151
+ </xsd:restriction>
152
+ </xsd:complexContent>
153
+ </xsd:complexType>
154
+ <xsd:simpleType name="Networking.MemberTagType">
155
+ <xsd:restriction base="xsd:string">
156
+ <xsd:enumeration value="MEMBER_TAGGED">
157
+ <xsd:annotation>
158
+ <xsd:documentation>MEMBER_TAGGED</xsd:documentation>
159
+ </xsd:annotation>
160
+ </xsd:enumeration>
161
+ <xsd:enumeration value="MEMBER_UNTAGGED">
162
+ <xsd:annotation>
163
+ <xsd:documentation>MEMBER_UNTAGGED</xsd:documentation>
164
+ </xsd:annotation>
165
+ </xsd:enumeration>
166
+ </xsd:restriction>
167
+ </xsd:simpleType>
168
+ <xsd:simpleType name="Common.HAAction">
169
+ <xsd:restriction base="xsd:string">
170
+ <xsd:enumeration value="HA_ACTION_NONE">
171
+ <xsd:annotation>
172
+ <xsd:documentation>HA_ACTION_NONE</xsd:documentation>
173
+ </xsd:annotation>
174
+ </xsd:enumeration>
175
+ <xsd:enumeration value="HA_ACTION_REBOOT">
176
+ <xsd:annotation>
177
+ <xsd:documentation>HA_ACTION_REBOOT</xsd:documentation>
178
+ </xsd:annotation>
179
+ </xsd:enumeration>
180
+ <xsd:enumeration value="HA_ACTION_RESTART">
181
+ <xsd:annotation>
182
+ <xsd:documentation>HA_ACTION_RESTART</xsd:documentation>
183
+ </xsd:annotation>
184
+ </xsd:enumeration>
185
+ <xsd:enumeration value="HA_ACTION_FAILOVER">
186
+ <xsd:annotation>
187
+ <xsd:documentation>HA_ACTION_FAILOVER</xsd:documentation>
188
+ </xsd:annotation>
189
+ </xsd:enumeration>
190
+ <xsd:enumeration value="HA_ACTION_FAILOVER_RESTART">
191
+ <xsd:annotation>
192
+ <xsd:documentation>HA_ACTION_FAILOVER_RESTART</xsd:documentation>
193
+ </xsd:annotation>
194
+ </xsd:enumeration>
195
+ <xsd:enumeration value="HA_ACTION_GO_ACTIVE">
196
+ <xsd:annotation>
197
+ <xsd:documentation>HA_ACTION_GO_ACTIVE</xsd:documentation>
198
+ </xsd:annotation>
199
+ </xsd:enumeration>
200
+ <xsd:enumeration value="HA_ACTION_RESTART_ALL">
201
+ <xsd:annotation>
202
+ <xsd:documentation>HA_ACTION_RESTART_ALL</xsd:documentation>
203
+ </xsd:annotation>
204
+ </xsd:enumeration>
205
+ <xsd:enumeration value="HA_ACTION_FAILOVER_ABORT_TRAFFIC_MGT">
206
+ <xsd:annotation>
207
+ <xsd:documentation>HA_ACTION_FAILOVER_ABORT_TRAFFIC_MGT</xsd:documentation>
208
+ </xsd:annotation>
209
+ </xsd:enumeration>
210
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE">
211
+ <xsd:annotation>
212
+ <xsd:documentation>HA_ACTION_GO_OFFLINE</xsd:documentation>
213
+ </xsd:annotation>
214
+ </xsd:enumeration>
215
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE_RESTART">
216
+ <xsd:annotation>
217
+ <xsd:documentation>HA_ACTION_GO_OFFLINE_RESTART</xsd:documentation>
218
+ </xsd:annotation>
219
+ </xsd:enumeration>
220
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE_ABORT_TM">
221
+ <xsd:annotation>
222
+ <xsd:documentation>HA_ACTION_GO_OFFLINE_ABORT_TM</xsd:documentation>
223
+ </xsd:annotation>
224
+ </xsd:enumeration>
225
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE_DOWNLINKS">
226
+ <xsd:annotation>
227
+ <xsd:documentation>HA_ACTION_GO_OFFLINE_DOWNLINKS</xsd:documentation>
228
+ </xsd:annotation>
229
+ </xsd:enumeration>
230
+ <xsd:enumeration value="HA_ACTION_GO_OFFLINE_DOWNLINKS_RESTART">
231
+ <xsd:annotation>
232
+ <xsd:documentation>HA_ACTION_GO_OFFLINE_DOWNLINKS_RESTART</xsd:documentation>
233
+ </xsd:annotation>
234
+ </xsd:enumeration>
235
+ </xsd:restriction>
236
+ </xsd:simpleType>
237
+ <xsd:complexType name="Common.StringSequenceSequence">
238
+ <xsd:complexContent>
239
+ <xsd:restriction base='SOAP-ENC:Array'>
240
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
241
+ </xsd:restriction>
242
+ </xsd:complexContent>
243
+ </xsd:complexType>
244
+ <xsd:complexType name="Networking.VLAN.VLANCMPHashSequence">
245
+ <xsd:complexContent>
246
+ <xsd:restriction base='SOAP-ENC:Array'>
247
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.VLAN.VLANCMPHash[]'/>
248
+ </xsd:restriction>
249
+ </xsd:complexContent>
250
+ </xsd:complexType>
251
+ <xsd:complexType name="Common.AutoLasthopSequence">
252
+ <xsd:complexContent>
253
+ <xsd:restriction base='SOAP-ENC:Array'>
254
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.AutoLasthop[]'/>
255
+ </xsd:restriction>
256
+ </xsd:complexContent>
257
+ </xsd:complexType>
258
+ <xsd:complexType name="Networking.VLAN.MemberEntry">
259
+ <xsd:sequence>
260
+ <xsd:element name="member_name" type="xsd:string"/>
261
+ <xsd:element name="member_type" type="tns:Networking.MemberType"/>
262
+ <xsd:element name="tag_state" type="tns:Networking.MemberTagType"/>
263
+ </xsd:sequence>
264
+ </xsd:complexType>
265
+ <xsd:simpleType name="Networking.MemberType">
266
+ <xsd:restriction base="xsd:string">
267
+ <xsd:enumeration value="MEMBER_INTERFACE">
268
+ <xsd:annotation>
269
+ <xsd:documentation>MEMBER_INTERFACE</xsd:documentation>
270
+ </xsd:annotation>
271
+ </xsd:enumeration>
272
+ <xsd:enumeration value="MEMBER_TRUNK">
273
+ <xsd:annotation>
274
+ <xsd:documentation>MEMBER_TRUNK</xsd:documentation>
275
+ </xsd:annotation>
276
+ </xsd:enumeration>
277
+ </xsd:restriction>
278
+ </xsd:simpleType>
279
+ <xsd:complexType name="Common.HAActionSequence">
280
+ <xsd:complexContent>
281
+ <xsd:restriction base='SOAP-ENC:Array'>
282
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.HAAction[]'/>
283
+ </xsd:restriction>
284
+ </xsd:complexContent>
285
+ </xsd:complexType>
286
+ <xsd:complexType name="Networking.VLAN.MemberSequence">
287
+ <xsd:complexContent>
288
+ <xsd:restriction base='SOAP-ENC:Array'>
289
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.VLAN.MemberEntry[]'/>
290
+ </xsd:restriction>
291
+ </xsd:complexContent>
292
+ </xsd:complexType>
293
+ <xsd:complexType name="Networking.VLAN.ForwardingTableEntry">
294
+ <xsd:sequence>
295
+ <xsd:element name="mac_address" type="xsd:string"/>
296
+ <xsd:element name="interface_name" type="xsd:string"/>
297
+ <xsd:element name="interface_type" type="tns:Networking.MemberType"/>
298
+ </xsd:sequence>
299
+ </xsd:complexType>
300
+ <xsd:simpleType name="Common.SFlowGlobalType">
301
+ <xsd:restriction base="xsd:string">
302
+ <xsd:enumeration value="SFLOW_GLOBAL_UNKNOWN">
303
+ <xsd:annotation>
304
+ <xsd:documentation>SFLOW_GLOBAL_UNKNOWN</xsd:documentation>
305
+ </xsd:annotation>
306
+ </xsd:enumeration>
307
+ <xsd:enumeration value="SFLOW_GLOBAL_YES">
308
+ <xsd:annotation>
309
+ <xsd:documentation>SFLOW_GLOBAL_YES</xsd:documentation>
310
+ </xsd:annotation>
311
+ </xsd:enumeration>
312
+ <xsd:enumeration value="SFLOW_GLOBAL_NO">
313
+ <xsd:annotation>
314
+ <xsd:documentation>SFLOW_GLOBAL_NO</xsd:documentation>
315
+ </xsd:annotation>
316
+ </xsd:enumeration>
317
+ </xsd:restriction>
318
+ </xsd:simpleType>
319
+ <xsd:complexType name="Common.EnabledStateSequence">
320
+ <xsd:complexContent>
321
+ <xsd:restriction base='SOAP-ENC:Array'>
322
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
323
+ </xsd:restriction>
324
+ </xsd:complexContent>
325
+ </xsd:complexType>
326
+ </xsd:schema>
327
+ </types>
328
+
329
+ <!-- message -->
330
+
331
+ <message name="Networking.VLAN.get_listRequest">
332
+ </message>
333
+ <message name="Networking.VLAN.get_listResponse">
334
+ <part name="return" type="tns:Common.StringSequence"/>
335
+ </message>
336
+
337
+ <message name="Networking.VLAN.createRequest">
338
+ <part name="vlans" type="tns:Common.StringSequence"/>
339
+ <part name="vlan_ids" type="tns:Common.ULongSequence"/>
340
+ <part name="members" type="tns:Networking.VLAN.MemberSequenceSequence"/>
341
+ <part name="failsafe_states" type="tns:Common.EnabledStateSequence"/>
342
+ <part name="timeouts" type="tns:Common.ULongSequence"/>
343
+ <part name="mac_masquerade_addresses" type="tns:Common.StringSequence"/>
344
+ </message>
345
+ <message name="Networking.VLAN.createResponse">
346
+ </message>
347
+
348
+ <message name="Networking.VLAN.create_v2Request">
349
+ <part name="vlans" type="tns:Common.StringSequence"/>
350
+ <part name="vlan_ids" type="tns:Common.ULongSequence"/>
351
+ <part name="members" type="tns:Networking.VLAN.MemberSequenceSequence"/>
352
+ <part name="failsafe_states" type="tns:Common.EnabledStateSequence"/>
353
+ <part name="timeouts" type="tns:Common.ULongSequence"/>
354
+ </message>
355
+ <message name="Networking.VLAN.create_v2Response">
356
+ </message>
357
+
358
+ <message name="Networking.VLAN.delete_vlanRequest">
359
+ <part name="vlans" type="tns:Common.StringSequence"/>
360
+ </message>
361
+ <message name="Networking.VLAN.delete_vlanResponse">
362
+ </message>
363
+
364
+ <message name="Networking.VLAN.delete_all_vlansRequest">
365
+ </message>
366
+ <message name="Networking.VLAN.delete_all_vlansResponse">
367
+ </message>
368
+
369
+ <message name="Networking.VLAN.get_memberRequest">
370
+ <part name="vlans" type="tns:Common.StringSequence"/>
371
+ </message>
372
+ <message name="Networking.VLAN.get_memberResponse">
373
+ <part name="return" type="tns:Networking.VLAN.MemberSequenceSequence"/>
374
+ </message>
375
+
376
+ <message name="Networking.VLAN.add_memberRequest">
377
+ <part name="vlans" type="tns:Common.StringSequence"/>
378
+ <part name="members" type="tns:Networking.VLAN.MemberSequenceSequence"/>
379
+ </message>
380
+ <message name="Networking.VLAN.add_memberResponse">
381
+ </message>
382
+
383
+ <message name="Networking.VLAN.remove_memberRequest">
384
+ <part name="vlans" type="tns:Common.StringSequence"/>
385
+ <part name="members" type="tns:Networking.VLAN.MemberSequenceSequence"/>
386
+ </message>
387
+ <message name="Networking.VLAN.remove_memberResponse">
388
+ </message>
389
+
390
+ <message name="Networking.VLAN.remove_all_membersRequest">
391
+ <part name="vlans" type="tns:Common.StringSequence"/>
392
+ </message>
393
+ <message name="Networking.VLAN.remove_all_membersResponse">
394
+ </message>
395
+
396
+ <message name="Networking.VLAN.get_static_forwardingRequest">
397
+ <part name="vlans" type="tns:Common.StringSequence"/>
398
+ </message>
399
+ <message name="Networking.VLAN.get_static_forwardingResponse">
400
+ <part name="return" type="tns:Networking.VLAN.ForwardingTableSequenceSequence"/>
401
+ </message>
402
+
403
+ <message name="Networking.VLAN.add_static_forwardingRequest">
404
+ <part name="vlans" type="tns:Common.StringSequence"/>
405
+ <part name="forwarding_entries" type="tns:Networking.VLAN.ForwardingTableSequenceSequence"/>
406
+ </message>
407
+ <message name="Networking.VLAN.add_static_forwardingResponse">
408
+ </message>
409
+
410
+ <message name="Networking.VLAN.remove_static_forwardingRequest">
411
+ <part name="vlans" type="tns:Common.StringSequence"/>
412
+ <part name="forwarding_entries" type="tns:Networking.VLAN.ForwardingTableSequenceSequence"/>
413
+ </message>
414
+ <message name="Networking.VLAN.remove_static_forwardingResponse">
415
+ </message>
416
+
417
+ <message name="Networking.VLAN.remove_all_static_forwardingsRequest">
418
+ <part name="vlans" type="tns:Common.StringSequence"/>
419
+ </message>
420
+ <message name="Networking.VLAN.remove_all_static_forwardingsResponse">
421
+ </message>
422
+
423
+ <message name="Networking.VLAN.set_static_forwarding_descriptionRequest">
424
+ <part name="vlans" type="tns:Common.StringSequence"/>
425
+ <part name="mac_addresses" type="tns:Common.StringSequenceSequence"/>
426
+ <part name="descriptions" type="tns:Common.StringSequenceSequence"/>
427
+ </message>
428
+ <message name="Networking.VLAN.set_static_forwarding_descriptionResponse">
429
+ </message>
430
+
431
+ <message name="Networking.VLAN.get_static_forwarding_descriptionRequest">
432
+ <part name="vlans" type="tns:Common.StringSequence"/>
433
+ <part name="mac_addresses" type="tns:Common.StringSequenceSequence"/>
434
+ </message>
435
+ <message name="Networking.VLAN.get_static_forwarding_descriptionResponse">
436
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
437
+ </message>
438
+
439
+ <message name="Networking.VLAN.get_dynamic_forwardingRequest">
440
+ <part name="vlans" type="tns:Common.StringSequence"/>
441
+ </message>
442
+ <message name="Networking.VLAN.get_dynamic_forwardingResponse">
443
+ <part name="return" type="tns:Networking.VLAN.ForwardingTableSequenceSequence"/>
444
+ </message>
445
+
446
+ <message name="Networking.VLAN.remove_all_dynamic_forwardingsRequest">
447
+ <part name="vlans" type="tns:Common.StringSequence"/>
448
+ </message>
449
+ <message name="Networking.VLAN.remove_all_dynamic_forwardingsResponse">
450
+ </message>
451
+
452
+ <message name="Networking.VLAN.set_vlan_idRequest">
453
+ <part name="vlans" type="tns:Common.StringSequence"/>
454
+ <part name="vlan_ids" type="tns:Common.ULongSequence"/>
455
+ </message>
456
+ <message name="Networking.VLAN.set_vlan_idResponse">
457
+ </message>
458
+
459
+ <message name="Networking.VLAN.get_vlan_idRequest">
460
+ <part name="vlans" type="tns:Common.StringSequence"/>
461
+ </message>
462
+ <message name="Networking.VLAN.get_vlan_idResponse">
463
+ <part name="return" type="tns:Common.ULongSequence"/>
464
+ </message>
465
+
466
+ <message name="Networking.VLAN.get_source_check_stateRequest">
467
+ <part name="vlans" type="tns:Common.StringSequence"/>
468
+ </message>
469
+ <message name="Networking.VLAN.get_source_check_stateResponse">
470
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
471
+ </message>
472
+
473
+ <message name="Networking.VLAN.set_source_check_stateRequest">
474
+ <part name="vlans" type="tns:Common.StringSequence"/>
475
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
476
+ </message>
477
+ <message name="Networking.VLAN.set_source_check_stateResponse">
478
+ </message>
479
+
480
+ <message name="Networking.VLAN.get_failsafe_timeoutRequest">
481
+ <part name="vlans" type="tns:Common.StringSequence"/>
482
+ </message>
483
+ <message name="Networking.VLAN.get_failsafe_timeoutResponse">
484
+ <part name="return" type="tns:Common.ULongSequence"/>
485
+ </message>
486
+
487
+ <message name="Networking.VLAN.set_failsafe_timeoutRequest">
488
+ <part name="vlans" type="tns:Common.StringSequence"/>
489
+ <part name="timeouts" type="tns:Common.ULongSequence"/>
490
+ </message>
491
+ <message name="Networking.VLAN.set_failsafe_timeoutResponse">
492
+ </message>
493
+
494
+ <message name="Networking.VLAN.get_failsafe_stateRequest">
495
+ <part name="vlans" type="tns:Common.StringSequence"/>
496
+ </message>
497
+ <message name="Networking.VLAN.get_failsafe_stateResponse">
498
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
499
+ </message>
500
+
501
+ <message name="Networking.VLAN.set_failsafe_stateRequest">
502
+ <part name="vlans" type="tns:Common.StringSequence"/>
503
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
504
+ </message>
505
+ <message name="Networking.VLAN.set_failsafe_stateResponse">
506
+ </message>
507
+
508
+ <message name="Networking.VLAN.get_failsafe_actionRequest">
509
+ <part name="vlans" type="tns:Common.StringSequence"/>
510
+ </message>
511
+ <message name="Networking.VLAN.get_failsafe_actionResponse">
512
+ <part name="return" type="tns:Common.HAActionSequence"/>
513
+ </message>
514
+
515
+ <message name="Networking.VLAN.set_failsafe_actionRequest">
516
+ <part name="vlans" type="tns:Common.StringSequence"/>
517
+ <part name="actions" type="tns:Common.HAActionSequence"/>
518
+ </message>
519
+ <message name="Networking.VLAN.set_failsafe_actionResponse">
520
+ </message>
521
+
522
+ <message name="Networking.VLAN.set_cmp_hash_algorithmRequest">
523
+ <part name="vlans" type="tns:Common.StringSequence"/>
524
+ <part name="values" type="tns:Networking.VLAN.VLANCMPHashSequence"/>
525
+ </message>
526
+ <message name="Networking.VLAN.set_cmp_hash_algorithmResponse">
527
+ </message>
528
+
529
+ <message name="Networking.VLAN.get_cmp_hash_algorithmRequest">
530
+ <part name="vlans" type="tns:Common.StringSequence"/>
531
+ </message>
532
+ <message name="Networking.VLAN.get_cmp_hash_algorithmResponse">
533
+ <part name="return" type="tns:Networking.VLAN.VLANCMPHashSequence"/>
534
+ </message>
535
+
536
+ <message name="Networking.VLAN.get_mac_masquerade_addressRequest">
537
+ <part name="vlans" type="tns:Common.StringSequence"/>
538
+ </message>
539
+ <message name="Networking.VLAN.get_mac_masquerade_addressResponse">
540
+ <part name="return" type="tns:Common.StringSequence"/>
541
+ </message>
542
+
543
+ <message name="Networking.VLAN.set_mac_masquerade_addressRequest">
544
+ <part name="vlans" type="tns:Common.StringSequence"/>
545
+ <part name="mac_masquerade_addresses" type="tns:Common.StringSequence"/>
546
+ </message>
547
+ <message name="Networking.VLAN.set_mac_masquerade_addressResponse">
548
+ </message>
549
+
550
+ <message name="Networking.VLAN.get_true_mac_addressRequest">
551
+ <part name="vlans" type="tns:Common.StringSequence"/>
552
+ </message>
553
+ <message name="Networking.VLAN.get_true_mac_addressResponse">
554
+ <part name="return" type="tns:Common.StringSequence"/>
555
+ </message>
556
+
557
+ <message name="Networking.VLAN.get_mtuRequest">
558
+ <part name="vlans" type="tns:Common.StringSequence"/>
559
+ </message>
560
+ <message name="Networking.VLAN.get_mtuResponse">
561
+ <part name="return" type="tns:Common.ULongSequence"/>
562
+ </message>
563
+
564
+ <message name="Networking.VLAN.set_mtuRequest">
565
+ <part name="vlans" type="tns:Common.StringSequence"/>
566
+ <part name="mtus" type="tns:Common.ULongSequence"/>
567
+ </message>
568
+ <message name="Networking.VLAN.set_mtuResponse">
569
+ </message>
570
+
571
+ <message name="Networking.VLAN.get_learning_modeRequest">
572
+ <part name="vlans" type="tns:Common.StringSequence"/>
573
+ </message>
574
+ <message name="Networking.VLAN.get_learning_modeResponse">
575
+ <part name="return" type="tns:Networking.LearningModeSequence"/>
576
+ </message>
577
+
578
+ <message name="Networking.VLAN.set_learning_modeRequest">
579
+ <part name="vlans" type="tns:Common.StringSequence"/>
580
+ <part name="modes" type="tns:Networking.LearningModeSequence"/>
581
+ </message>
582
+ <message name="Networking.VLAN.set_learning_modeResponse">
583
+ </message>
584
+
585
+ <message name="Networking.VLAN.set_auto_lasthopRequest">
586
+ <part name="vlans" type="tns:Common.StringSequence"/>
587
+ <part name="values" type="tns:Common.AutoLasthopSequence"/>
588
+ </message>
589
+ <message name="Networking.VLAN.set_auto_lasthopResponse">
590
+ </message>
591
+
592
+ <message name="Networking.VLAN.get_auto_lasthopRequest">
593
+ <part name="vlans" type="tns:Common.StringSequence"/>
594
+ </message>
595
+ <message name="Networking.VLAN.get_auto_lasthopResponse">
596
+ <part name="return" type="tns:Common.AutoLasthopSequence"/>
597
+ </message>
598
+
599
+ <message name="Networking.VLAN.set_descriptionRequest">
600
+ <part name="vlans" type="tns:Common.StringSequence"/>
601
+ <part name="descriptions" type="tns:Common.StringSequence"/>
602
+ </message>
603
+ <message name="Networking.VLAN.set_descriptionResponse">
604
+ </message>
605
+
606
+ <message name="Networking.VLAN.get_descriptionRequest">
607
+ <part name="vlans" type="tns:Common.StringSequence"/>
608
+ </message>
609
+ <message name="Networking.VLAN.get_descriptionResponse">
610
+ <part name="return" type="tns:Common.StringSequence"/>
611
+ </message>
612
+
613
+ <message name="Networking.VLAN.set_sflow_poll_intervalRequest">
614
+ <part name="vlans" type="tns:Common.StringSequence"/>
615
+ <part name="intervals" type="tns:Common.ULongSequence"/>
616
+ </message>
617
+ <message name="Networking.VLAN.set_sflow_poll_intervalResponse">
618
+ </message>
619
+
620
+ <message name="Networking.VLAN.get_sflow_poll_intervalRequest">
621
+ <part name="vlans" type="tns:Common.StringSequence"/>
622
+ </message>
623
+ <message name="Networking.VLAN.get_sflow_poll_intervalResponse">
624
+ <part name="return" type="tns:Common.ULongSequence"/>
625
+ </message>
626
+
627
+ <message name="Networking.VLAN.set_sflow_poll_interval_globalRequest">
628
+ <part name="vlans" type="tns:Common.StringSequence"/>
629
+ <part name="types" type="tns:Common.SFlowGlobalTypeSequence"/>
630
+ </message>
631
+ <message name="Networking.VLAN.set_sflow_poll_interval_globalResponse">
632
+ </message>
633
+
634
+ <message name="Networking.VLAN.get_sflow_poll_interval_globalRequest">
635
+ <part name="vlans" type="tns:Common.StringSequence"/>
636
+ </message>
637
+ <message name="Networking.VLAN.get_sflow_poll_interval_globalResponse">
638
+ <part name="return" type="tns:Common.SFlowGlobalTypeSequence"/>
639
+ </message>
640
+
641
+ <message name="Networking.VLAN.set_sflow_sampling_rateRequest">
642
+ <part name="vlans" type="tns:Common.StringSequence"/>
643
+ <part name="rates" type="tns:Common.ULongSequence"/>
644
+ </message>
645
+ <message name="Networking.VLAN.set_sflow_sampling_rateResponse">
646
+ </message>
647
+
648
+ <message name="Networking.VLAN.get_sflow_sampling_rateRequest">
649
+ <part name="vlans" type="tns:Common.StringSequence"/>
650
+ </message>
651
+ <message name="Networking.VLAN.get_sflow_sampling_rateResponse">
652
+ <part name="return" type="tns:Common.ULongSequence"/>
653
+ </message>
654
+
655
+ <message name="Networking.VLAN.set_sflow_sampling_rate_globalRequest">
656
+ <part name="vlans" type="tns:Common.StringSequence"/>
657
+ <part name="types" type="tns:Common.SFlowGlobalTypeSequence"/>
658
+ </message>
659
+ <message name="Networking.VLAN.set_sflow_sampling_rate_globalResponse">
660
+ </message>
661
+
662
+ <message name="Networking.VLAN.get_sflow_sampling_rate_globalRequest">
663
+ <part name="vlans" type="tns:Common.StringSequence"/>
664
+ </message>
665
+ <message name="Networking.VLAN.get_sflow_sampling_rate_globalResponse">
666
+ <part name="return" type="tns:Common.SFlowGlobalTypeSequence"/>
667
+ </message>
668
+
669
+ <message name="Networking.VLAN.get_if_indexRequest">
670
+ <part name="vlans" type="tns:Common.StringSequence"/>
671
+ </message>
672
+ <message name="Networking.VLAN.get_if_indexResponse">
673
+ <part name="return" type="tns:Common.ULongSequence"/>
674
+ </message>
675
+
676
+ <message name="Networking.VLAN.get_versionRequest">
677
+ </message>
678
+ <message name="Networking.VLAN.get_versionResponse">
679
+ <part name="return" type="xsd:string"/>
680
+ </message>
681
+
682
+ <!-- portType -->
683
+
684
+ <portType name="Networking.VLANPortType">
685
+ <operation name="get_list">
686
+ <documentation>
687
+ Gets a list of all VLANs on this device.
688
+
689
+ </documentation>
690
+ <input message="tns:Networking.VLAN.get_listRequest"/>
691
+ <output message="tns:Networking.VLAN.get_listResponse"/>
692
+ </operation>
693
+ <operation name="create">
694
+ <documentation>
695
+ This function has been deprecated; please use create_v2().
696
+
697
+ Creates the specified VLANs with extended attributes. If mac masquerade
698
+ addresses are specified, they follow the same behavior as set_mac_masquerade_address()
699
+ on this interface.
700
+
701
+ </documentation>
702
+ <input message="tns:Networking.VLAN.createRequest"/>
703
+ <output message="tns:Networking.VLAN.createResponse"/>
704
+ </operation>
705
+ <operation name="create_v2">
706
+ <documentation>
707
+ Creates the specified VLANs with extended attributes.
708
+
709
+ </documentation>
710
+ <input message="tns:Networking.VLAN.create_v2Request"/>
711
+ <output message="tns:Networking.VLAN.create_v2Response"/>
712
+ </operation>
713
+ <operation name="delete_vlan">
714
+ <documentation>
715
+ Deletes the specified VLANs.
716
+
717
+ </documentation>
718
+ <input message="tns:Networking.VLAN.delete_vlanRequest"/>
719
+ <output message="tns:Networking.VLAN.delete_vlanResponse"/>
720
+ </operation>
721
+ <operation name="delete_all_vlans">
722
+ <documentation>
723
+ Deletes all VLANs.
724
+
725
+ </documentation>
726
+ <input message="tns:Networking.VLAN.delete_all_vlansRequest"/>
727
+ <output message="tns:Networking.VLAN.delete_all_vlansResponse"/>
728
+ </operation>
729
+ <operation name="get_member">
730
+ <documentation>
731
+ Gets the members of the specified VLANs.
732
+
733
+ </documentation>
734
+ <input message="tns:Networking.VLAN.get_memberRequest"/>
735
+ <output message="tns:Networking.VLAN.get_memberResponse"/>
736
+ </operation>
737
+ <operation name="add_member">
738
+ <documentation>
739
+ Adds the specified member interfaces/trunks to the specified VLANs.
740
+
741
+ </documentation>
742
+ <input message="tns:Networking.VLAN.add_memberRequest"/>
743
+ <output message="tns:Networking.VLAN.add_memberResponse"/>
744
+ </operation>
745
+ <operation name="remove_member">
746
+ <documentation>
747
+ Removes the specified member interfaces/trunks from the specified VLANs.
748
+
749
+ </documentation>
750
+ <input message="tns:Networking.VLAN.remove_memberRequest"/>
751
+ <output message="tns:Networking.VLAN.remove_memberResponse"/>
752
+ </operation>
753
+ <operation name="remove_all_members">
754
+ <documentation>
755
+ Removes all member interfaces/trunks from the specified VLANs.
756
+
757
+ </documentation>
758
+ <input message="tns:Networking.VLAN.remove_all_membersRequest"/>
759
+ <output message="tns:Networking.VLAN.remove_all_membersResponse"/>
760
+ </operation>
761
+ <operation name="get_static_forwarding">
762
+ <documentation>
763
+ Retrieves the static forwarding entries for the specified VLANs.
764
+
765
+ </documentation>
766
+ <input message="tns:Networking.VLAN.get_static_forwardingRequest"/>
767
+ <output message="tns:Networking.VLAN.get_static_forwardingResponse"/>
768
+ </operation>
769
+ <operation name="add_static_forwarding">
770
+ <documentation>
771
+ Adds the static forwarding entries for the specified VLANs.
772
+
773
+ </documentation>
774
+ <input message="tns:Networking.VLAN.add_static_forwardingRequest"/>
775
+ <output message="tns:Networking.VLAN.add_static_forwardingResponse"/>
776
+ </operation>
777
+ <operation name="remove_static_forwarding">
778
+ <documentation>
779
+ Removes the static forwarding entries from the specified VLANs.
780
+
781
+ </documentation>
782
+ <input message="tns:Networking.VLAN.remove_static_forwardingRequest"/>
783
+ <output message="tns:Networking.VLAN.remove_static_forwardingResponse"/>
784
+ </operation>
785
+ <operation name="remove_all_static_forwardings">
786
+ <documentation>
787
+ Removes all static forwarding entries from the specified VLANs.
788
+
789
+ </documentation>
790
+ <input message="tns:Networking.VLAN.remove_all_static_forwardingsRequest"/>
791
+ <output message="tns:Networking.VLAN.remove_all_static_forwardingsResponse"/>
792
+ </operation>
793
+ <operation name="set_static_forwarding_description">
794
+ <documentation>
795
+ Sets the description for a set of static forwarding entries.
796
+
797
+ This is an arbitrary field which can be used for any purpose.
798
+
799
+ </documentation>
800
+ <input message="tns:Networking.VLAN.set_static_forwarding_descriptionRequest"/>
801
+ <output message="tns:Networking.VLAN.set_static_forwarding_descriptionResponse"/>
802
+ </operation>
803
+ <operation name="get_static_forwarding_description">
804
+ <documentation>
805
+ Gets the descriptions for a set of static forwarding entries.
806
+
807
+ </documentation>
808
+ <input message="tns:Networking.VLAN.get_static_forwarding_descriptionRequest"/>
809
+ <output message="tns:Networking.VLAN.get_static_forwarding_descriptionResponse"/>
810
+ </operation>
811
+ <operation name="get_dynamic_forwarding">
812
+ <documentation>
813
+ Retrieves the dynamic forwarding entries for the specified VLANs.
814
+
815
+ </documentation>
816
+ <input message="tns:Networking.VLAN.get_dynamic_forwardingRequest"/>
817
+ <output message="tns:Networking.VLAN.get_dynamic_forwardingResponse"/>
818
+ </operation>
819
+ <operation name="remove_all_dynamic_forwardings">
820
+ <documentation>
821
+ Removes all dynamic forwarding entries from the specified VLANs.
822
+
823
+ </documentation>
824
+ <input message="tns:Networking.VLAN.remove_all_dynamic_forwardingsRequest"/>
825
+ <output message="tns:Networking.VLAN.remove_all_dynamic_forwardingsResponse"/>
826
+ </operation>
827
+ <operation name="set_vlan_id">
828
+ <documentation>
829
+ Sets the tag ids for the specified VLANs.
830
+
831
+ Note: In some releases (9.4.0+), this method is not supported;
832
+ delete and re-create the VLAN instead. In versions 10.0.0+,
833
+ this method is supported.
834
+
835
+ </documentation>
836
+ <input message="tns:Networking.VLAN.set_vlan_idRequest"/>
837
+ <output message="tns:Networking.VLAN.set_vlan_idResponse"/>
838
+ </operation>
839
+ <operation name="get_vlan_id">
840
+ <documentation>
841
+ Gets the ids for the specified VLANs.
842
+
843
+ </documentation>
844
+ <input message="tns:Networking.VLAN.get_vlan_idRequest"/>
845
+ <output message="tns:Networking.VLAN.get_vlan_idResponse"/>
846
+ </operation>
847
+ <operation name="get_source_check_state">
848
+ <documentation>
849
+ Gets the source checking states for the specified VLANs. If enabled and auto lasthop is disabled,
850
+ check that the source of the first packet of a connection is correct (correct VLAN, router, node).
851
+ This is equivalent to BSD's net.inet.sourcecheck sysctl variable.
852
+
853
+ </documentation>
854
+ <input message="tns:Networking.VLAN.get_source_check_stateRequest"/>
855
+ <output message="tns:Networking.VLAN.get_source_check_stateResponse"/>
856
+ </operation>
857
+ <operation name="set_source_check_state">
858
+ <documentation>
859
+ Sets the the source checking states for the specified VLANs. If enabled and auto lasthop is disabled,
860
+ check that the source of the first packet of a connection is correct (correct VLAN, router, node).
861
+ This is equivalent to BSD's net.inet.sourcecheck sysctl variable.
862
+
863
+ </documentation>
864
+ <input message="tns:Networking.VLAN.set_source_check_stateRequest"/>
865
+ <output message="tns:Networking.VLAN.set_source_check_stateResponse"/>
866
+ </operation>
867
+ <operation name="get_failsafe_timeout">
868
+ <documentation>
869
+ Gets the failsafe timeouts for the specified VLANs.
870
+
871
+ </documentation>
872
+ <input message="tns:Networking.VLAN.get_failsafe_timeoutRequest"/>
873
+ <output message="tns:Networking.VLAN.get_failsafe_timeoutResponse"/>
874
+ </operation>
875
+ <operation name="set_failsafe_timeout">
876
+ <documentation>
877
+ Sets the failsafe timeouts for the specified VLANs.
878
+
879
+ </documentation>
880
+ <input message="tns:Networking.VLAN.set_failsafe_timeoutRequest"/>
881
+ <output message="tns:Networking.VLAN.set_failsafe_timeoutResponse"/>
882
+ </operation>
883
+ <operation name="get_failsafe_state">
884
+ <documentation>
885
+ Gets the failsafe states for the specified VLANs.
886
+
887
+ </documentation>
888
+ <input message="tns:Networking.VLAN.get_failsafe_stateRequest"/>
889
+ <output message="tns:Networking.VLAN.get_failsafe_stateResponse"/>
890
+ </operation>
891
+ <operation name="set_failsafe_state">
892
+ <documentation>
893
+ Sets the failsafe states for the specified VLANs.
894
+
895
+ </documentation>
896
+ <input message="tns:Networking.VLAN.set_failsafe_stateRequest"/>
897
+ <output message="tns:Networking.VLAN.set_failsafe_stateResponse"/>
898
+ </operation>
899
+ <operation name="get_failsafe_action">
900
+ <documentation>
901
+ Gets the failsafe actions for the specified VLANs.
902
+
903
+ </documentation>
904
+ <input message="tns:Networking.VLAN.get_failsafe_actionRequest"/>
905
+ <output message="tns:Networking.VLAN.get_failsafe_actionResponse"/>
906
+ </operation>
907
+ <operation name="set_failsafe_action">
908
+ <documentation>
909
+ Sets the failsafe actions for the specified VLANs.
910
+
911
+ </documentation>
912
+ <input message="tns:Networking.VLAN.set_failsafe_actionRequest"/>
913
+ <output message="tns:Networking.VLAN.set_failsafe_actionResponse"/>
914
+ </operation>
915
+ <operation name="set_cmp_hash_algorithm">
916
+ <documentation>
917
+ Sets the CMP hash algorithm for the specified VLANs.
918
+
919
+ The CMP hash algorithm decides the traffic dissagregation criteria
920
+ for a vlan. This allows all connections from a client to land on
921
+ the same set of TMMs. It improves tmm performance by localizing
922
+ the sessionDB lookup.
923
+
924
+ </documentation>
925
+ <input message="tns:Networking.VLAN.set_cmp_hash_algorithmRequest"/>
926
+ <output message="tns:Networking.VLAN.set_cmp_hash_algorithmResponse"/>
927
+ </operation>
928
+ <operation name="get_cmp_hash_algorithm">
929
+ <documentation>
930
+ Gets the CMP hash algorithms for the specified VLANs.
931
+
932
+ </documentation>
933
+ <input message="tns:Networking.VLAN.get_cmp_hash_algorithmRequest"/>
934
+ <output message="tns:Networking.VLAN.get_cmp_hash_algorithmResponse"/>
935
+ </operation>
936
+ <operation name="get_mac_masquerade_address">
937
+ <documentation>
938
+ This function is deprecated. MAC masquerade addresses are now configured
939
+ on traffic groups.
940
+
941
+ </documentation>
942
+ <input message="tns:Networking.VLAN.get_mac_masquerade_addressRequest"/>
943
+ <output message="tns:Networking.VLAN.get_mac_masquerade_addressResponse"/>
944
+ </operation>
945
+ <operation name="set_mac_masquerade_address">
946
+ <documentation>
947
+ This function is deprecated. MAC masquerade address are now configured
948
+ on traffic groups.
949
+
950
+ If there is only one floating traffic group in the system, this function will
951
+ set the traffic group's MAC masquerade address to the last address in
952
+ mac_masquerade_addresses and discard all other MAC addresses provided. If
953
+ there is more than one floating traffic group, a Common::OperationFailed exception
954
+ is raised.
955
+
956
+ </documentation>
957
+ <input message="tns:Networking.VLAN.set_mac_masquerade_addressRequest"/>
958
+ <output message="tns:Networking.VLAN.set_mac_masquerade_addressResponse"/>
959
+ </operation>
960
+ <operation name="get_true_mac_address">
961
+ <documentation>
962
+ Gets the true MAC addresses used by the specified VLANs.
963
+
964
+ </documentation>
965
+ <input message="tns:Networking.VLAN.get_true_mac_addressRequest"/>
966
+ <output message="tns:Networking.VLAN.get_true_mac_addressResponse"/>
967
+ </operation>
968
+ <operation name="get_mtu">
969
+ <documentation>
970
+ Gets the MTUs for the specified VLANs.
971
+
972
+ </documentation>
973
+ <input message="tns:Networking.VLAN.get_mtuRequest"/>
974
+ <output message="tns:Networking.VLAN.get_mtuResponse"/>
975
+ </operation>
976
+ <operation name="set_mtu">
977
+ <documentation>
978
+ Sets the MTUs for the specified VLANs.
979
+
980
+ </documentation>
981
+ <input message="tns:Networking.VLAN.set_mtuRequest"/>
982
+ <output message="tns:Networking.VLAN.set_mtuResponse"/>
983
+ </operation>
984
+ <operation name="get_learning_mode">
985
+ <documentation>
986
+ Gets the configured learning modes of the specified VLANs.
987
+
988
+ </documentation>
989
+ <input message="tns:Networking.VLAN.get_learning_modeRequest"/>
990
+ <output message="tns:Networking.VLAN.get_learning_modeResponse"/>
991
+ </operation>
992
+ <operation name="set_learning_mode">
993
+ <documentation>
994
+ Sets the learning modes for the specified VLANs.
995
+
996
+ </documentation>
997
+ <input message="tns:Networking.VLAN.set_learning_modeRequest"/>
998
+ <output message="tns:Networking.VLAN.set_learning_modeResponse"/>
999
+ </operation>
1000
+ <operation name="set_auto_lasthop">
1001
+ <documentation>
1002
+ Sets the attribute that specifies auto-lasthop behavior,
1003
+ for the specified VLANS.
1004
+ This controls how the system routes return traffic.
1005
+ The default is AUTO_LASTHOP_DEFAULT.
1006
+
1007
+ </documentation>
1008
+ <input message="tns:Networking.VLAN.set_auto_lasthopRequest"/>
1009
+ <output message="tns:Networking.VLAN.set_auto_lasthopResponse"/>
1010
+ </operation>
1011
+ <operation name="get_auto_lasthop">
1012
+ <documentation>
1013
+ Gets the attribute that specifies auto-lasthop behavior,
1014
+ for the specified VLANS.
1015
+
1016
+ </documentation>
1017
+ <input message="tns:Networking.VLAN.get_auto_lasthopRequest"/>
1018
+ <output message="tns:Networking.VLAN.get_auto_lasthopResponse"/>
1019
+ </operation>
1020
+ <operation name="set_description">
1021
+ <documentation>
1022
+ Sets the description for a set of VLANs.
1023
+
1024
+ This is an arbitrary field which can be used for any purpose.
1025
+
1026
+ </documentation>
1027
+ <input message="tns:Networking.VLAN.set_descriptionRequest"/>
1028
+ <output message="tns:Networking.VLAN.set_descriptionResponse"/>
1029
+ </operation>
1030
+ <operation name="get_description">
1031
+ <documentation>
1032
+ Gets the descriptions for a set of VLANs.
1033
+
1034
+ </documentation>
1035
+ <input message="tns:Networking.VLAN.get_descriptionRequest"/>
1036
+ <output message="tns:Networking.VLAN.get_descriptionResponse"/>
1037
+ </operation>
1038
+ <operation name="set_sflow_poll_interval">
1039
+ <documentation>
1040
+ Sets the sFlow poll intervals for the specified VLANs. This is
1041
+ the maximum interval in seconds between polling of the specified
1042
+ VLANs. You should set the poll intervals for the VLANs when you
1043
+ want the counters associated with these VLANs to be sampled at an
1044
+ interval that is different than the global sFlow poll interval.
1045
+ Note: you will also need to set the polling type to SFLOW_GLOBAL_NO
1046
+ (see set_sflow_poll_interval_global). The default is 0 (zero).
1047
+
1048
+ </documentation>
1049
+ <input message="tns:Networking.VLAN.set_sflow_poll_intervalRequest"/>
1050
+ <output message="tns:Networking.VLAN.set_sflow_poll_intervalResponse"/>
1051
+ </operation>
1052
+ <operation name="get_sflow_poll_interval">
1053
+ <documentation>
1054
+ Gets the sFlow poll intervals for the specified VLANs.
1055
+
1056
+ </documentation>
1057
+ <input message="tns:Networking.VLAN.get_sflow_poll_intervalRequest"/>
1058
+ <output message="tns:Networking.VLAN.get_sflow_poll_intervalResponse"/>
1059
+ </operation>
1060
+ <operation name="set_sflow_poll_interval_global">
1061
+ <documentation>
1062
+ Sets the sFlow polling types for the specified VLANs. It
1063
+ allows you to specify whether the global sFlow poll interval
1064
+ overrides the object-level poll interval for the specified
1065
+ VLANs. The default is SFLOW_GLOBAL_YES.
1066
+
1067
+ </documentation>
1068
+ <input message="tns:Networking.VLAN.set_sflow_poll_interval_globalRequest"/>
1069
+ <output message="tns:Networking.VLAN.set_sflow_poll_interval_globalResponse"/>
1070
+ </operation>
1071
+ <operation name="get_sflow_poll_interval_global">
1072
+ <documentation>
1073
+ Gets the sFlow polling types for the specified VLANs.
1074
+
1075
+ </documentation>
1076
+ <input message="tns:Networking.VLAN.get_sflow_poll_interval_globalRequest"/>
1077
+ <output message="tns:Networking.VLAN.get_sflow_poll_interval_globalResponse"/>
1078
+ </operation>
1079
+ <operation name="set_sflow_sampling_rate">
1080
+ <documentation>
1081
+ Sets the sFlow sampling rates for the specified VLANs. This is
1082
+ the ratio of packets observed at the specified VLANs to the number
1083
+ of samples you want the the BIG-IP system to generate. For example,
1084
+ a sampling rate of 2000 specifies that 1 sample will be randomly
1085
+ generated for every 2000 packets observed. You should set the
1086
+ sampling rates for the VLANs when you want the traffic flowing
1087
+ through these VLANs to be sampled at a rate that is different than
1088
+ the global sFlow sampling rate. Note: you will also need to set the
1089
+ sampling type to SFLOW_GLOBAL_NO (see set_sflow_sampling_rate_global).
1090
+ The default is 0 (zero).
1091
+
1092
+ </documentation>
1093
+ <input message="tns:Networking.VLAN.set_sflow_sampling_rateRequest"/>
1094
+ <output message="tns:Networking.VLAN.set_sflow_sampling_rateResponse"/>
1095
+ </operation>
1096
+ <operation name="get_sflow_sampling_rate">
1097
+ <documentation>
1098
+ Gets the sFlow sampling rates for the specified VLANs.
1099
+
1100
+ </documentation>
1101
+ <input message="tns:Networking.VLAN.get_sflow_sampling_rateRequest"/>
1102
+ <output message="tns:Networking.VLAN.get_sflow_sampling_rateResponse"/>
1103
+ </operation>
1104
+ <operation name="set_sflow_sampling_rate_global">
1105
+ <documentation>
1106
+ Sets the sFlow sampling types for the specified VLANs. It
1107
+ allows you to specify whether the global sFlow sampling rate
1108
+ overrides the object-level sampling rate for the specified
1109
+ VLANs. The default is SFLOW_GLOBAL_YES.
1110
+
1111
+ </documentation>
1112
+ <input message="tns:Networking.VLAN.set_sflow_sampling_rate_globalRequest"/>
1113
+ <output message="tns:Networking.VLAN.set_sflow_sampling_rate_globalResponse"/>
1114
+ </operation>
1115
+ <operation name="get_sflow_sampling_rate_global">
1116
+ <documentation>
1117
+ Gets the sFlow sampling types for the specified VLANs.
1118
+
1119
+ </documentation>
1120
+ <input message="tns:Networking.VLAN.get_sflow_sampling_rate_globalRequest"/>
1121
+ <output message="tns:Networking.VLAN.get_sflow_sampling_rate_globalResponse"/>
1122
+ </operation>
1123
+ <operation name="get_if_index">
1124
+ <documentation>
1125
+ Gets the IF indices for the specified VLANs. This is a
1126
+ unique identifier assigned to all objects displayed in
1127
+ the SNMP IF-MIB.
1128
+
1129
+ </documentation>
1130
+ <input message="tns:Networking.VLAN.get_if_indexRequest"/>
1131
+ <output message="tns:Networking.VLAN.get_if_indexResponse"/>
1132
+ </operation>
1133
+ <operation name="get_version">
1134
+ <documentation>
1135
+ Gets the version information for this interface.
1136
+
1137
+ </documentation>
1138
+ <input message="tns:Networking.VLAN.get_versionRequest"/>
1139
+ <output message="tns:Networking.VLAN.get_versionResponse"/>
1140
+ </operation>
1141
+ </portType>
1142
+
1143
+ <!-- binding -->
1144
+
1145
+ <binding name="Networking.VLANBinding" type="tns:Networking.VLANPortType">
1146
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
1147
+ <operation name="get_list">
1148
+ <documentation>
1149
+ Gets a list of all VLANs on this device.
1150
+
1151
+ </documentation>
1152
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1153
+ <input>
1154
+ <soap:body
1155
+ use="encoded"
1156
+ namespace="urn:iControl:Networking/VLAN"
1157
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1158
+ </input>
1159
+ <output>
1160
+ <soap:body
1161
+ use="encoded"
1162
+ namespace="urn:iControl:Networking/VLAN"
1163
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1164
+ </output>
1165
+ </operation>
1166
+
1167
+ <operation name="create">
1168
+ <documentation>
1169
+ This function has been deprecated; please use create_v2().
1170
+
1171
+ Creates the specified VLANs with extended attributes. If mac masquerade
1172
+ addresses are specified, they follow the same behavior as set_mac_masquerade_address()
1173
+ on this interface.
1174
+
1175
+ </documentation>
1176
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1177
+ <input>
1178
+ <soap:body
1179
+ use="encoded"
1180
+ namespace="urn:iControl:Networking/VLAN"
1181
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1182
+ </input>
1183
+ <output>
1184
+ <soap:body
1185
+ use="encoded"
1186
+ namespace="urn:iControl:Networking/VLAN"
1187
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1188
+ </output>
1189
+ </operation>
1190
+
1191
+ <operation name="create_v2">
1192
+ <documentation>
1193
+ Creates the specified VLANs with extended attributes.
1194
+
1195
+ </documentation>
1196
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1197
+ <input>
1198
+ <soap:body
1199
+ use="encoded"
1200
+ namespace="urn:iControl:Networking/VLAN"
1201
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1202
+ </input>
1203
+ <output>
1204
+ <soap:body
1205
+ use="encoded"
1206
+ namespace="urn:iControl:Networking/VLAN"
1207
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1208
+ </output>
1209
+ </operation>
1210
+
1211
+ <operation name="delete_vlan">
1212
+ <documentation>
1213
+ Deletes the specified VLANs.
1214
+
1215
+ </documentation>
1216
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1217
+ <input>
1218
+ <soap:body
1219
+ use="encoded"
1220
+ namespace="urn:iControl:Networking/VLAN"
1221
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1222
+ </input>
1223
+ <output>
1224
+ <soap:body
1225
+ use="encoded"
1226
+ namespace="urn:iControl:Networking/VLAN"
1227
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1228
+ </output>
1229
+ </operation>
1230
+
1231
+ <operation name="delete_all_vlans">
1232
+ <documentation>
1233
+ Deletes all VLANs.
1234
+
1235
+ </documentation>
1236
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1237
+ <input>
1238
+ <soap:body
1239
+ use="encoded"
1240
+ namespace="urn:iControl:Networking/VLAN"
1241
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1242
+ </input>
1243
+ <output>
1244
+ <soap:body
1245
+ use="encoded"
1246
+ namespace="urn:iControl:Networking/VLAN"
1247
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1248
+ </output>
1249
+ </operation>
1250
+
1251
+ <operation name="get_member">
1252
+ <documentation>
1253
+ Gets the members of the specified VLANs.
1254
+
1255
+ </documentation>
1256
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1257
+ <input>
1258
+ <soap:body
1259
+ use="encoded"
1260
+ namespace="urn:iControl:Networking/VLAN"
1261
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1262
+ </input>
1263
+ <output>
1264
+ <soap:body
1265
+ use="encoded"
1266
+ namespace="urn:iControl:Networking/VLAN"
1267
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1268
+ </output>
1269
+ </operation>
1270
+
1271
+ <operation name="add_member">
1272
+ <documentation>
1273
+ Adds the specified member interfaces/trunks to the specified VLANs.
1274
+
1275
+ </documentation>
1276
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1277
+ <input>
1278
+ <soap:body
1279
+ use="encoded"
1280
+ namespace="urn:iControl:Networking/VLAN"
1281
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1282
+ </input>
1283
+ <output>
1284
+ <soap:body
1285
+ use="encoded"
1286
+ namespace="urn:iControl:Networking/VLAN"
1287
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1288
+ </output>
1289
+ </operation>
1290
+
1291
+ <operation name="remove_member">
1292
+ <documentation>
1293
+ Removes the specified member interfaces/trunks from the specified VLANs.
1294
+
1295
+ </documentation>
1296
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1297
+ <input>
1298
+ <soap:body
1299
+ use="encoded"
1300
+ namespace="urn:iControl:Networking/VLAN"
1301
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1302
+ </input>
1303
+ <output>
1304
+ <soap:body
1305
+ use="encoded"
1306
+ namespace="urn:iControl:Networking/VLAN"
1307
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1308
+ </output>
1309
+ </operation>
1310
+
1311
+ <operation name="remove_all_members">
1312
+ <documentation>
1313
+ Removes all member interfaces/trunks from the specified VLANs.
1314
+
1315
+ </documentation>
1316
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1317
+ <input>
1318
+ <soap:body
1319
+ use="encoded"
1320
+ namespace="urn:iControl:Networking/VLAN"
1321
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1322
+ </input>
1323
+ <output>
1324
+ <soap:body
1325
+ use="encoded"
1326
+ namespace="urn:iControl:Networking/VLAN"
1327
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1328
+ </output>
1329
+ </operation>
1330
+
1331
+ <operation name="get_static_forwarding">
1332
+ <documentation>
1333
+ Retrieves the static forwarding entries for the specified VLANs.
1334
+
1335
+ </documentation>
1336
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1337
+ <input>
1338
+ <soap:body
1339
+ use="encoded"
1340
+ namespace="urn:iControl:Networking/VLAN"
1341
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1342
+ </input>
1343
+ <output>
1344
+ <soap:body
1345
+ use="encoded"
1346
+ namespace="urn:iControl:Networking/VLAN"
1347
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1348
+ </output>
1349
+ </operation>
1350
+
1351
+ <operation name="add_static_forwarding">
1352
+ <documentation>
1353
+ Adds the static forwarding entries for the specified VLANs.
1354
+
1355
+ </documentation>
1356
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1357
+ <input>
1358
+ <soap:body
1359
+ use="encoded"
1360
+ namespace="urn:iControl:Networking/VLAN"
1361
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1362
+ </input>
1363
+ <output>
1364
+ <soap:body
1365
+ use="encoded"
1366
+ namespace="urn:iControl:Networking/VLAN"
1367
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1368
+ </output>
1369
+ </operation>
1370
+
1371
+ <operation name="remove_static_forwarding">
1372
+ <documentation>
1373
+ Removes the static forwarding entries from the specified VLANs.
1374
+
1375
+ </documentation>
1376
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1377
+ <input>
1378
+ <soap:body
1379
+ use="encoded"
1380
+ namespace="urn:iControl:Networking/VLAN"
1381
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1382
+ </input>
1383
+ <output>
1384
+ <soap:body
1385
+ use="encoded"
1386
+ namespace="urn:iControl:Networking/VLAN"
1387
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1388
+ </output>
1389
+ </operation>
1390
+
1391
+ <operation name="remove_all_static_forwardings">
1392
+ <documentation>
1393
+ Removes all static forwarding entries from the specified VLANs.
1394
+
1395
+ </documentation>
1396
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1397
+ <input>
1398
+ <soap:body
1399
+ use="encoded"
1400
+ namespace="urn:iControl:Networking/VLAN"
1401
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1402
+ </input>
1403
+ <output>
1404
+ <soap:body
1405
+ use="encoded"
1406
+ namespace="urn:iControl:Networking/VLAN"
1407
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1408
+ </output>
1409
+ </operation>
1410
+
1411
+ <operation name="set_static_forwarding_description">
1412
+ <documentation>
1413
+ Sets the description for a set of static forwarding entries.
1414
+
1415
+ This is an arbitrary field which can be used for any purpose.
1416
+
1417
+ </documentation>
1418
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1419
+ <input>
1420
+ <soap:body
1421
+ use="encoded"
1422
+ namespace="urn:iControl:Networking/VLAN"
1423
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1424
+ </input>
1425
+ <output>
1426
+ <soap:body
1427
+ use="encoded"
1428
+ namespace="urn:iControl:Networking/VLAN"
1429
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1430
+ </output>
1431
+ </operation>
1432
+
1433
+ <operation name="get_static_forwarding_description">
1434
+ <documentation>
1435
+ Gets the descriptions for a set of static forwarding entries.
1436
+
1437
+ </documentation>
1438
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1439
+ <input>
1440
+ <soap:body
1441
+ use="encoded"
1442
+ namespace="urn:iControl:Networking/VLAN"
1443
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1444
+ </input>
1445
+ <output>
1446
+ <soap:body
1447
+ use="encoded"
1448
+ namespace="urn:iControl:Networking/VLAN"
1449
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1450
+ </output>
1451
+ </operation>
1452
+
1453
+ <operation name="get_dynamic_forwarding">
1454
+ <documentation>
1455
+ Retrieves the dynamic forwarding entries for the specified VLANs.
1456
+
1457
+ </documentation>
1458
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1459
+ <input>
1460
+ <soap:body
1461
+ use="encoded"
1462
+ namespace="urn:iControl:Networking/VLAN"
1463
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1464
+ </input>
1465
+ <output>
1466
+ <soap:body
1467
+ use="encoded"
1468
+ namespace="urn:iControl:Networking/VLAN"
1469
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1470
+ </output>
1471
+ </operation>
1472
+
1473
+ <operation name="remove_all_dynamic_forwardings">
1474
+ <documentation>
1475
+ Removes all dynamic forwarding entries from the specified VLANs.
1476
+
1477
+ </documentation>
1478
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1479
+ <input>
1480
+ <soap:body
1481
+ use="encoded"
1482
+ namespace="urn:iControl:Networking/VLAN"
1483
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1484
+ </input>
1485
+ <output>
1486
+ <soap:body
1487
+ use="encoded"
1488
+ namespace="urn:iControl:Networking/VLAN"
1489
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1490
+ </output>
1491
+ </operation>
1492
+
1493
+ <operation name="set_vlan_id">
1494
+ <documentation>
1495
+ Sets the tag ids for the specified VLANs.
1496
+
1497
+ Note: In some releases (9.4.0+), this method is not supported;
1498
+ delete and re-create the VLAN instead. In versions 10.0.0+,
1499
+ this method is supported.
1500
+
1501
+ </documentation>
1502
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1503
+ <input>
1504
+ <soap:body
1505
+ use="encoded"
1506
+ namespace="urn:iControl:Networking/VLAN"
1507
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1508
+ </input>
1509
+ <output>
1510
+ <soap:body
1511
+ use="encoded"
1512
+ namespace="urn:iControl:Networking/VLAN"
1513
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1514
+ </output>
1515
+ </operation>
1516
+
1517
+ <operation name="get_vlan_id">
1518
+ <documentation>
1519
+ Gets the ids for the specified VLANs.
1520
+
1521
+ </documentation>
1522
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1523
+ <input>
1524
+ <soap:body
1525
+ use="encoded"
1526
+ namespace="urn:iControl:Networking/VLAN"
1527
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1528
+ </input>
1529
+ <output>
1530
+ <soap:body
1531
+ use="encoded"
1532
+ namespace="urn:iControl:Networking/VLAN"
1533
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1534
+ </output>
1535
+ </operation>
1536
+
1537
+ <operation name="get_source_check_state">
1538
+ <documentation>
1539
+ Gets the source checking states for the specified VLANs. If enabled and auto lasthop is disabled,
1540
+ check that the source of the first packet of a connection is correct (correct VLAN, router, node).
1541
+ This is equivalent to BSD's net.inet.sourcecheck sysctl variable.
1542
+
1543
+ </documentation>
1544
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1545
+ <input>
1546
+ <soap:body
1547
+ use="encoded"
1548
+ namespace="urn:iControl:Networking/VLAN"
1549
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1550
+ </input>
1551
+ <output>
1552
+ <soap:body
1553
+ use="encoded"
1554
+ namespace="urn:iControl:Networking/VLAN"
1555
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1556
+ </output>
1557
+ </operation>
1558
+
1559
+ <operation name="set_source_check_state">
1560
+ <documentation>
1561
+ Sets the the source checking states for the specified VLANs. If enabled and auto lasthop is disabled,
1562
+ check that the source of the first packet of a connection is correct (correct VLAN, router, node).
1563
+ This is equivalent to BSD's net.inet.sourcecheck sysctl variable.
1564
+
1565
+ </documentation>
1566
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1567
+ <input>
1568
+ <soap:body
1569
+ use="encoded"
1570
+ namespace="urn:iControl:Networking/VLAN"
1571
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1572
+ </input>
1573
+ <output>
1574
+ <soap:body
1575
+ use="encoded"
1576
+ namespace="urn:iControl:Networking/VLAN"
1577
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1578
+ </output>
1579
+ </operation>
1580
+
1581
+ <operation name="get_failsafe_timeout">
1582
+ <documentation>
1583
+ Gets the failsafe timeouts for the specified VLANs.
1584
+
1585
+ </documentation>
1586
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1587
+ <input>
1588
+ <soap:body
1589
+ use="encoded"
1590
+ namespace="urn:iControl:Networking/VLAN"
1591
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1592
+ </input>
1593
+ <output>
1594
+ <soap:body
1595
+ use="encoded"
1596
+ namespace="urn:iControl:Networking/VLAN"
1597
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1598
+ </output>
1599
+ </operation>
1600
+
1601
+ <operation name="set_failsafe_timeout">
1602
+ <documentation>
1603
+ Sets the failsafe timeouts for the specified VLANs.
1604
+
1605
+ </documentation>
1606
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1607
+ <input>
1608
+ <soap:body
1609
+ use="encoded"
1610
+ namespace="urn:iControl:Networking/VLAN"
1611
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1612
+ </input>
1613
+ <output>
1614
+ <soap:body
1615
+ use="encoded"
1616
+ namespace="urn:iControl:Networking/VLAN"
1617
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1618
+ </output>
1619
+ </operation>
1620
+
1621
+ <operation name="get_failsafe_state">
1622
+ <documentation>
1623
+ Gets the failsafe states for the specified VLANs.
1624
+
1625
+ </documentation>
1626
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1627
+ <input>
1628
+ <soap:body
1629
+ use="encoded"
1630
+ namespace="urn:iControl:Networking/VLAN"
1631
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1632
+ </input>
1633
+ <output>
1634
+ <soap:body
1635
+ use="encoded"
1636
+ namespace="urn:iControl:Networking/VLAN"
1637
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1638
+ </output>
1639
+ </operation>
1640
+
1641
+ <operation name="set_failsafe_state">
1642
+ <documentation>
1643
+ Sets the failsafe states for the specified VLANs.
1644
+
1645
+ </documentation>
1646
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1647
+ <input>
1648
+ <soap:body
1649
+ use="encoded"
1650
+ namespace="urn:iControl:Networking/VLAN"
1651
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1652
+ </input>
1653
+ <output>
1654
+ <soap:body
1655
+ use="encoded"
1656
+ namespace="urn:iControl:Networking/VLAN"
1657
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1658
+ </output>
1659
+ </operation>
1660
+
1661
+ <operation name="get_failsafe_action">
1662
+ <documentation>
1663
+ Gets the failsafe actions for the specified VLANs.
1664
+
1665
+ </documentation>
1666
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1667
+ <input>
1668
+ <soap:body
1669
+ use="encoded"
1670
+ namespace="urn:iControl:Networking/VLAN"
1671
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1672
+ </input>
1673
+ <output>
1674
+ <soap:body
1675
+ use="encoded"
1676
+ namespace="urn:iControl:Networking/VLAN"
1677
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1678
+ </output>
1679
+ </operation>
1680
+
1681
+ <operation name="set_failsafe_action">
1682
+ <documentation>
1683
+ Sets the failsafe actions for the specified VLANs.
1684
+
1685
+ </documentation>
1686
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1687
+ <input>
1688
+ <soap:body
1689
+ use="encoded"
1690
+ namespace="urn:iControl:Networking/VLAN"
1691
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1692
+ </input>
1693
+ <output>
1694
+ <soap:body
1695
+ use="encoded"
1696
+ namespace="urn:iControl:Networking/VLAN"
1697
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1698
+ </output>
1699
+ </operation>
1700
+
1701
+ <operation name="set_cmp_hash_algorithm">
1702
+ <documentation>
1703
+ Sets the CMP hash algorithm for the specified VLANs.
1704
+
1705
+ The CMP hash algorithm decides the traffic dissagregation criteria
1706
+ for a vlan. This allows all connections from a client to land on
1707
+ the same set of TMMs. It improves tmm performance by localizing
1708
+ the sessionDB lookup.
1709
+
1710
+ </documentation>
1711
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1712
+ <input>
1713
+ <soap:body
1714
+ use="encoded"
1715
+ namespace="urn:iControl:Networking/VLAN"
1716
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1717
+ </input>
1718
+ <output>
1719
+ <soap:body
1720
+ use="encoded"
1721
+ namespace="urn:iControl:Networking/VLAN"
1722
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1723
+ </output>
1724
+ </operation>
1725
+
1726
+ <operation name="get_cmp_hash_algorithm">
1727
+ <documentation>
1728
+ Gets the CMP hash algorithms for the specified VLANs.
1729
+
1730
+ </documentation>
1731
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1732
+ <input>
1733
+ <soap:body
1734
+ use="encoded"
1735
+ namespace="urn:iControl:Networking/VLAN"
1736
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1737
+ </input>
1738
+ <output>
1739
+ <soap:body
1740
+ use="encoded"
1741
+ namespace="urn:iControl:Networking/VLAN"
1742
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1743
+ </output>
1744
+ </operation>
1745
+
1746
+ <operation name="get_mac_masquerade_address">
1747
+ <documentation>
1748
+ This function is deprecated. MAC masquerade addresses are now configured
1749
+ on traffic groups.
1750
+
1751
+ </documentation>
1752
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1753
+ <input>
1754
+ <soap:body
1755
+ use="encoded"
1756
+ namespace="urn:iControl:Networking/VLAN"
1757
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1758
+ </input>
1759
+ <output>
1760
+ <soap:body
1761
+ use="encoded"
1762
+ namespace="urn:iControl:Networking/VLAN"
1763
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1764
+ </output>
1765
+ </operation>
1766
+
1767
+ <operation name="set_mac_masquerade_address">
1768
+ <documentation>
1769
+ This function is deprecated. MAC masquerade address are now configured
1770
+ on traffic groups.
1771
+
1772
+ If there is only one floating traffic group in the system, this function will
1773
+ set the traffic group's MAC masquerade address to the last address in
1774
+ mac_masquerade_addresses and discard all other MAC addresses provided. If
1775
+ there is more than one floating traffic group, a Common::OperationFailed exception
1776
+ is raised.
1777
+
1778
+ </documentation>
1779
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1780
+ <input>
1781
+ <soap:body
1782
+ use="encoded"
1783
+ namespace="urn:iControl:Networking/VLAN"
1784
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1785
+ </input>
1786
+ <output>
1787
+ <soap:body
1788
+ use="encoded"
1789
+ namespace="urn:iControl:Networking/VLAN"
1790
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1791
+ </output>
1792
+ </operation>
1793
+
1794
+ <operation name="get_true_mac_address">
1795
+ <documentation>
1796
+ Gets the true MAC addresses used by the specified VLANs.
1797
+
1798
+ </documentation>
1799
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1800
+ <input>
1801
+ <soap:body
1802
+ use="encoded"
1803
+ namespace="urn:iControl:Networking/VLAN"
1804
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1805
+ </input>
1806
+ <output>
1807
+ <soap:body
1808
+ use="encoded"
1809
+ namespace="urn:iControl:Networking/VLAN"
1810
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1811
+ </output>
1812
+ </operation>
1813
+
1814
+ <operation name="get_mtu">
1815
+ <documentation>
1816
+ Gets the MTUs for the specified VLANs.
1817
+
1818
+ </documentation>
1819
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1820
+ <input>
1821
+ <soap:body
1822
+ use="encoded"
1823
+ namespace="urn:iControl:Networking/VLAN"
1824
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1825
+ </input>
1826
+ <output>
1827
+ <soap:body
1828
+ use="encoded"
1829
+ namespace="urn:iControl:Networking/VLAN"
1830
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1831
+ </output>
1832
+ </operation>
1833
+
1834
+ <operation name="set_mtu">
1835
+ <documentation>
1836
+ Sets the MTUs for the specified VLANs.
1837
+
1838
+ </documentation>
1839
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1840
+ <input>
1841
+ <soap:body
1842
+ use="encoded"
1843
+ namespace="urn:iControl:Networking/VLAN"
1844
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1845
+ </input>
1846
+ <output>
1847
+ <soap:body
1848
+ use="encoded"
1849
+ namespace="urn:iControl:Networking/VLAN"
1850
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1851
+ </output>
1852
+ </operation>
1853
+
1854
+ <operation name="get_learning_mode">
1855
+ <documentation>
1856
+ Gets the configured learning modes of the specified VLANs.
1857
+
1858
+ </documentation>
1859
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1860
+ <input>
1861
+ <soap:body
1862
+ use="encoded"
1863
+ namespace="urn:iControl:Networking/VLAN"
1864
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1865
+ </input>
1866
+ <output>
1867
+ <soap:body
1868
+ use="encoded"
1869
+ namespace="urn:iControl:Networking/VLAN"
1870
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1871
+ </output>
1872
+ </operation>
1873
+
1874
+ <operation name="set_learning_mode">
1875
+ <documentation>
1876
+ Sets the learning modes for the specified VLANs.
1877
+
1878
+ </documentation>
1879
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1880
+ <input>
1881
+ <soap:body
1882
+ use="encoded"
1883
+ namespace="urn:iControl:Networking/VLAN"
1884
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1885
+ </input>
1886
+ <output>
1887
+ <soap:body
1888
+ use="encoded"
1889
+ namespace="urn:iControl:Networking/VLAN"
1890
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1891
+ </output>
1892
+ </operation>
1893
+
1894
+ <operation name="set_auto_lasthop">
1895
+ <documentation>
1896
+ Sets the attribute that specifies auto-lasthop behavior,
1897
+ for the specified VLANS.
1898
+ This controls how the system routes return traffic.
1899
+ The default is AUTO_LASTHOP_DEFAULT.
1900
+
1901
+ </documentation>
1902
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1903
+ <input>
1904
+ <soap:body
1905
+ use="encoded"
1906
+ namespace="urn:iControl:Networking/VLAN"
1907
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1908
+ </input>
1909
+ <output>
1910
+ <soap:body
1911
+ use="encoded"
1912
+ namespace="urn:iControl:Networking/VLAN"
1913
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1914
+ </output>
1915
+ </operation>
1916
+
1917
+ <operation name="get_auto_lasthop">
1918
+ <documentation>
1919
+ Gets the attribute that specifies auto-lasthop behavior,
1920
+ for the specified VLANS.
1921
+
1922
+ </documentation>
1923
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1924
+ <input>
1925
+ <soap:body
1926
+ use="encoded"
1927
+ namespace="urn:iControl:Networking/VLAN"
1928
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1929
+ </input>
1930
+ <output>
1931
+ <soap:body
1932
+ use="encoded"
1933
+ namespace="urn:iControl:Networking/VLAN"
1934
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1935
+ </output>
1936
+ </operation>
1937
+
1938
+ <operation name="set_description">
1939
+ <documentation>
1940
+ Sets the description for a set of VLANs.
1941
+
1942
+ This is an arbitrary field which can be used for any purpose.
1943
+
1944
+ </documentation>
1945
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1946
+ <input>
1947
+ <soap:body
1948
+ use="encoded"
1949
+ namespace="urn:iControl:Networking/VLAN"
1950
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1951
+ </input>
1952
+ <output>
1953
+ <soap:body
1954
+ use="encoded"
1955
+ namespace="urn:iControl:Networking/VLAN"
1956
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1957
+ </output>
1958
+ </operation>
1959
+
1960
+ <operation name="get_description">
1961
+ <documentation>
1962
+ Gets the descriptions for a set of VLANs.
1963
+
1964
+ </documentation>
1965
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1966
+ <input>
1967
+ <soap:body
1968
+ use="encoded"
1969
+ namespace="urn:iControl:Networking/VLAN"
1970
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1971
+ </input>
1972
+ <output>
1973
+ <soap:body
1974
+ use="encoded"
1975
+ namespace="urn:iControl:Networking/VLAN"
1976
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1977
+ </output>
1978
+ </operation>
1979
+
1980
+ <operation name="set_sflow_poll_interval">
1981
+ <documentation>
1982
+ Sets the sFlow poll intervals for the specified VLANs. This is
1983
+ the maximum interval in seconds between polling of the specified
1984
+ VLANs. You should set the poll intervals for the VLANs when you
1985
+ want the counters associated with these VLANs to be sampled at an
1986
+ interval that is different than the global sFlow poll interval.
1987
+ Note: you will also need to set the polling type to SFLOW_GLOBAL_NO
1988
+ (see set_sflow_poll_interval_global). The default is 0 (zero).
1989
+
1990
+ </documentation>
1991
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
1992
+ <input>
1993
+ <soap:body
1994
+ use="encoded"
1995
+ namespace="urn:iControl:Networking/VLAN"
1996
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1997
+ </input>
1998
+ <output>
1999
+ <soap:body
2000
+ use="encoded"
2001
+ namespace="urn:iControl:Networking/VLAN"
2002
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2003
+ </output>
2004
+ </operation>
2005
+
2006
+ <operation name="get_sflow_poll_interval">
2007
+ <documentation>
2008
+ Gets the sFlow poll intervals for the specified VLANs.
2009
+
2010
+ </documentation>
2011
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
2012
+ <input>
2013
+ <soap:body
2014
+ use="encoded"
2015
+ namespace="urn:iControl:Networking/VLAN"
2016
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2017
+ </input>
2018
+ <output>
2019
+ <soap:body
2020
+ use="encoded"
2021
+ namespace="urn:iControl:Networking/VLAN"
2022
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2023
+ </output>
2024
+ </operation>
2025
+
2026
+ <operation name="set_sflow_poll_interval_global">
2027
+ <documentation>
2028
+ Sets the sFlow polling types for the specified VLANs. It
2029
+ allows you to specify whether the global sFlow poll interval
2030
+ overrides the object-level poll interval for the specified
2031
+ VLANs. The default is SFLOW_GLOBAL_YES.
2032
+
2033
+ </documentation>
2034
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
2035
+ <input>
2036
+ <soap:body
2037
+ use="encoded"
2038
+ namespace="urn:iControl:Networking/VLAN"
2039
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2040
+ </input>
2041
+ <output>
2042
+ <soap:body
2043
+ use="encoded"
2044
+ namespace="urn:iControl:Networking/VLAN"
2045
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2046
+ </output>
2047
+ </operation>
2048
+
2049
+ <operation name="get_sflow_poll_interval_global">
2050
+ <documentation>
2051
+ Gets the sFlow polling types for the specified VLANs.
2052
+
2053
+ </documentation>
2054
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
2055
+ <input>
2056
+ <soap:body
2057
+ use="encoded"
2058
+ namespace="urn:iControl:Networking/VLAN"
2059
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2060
+ </input>
2061
+ <output>
2062
+ <soap:body
2063
+ use="encoded"
2064
+ namespace="urn:iControl:Networking/VLAN"
2065
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2066
+ </output>
2067
+ </operation>
2068
+
2069
+ <operation name="set_sflow_sampling_rate">
2070
+ <documentation>
2071
+ Sets the sFlow sampling rates for the specified VLANs. This is
2072
+ the ratio of packets observed at the specified VLANs to the number
2073
+ of samples you want the the BIG-IP system to generate. For example,
2074
+ a sampling rate of 2000 specifies that 1 sample will be randomly
2075
+ generated for every 2000 packets observed. You should set the
2076
+ sampling rates for the VLANs when you want the traffic flowing
2077
+ through these VLANs to be sampled at a rate that is different than
2078
+ the global sFlow sampling rate. Note: you will also need to set the
2079
+ sampling type to SFLOW_GLOBAL_NO (see set_sflow_sampling_rate_global).
2080
+ The default is 0 (zero).
2081
+
2082
+ </documentation>
2083
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
2084
+ <input>
2085
+ <soap:body
2086
+ use="encoded"
2087
+ namespace="urn:iControl:Networking/VLAN"
2088
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2089
+ </input>
2090
+ <output>
2091
+ <soap:body
2092
+ use="encoded"
2093
+ namespace="urn:iControl:Networking/VLAN"
2094
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2095
+ </output>
2096
+ </operation>
2097
+
2098
+ <operation name="get_sflow_sampling_rate">
2099
+ <documentation>
2100
+ Gets the sFlow sampling rates for the specified VLANs.
2101
+
2102
+ </documentation>
2103
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
2104
+ <input>
2105
+ <soap:body
2106
+ use="encoded"
2107
+ namespace="urn:iControl:Networking/VLAN"
2108
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2109
+ </input>
2110
+ <output>
2111
+ <soap:body
2112
+ use="encoded"
2113
+ namespace="urn:iControl:Networking/VLAN"
2114
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2115
+ </output>
2116
+ </operation>
2117
+
2118
+ <operation name="set_sflow_sampling_rate_global">
2119
+ <documentation>
2120
+ Sets the sFlow sampling types for the specified VLANs. It
2121
+ allows you to specify whether the global sFlow sampling rate
2122
+ overrides the object-level sampling rate for the specified
2123
+ VLANs. The default is SFLOW_GLOBAL_YES.
2124
+
2125
+ </documentation>
2126
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
2127
+ <input>
2128
+ <soap:body
2129
+ use="encoded"
2130
+ namespace="urn:iControl:Networking/VLAN"
2131
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2132
+ </input>
2133
+ <output>
2134
+ <soap:body
2135
+ use="encoded"
2136
+ namespace="urn:iControl:Networking/VLAN"
2137
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2138
+ </output>
2139
+ </operation>
2140
+
2141
+ <operation name="get_sflow_sampling_rate_global">
2142
+ <documentation>
2143
+ Gets the sFlow sampling types for the specified VLANs.
2144
+
2145
+ </documentation>
2146
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
2147
+ <input>
2148
+ <soap:body
2149
+ use="encoded"
2150
+ namespace="urn:iControl:Networking/VLAN"
2151
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2152
+ </input>
2153
+ <output>
2154
+ <soap:body
2155
+ use="encoded"
2156
+ namespace="urn:iControl:Networking/VLAN"
2157
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2158
+ </output>
2159
+ </operation>
2160
+
2161
+ <operation name="get_if_index">
2162
+ <documentation>
2163
+ Gets the IF indices for the specified VLANs. This is a
2164
+ unique identifier assigned to all objects displayed in
2165
+ the SNMP IF-MIB.
2166
+
2167
+ </documentation>
2168
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
2169
+ <input>
2170
+ <soap:body
2171
+ use="encoded"
2172
+ namespace="urn:iControl:Networking/VLAN"
2173
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2174
+ </input>
2175
+ <output>
2176
+ <soap:body
2177
+ use="encoded"
2178
+ namespace="urn:iControl:Networking/VLAN"
2179
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2180
+ </output>
2181
+ </operation>
2182
+
2183
+ <operation name="get_version">
2184
+ <documentation>
2185
+ Gets the version information for this interface.
2186
+
2187
+ </documentation>
2188
+ <soap:operation soapAction="urn:iControl:Networking/VLAN"/>
2189
+ <input>
2190
+ <soap:body
2191
+ use="encoded"
2192
+ namespace="urn:iControl:Networking/VLAN"
2193
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2194
+ </input>
2195
+ <output>
2196
+ <soap:body
2197
+ use="encoded"
2198
+ namespace="urn:iControl:Networking/VLAN"
2199
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2200
+ </output>
2201
+ </operation>
2202
+ </binding>
2203
+
2204
+ <!-- service -->
2205
+
2206
+ <service name="Networking.VLAN">
2207
+ <documentation>
2208
+ The VLAN interface enables you to work with the definitions and attributes contained in a device's VLAN.
2209
+
2210
+ </documentation>
2211
+ <port name="Networking.VLANPort" binding="tns:Networking.VLANBinding">
2212
+ <soap:address location="https://url_to_service"/>
2213
+ </port>
2214
+ </service>
2215
+ </definitions>