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,1441 @@
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.VLANGroup"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:simpleType name="Common.EnabledState">
25
+ <xsd:restriction base="xsd:string">
26
+ <xsd:enumeration value="STATE_DISABLED">
27
+ <xsd:annotation>
28
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
29
+ </xsd:annotation>
30
+ </xsd:enumeration>
31
+ <xsd:enumeration value="STATE_ENABLED">
32
+ <xsd:annotation>
33
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
34
+ </xsd:annotation>
35
+ </xsd:enumeration>
36
+ </xsd:restriction>
37
+ </xsd:simpleType>
38
+ <xsd:simpleType name="Common.AutoLasthop">
39
+ <xsd:restriction base="xsd:string">
40
+ <xsd:enumeration value="AUTO_LASTHOP_UNKNOWN">
41
+ <xsd:annotation>
42
+ <xsd:documentation>AUTO_LASTHOP_UNKNOWN</xsd:documentation>
43
+ </xsd:annotation>
44
+ </xsd:enumeration>
45
+ <xsd:enumeration value="AUTO_LASTHOP_DEFAULT">
46
+ <xsd:annotation>
47
+ <xsd:documentation>AUTO_LASTHOP_DEFAULT</xsd:documentation>
48
+ </xsd:annotation>
49
+ </xsd:enumeration>
50
+ <xsd:enumeration value="AUTO_LASTHOP_ENABLED">
51
+ <xsd:annotation>
52
+ <xsd:documentation>AUTO_LASTHOP_ENABLED</xsd:documentation>
53
+ </xsd:annotation>
54
+ </xsd:enumeration>
55
+ <xsd:enumeration value="AUTO_LASTHOP_DISABLED">
56
+ <xsd:annotation>
57
+ <xsd:documentation>AUTO_LASTHOP_DISABLED</xsd:documentation>
58
+ </xsd:annotation>
59
+ </xsd:enumeration>
60
+ </xsd:restriction>
61
+ </xsd:simpleType>
62
+ <xsd:complexType name="Common.StringSequence">
63
+ <xsd:complexContent>
64
+ <xsd:restriction base='SOAP-ENC:Array'>
65
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
66
+ </xsd:restriction>
67
+ </xsd:complexContent>
68
+ </xsd:complexType>
69
+ <xsd:complexType name="Common.IPAddressSequenceSequence">
70
+ <xsd:complexContent>
71
+ <xsd:restriction base='SOAP-ENC:Array'>
72
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.IPAddressSequence[]'/>
73
+ </xsd:restriction>
74
+ </xsd:complexContent>
75
+ </xsd:complexType>
76
+ <xsd:complexType name="Common.ULongSequence">
77
+ <xsd:complexContent>
78
+ <xsd:restriction base='SOAP-ENC:Array'>
79
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
80
+ </xsd:restriction>
81
+ </xsd:complexContent>
82
+ </xsd:complexType>
83
+ <xsd:complexType name="Networking.VLANGroup.VLANGroupTransparencySequence">
84
+ <xsd:complexContent>
85
+ <xsd:restriction base='SOAP-ENC:Array'>
86
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.VLANGroup.VLANGroupTransparency[]'/>
87
+ </xsd:restriction>
88
+ </xsd:complexContent>
89
+ </xsd:complexType>
90
+ <xsd:simpleType name="Networking.VLANGroup.VLANGroupTransparency">
91
+ <xsd:restriction base="xsd:string">
92
+ <xsd:enumeration value="VLANGROUP_TRANSPARENT">
93
+ <xsd:annotation>
94
+ <xsd:documentation>VLANGROUP_TRANSPARENT</xsd:documentation>
95
+ </xsd:annotation>
96
+ </xsd:enumeration>
97
+ <xsd:enumeration value="VLANGROUP_OPAQUE">
98
+ <xsd:annotation>
99
+ <xsd:documentation>VLANGROUP_OPAQUE</xsd:documentation>
100
+ </xsd:annotation>
101
+ </xsd:enumeration>
102
+ <xsd:enumeration value="VLANGROUP_TRANSLUCENT">
103
+ <xsd:annotation>
104
+ <xsd:documentation>VLANGROUP_TRANSLUCENT</xsd:documentation>
105
+ </xsd:annotation>
106
+ </xsd:enumeration>
107
+ </xsd:restriction>
108
+ </xsd:simpleType>
109
+ <xsd:complexType name="Common.StringSequenceSequence">
110
+ <xsd:complexContent>
111
+ <xsd:restriction base='SOAP-ENC:Array'>
112
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
113
+ </xsd:restriction>
114
+ </xsd:complexContent>
115
+ </xsd:complexType>
116
+ <xsd:complexType name="Common.IPAddressSequence">
117
+ <xsd:complexContent>
118
+ <xsd:restriction base='SOAP-ENC:Array'>
119
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
120
+ </xsd:restriction>
121
+ </xsd:complexContent>
122
+ </xsd:complexType>
123
+ <xsd:complexType name="Common.AutoLasthopSequence">
124
+ <xsd:complexContent>
125
+ <xsd:restriction base='SOAP-ENC:Array'>
126
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.AutoLasthop[]'/>
127
+ </xsd:restriction>
128
+ </xsd:complexContent>
129
+ </xsd:complexType>
130
+ <xsd:complexType name="Common.EnabledStateSequence">
131
+ <xsd:complexContent>
132
+ <xsd:restriction base='SOAP-ENC:Array'>
133
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
134
+ </xsd:restriction>
135
+ </xsd:complexContent>
136
+ </xsd:complexType>
137
+ </xsd:schema>
138
+ </types>
139
+
140
+ <!-- message -->
141
+
142
+ <message name="Networking.VLANGroup.get_listRequest">
143
+ </message>
144
+ <message name="Networking.VLANGroup.get_listResponse">
145
+ <part name="return" type="tns:Common.StringSequence"/>
146
+ </message>
147
+
148
+ <message name="Networking.VLANGroup.createRequest">
149
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
150
+ <part name="vlan_ids" type="tns:Common.ULongSequence"/>
151
+ <part name="member_vlans" type="tns:Common.StringSequenceSequence"/>
152
+ </message>
153
+ <message name="Networking.VLANGroup.createResponse">
154
+ </message>
155
+
156
+ <message name="Networking.VLANGroup.create_v2Request">
157
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
158
+ <part name="member_vlans" type="tns:Common.StringSequenceSequence"/>
159
+ </message>
160
+ <message name="Networking.VLANGroup.create_v2Response">
161
+ </message>
162
+
163
+ <message name="Networking.VLANGroup.delete_vlan_groupRequest">
164
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
165
+ </message>
166
+ <message name="Networking.VLANGroup.delete_vlan_groupResponse">
167
+ </message>
168
+
169
+ <message name="Networking.VLANGroup.delete_all_vlan_groupsRequest">
170
+ </message>
171
+ <message name="Networking.VLANGroup.delete_all_vlan_groupsResponse">
172
+ </message>
173
+
174
+ <message name="Networking.VLANGroup.set_vlan_idRequest">
175
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
176
+ <part name="vlan_ids" type="tns:Common.ULongSequence"/>
177
+ </message>
178
+ <message name="Networking.VLANGroup.set_vlan_idResponse">
179
+ </message>
180
+
181
+ <message name="Networking.VLANGroup.get_vlan_idRequest">
182
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
183
+ </message>
184
+ <message name="Networking.VLANGroup.get_vlan_idResponse">
185
+ <part name="return" type="tns:Common.ULongSequence"/>
186
+ </message>
187
+
188
+ <message name="Networking.VLANGroup.set_transparency_modeRequest">
189
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
190
+ <part name="modes" type="tns:Networking.VLANGroup.VLANGroupTransparencySequence"/>
191
+ </message>
192
+ <message name="Networking.VLANGroup.set_transparency_modeResponse">
193
+ </message>
194
+
195
+ <message name="Networking.VLANGroup.get_transparency_modeRequest">
196
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
197
+ </message>
198
+ <message name="Networking.VLANGroup.get_transparency_modeResponse">
199
+ <part name="return" type="tns:Networking.VLANGroup.VLANGroupTransparencySequence"/>
200
+ </message>
201
+
202
+ <message name="Networking.VLANGroup.set_bridge_all_traffic_stateRequest">
203
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
204
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
205
+ </message>
206
+ <message name="Networking.VLANGroup.set_bridge_all_traffic_stateResponse">
207
+ </message>
208
+
209
+ <message name="Networking.VLANGroup.get_bridge_all_traffic_stateRequest">
210
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
211
+ </message>
212
+ <message name="Networking.VLANGroup.get_bridge_all_traffic_stateResponse">
213
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
214
+ </message>
215
+
216
+ <message name="Networking.VLANGroup.set_bridge_in_standby_stateRequest">
217
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
218
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
219
+ </message>
220
+ <message name="Networking.VLANGroup.set_bridge_in_standby_stateResponse">
221
+ </message>
222
+
223
+ <message name="Networking.VLANGroup.get_bridge_in_standby_stateRequest">
224
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
225
+ </message>
226
+ <message name="Networking.VLANGroup.get_bridge_in_standby_stateResponse">
227
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
228
+ </message>
229
+
230
+ <message name="Networking.VLANGroup.set_bridge_multicast_stateRequest">
231
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
232
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
233
+ </message>
234
+ <message name="Networking.VLANGroup.set_bridge_multicast_stateResponse">
235
+ </message>
236
+
237
+ <message name="Networking.VLANGroup.get_bridge_multicast_stateRequest">
238
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
239
+ </message>
240
+ <message name="Networking.VLANGroup.get_bridge_multicast_stateResponse">
241
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
242
+ </message>
243
+
244
+ <message name="Networking.VLANGroup.set_mac_masquerade_addressRequest">
245
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
246
+ <part name="mac_masquerade_addresses" type="tns:Common.StringSequence"/>
247
+ </message>
248
+ <message name="Networking.VLANGroup.set_mac_masquerade_addressResponse">
249
+ </message>
250
+
251
+ <message name="Networking.VLANGroup.get_mac_masquerade_addressRequest">
252
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
253
+ </message>
254
+ <message name="Networking.VLANGroup.get_mac_masquerade_addressResponse">
255
+ <part name="return" type="tns:Common.StringSequence"/>
256
+ </message>
257
+
258
+ <message name="Networking.VLANGroup.get_true_mac_addressRequest">
259
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
260
+ </message>
261
+ <message name="Networking.VLANGroup.get_true_mac_addressResponse">
262
+ <part name="return" type="tns:Common.StringSequence"/>
263
+ </message>
264
+
265
+ <message name="Networking.VLANGroup.get_memberRequest">
266
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
267
+ </message>
268
+ <message name="Networking.VLANGroup.get_memberResponse">
269
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
270
+ </message>
271
+
272
+ <message name="Networking.VLANGroup.add_memberRequest">
273
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
274
+ <part name="member_vlans" type="tns:Common.StringSequenceSequence"/>
275
+ </message>
276
+ <message name="Networking.VLANGroup.add_memberResponse">
277
+ </message>
278
+
279
+ <message name="Networking.VLANGroup.remove_memberRequest">
280
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
281
+ <part name="member_vlans" type="tns:Common.StringSequenceSequence"/>
282
+ </message>
283
+ <message name="Networking.VLANGroup.remove_memberResponse">
284
+ </message>
285
+
286
+ <message name="Networking.VLANGroup.remove_all_membersRequest">
287
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
288
+ </message>
289
+ <message name="Networking.VLANGroup.remove_all_membersResponse">
290
+ </message>
291
+
292
+ <message name="Networking.VLANGroup.get_global_proxy_exclusionRequest">
293
+ </message>
294
+ <message name="Networking.VLANGroup.get_global_proxy_exclusionResponse">
295
+ <part name="return" type="tns:Common.IPAddressSequence"/>
296
+ </message>
297
+
298
+ <message name="Networking.VLANGroup.add_global_proxy_exclusionRequest">
299
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
300
+ </message>
301
+ <message name="Networking.VLANGroup.add_global_proxy_exclusionResponse">
302
+ </message>
303
+
304
+ <message name="Networking.VLANGroup.remove_global_proxy_exclusionRequest">
305
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
306
+ </message>
307
+ <message name="Networking.VLANGroup.remove_global_proxy_exclusionResponse">
308
+ </message>
309
+
310
+ <message name="Networking.VLANGroup.remove_all_global_proxy_exclusionsRequest">
311
+ </message>
312
+ <message name="Networking.VLANGroup.remove_all_global_proxy_exclusionsResponse">
313
+ </message>
314
+
315
+ <message name="Networking.VLANGroup.get_proxy_exclusionRequest">
316
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
317
+ </message>
318
+ <message name="Networking.VLANGroup.get_proxy_exclusionResponse">
319
+ <part name="return" type="tns:Common.IPAddressSequenceSequence"/>
320
+ </message>
321
+
322
+ <message name="Networking.VLANGroup.add_proxy_exclusionRequest">
323
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
324
+ <part name="addresses" type="tns:Common.IPAddressSequenceSequence"/>
325
+ </message>
326
+ <message name="Networking.VLANGroup.add_proxy_exclusionResponse">
327
+ </message>
328
+
329
+ <message name="Networking.VLANGroup.remove_proxy_exclusionRequest">
330
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
331
+ <part name="addresses" type="tns:Common.IPAddressSequenceSequence"/>
332
+ </message>
333
+ <message name="Networking.VLANGroup.remove_proxy_exclusionResponse">
334
+ </message>
335
+
336
+ <message name="Networking.VLANGroup.remove_all_proxy_exclusionsRequest">
337
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
338
+ </message>
339
+ <message name="Networking.VLANGroup.remove_all_proxy_exclusionsResponse">
340
+ </message>
341
+
342
+ <message name="Networking.VLANGroup.set_auto_lasthopRequest">
343
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
344
+ <part name="values" type="tns:Common.AutoLasthopSequence"/>
345
+ </message>
346
+ <message name="Networking.VLANGroup.set_auto_lasthopResponse">
347
+ </message>
348
+
349
+ <message name="Networking.VLANGroup.get_auto_lasthopRequest">
350
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
351
+ </message>
352
+ <message name="Networking.VLANGroup.get_auto_lasthopResponse">
353
+ <part name="return" type="tns:Common.AutoLasthopSequence"/>
354
+ </message>
355
+
356
+ <message name="Networking.VLANGroup.set_descriptionRequest">
357
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
358
+ <part name="descriptions" type="tns:Common.StringSequence"/>
359
+ </message>
360
+ <message name="Networking.VLANGroup.set_descriptionResponse">
361
+ </message>
362
+
363
+ <message name="Networking.VLANGroup.get_descriptionRequest">
364
+ <part name="vlan_groups" type="tns:Common.StringSequence"/>
365
+ </message>
366
+ <message name="Networking.VLANGroup.get_descriptionResponse">
367
+ <part name="return" type="tns:Common.StringSequence"/>
368
+ </message>
369
+
370
+ <message name="Networking.VLANGroup.get_versionRequest">
371
+ </message>
372
+ <message name="Networking.VLANGroup.get_versionResponse">
373
+ <part name="return" type="xsd:string"/>
374
+ </message>
375
+
376
+ <!-- portType -->
377
+
378
+ <portType name="Networking.VLANGroupPortType">
379
+ <operation name="get_list">
380
+ <documentation>
381
+ Gets a list of all VLAN groups on this device.
382
+
383
+ </documentation>
384
+ <input message="tns:Networking.VLANGroup.get_listRequest"/>
385
+ <output message="tns:Networking.VLANGroup.get_listResponse"/>
386
+ </operation>
387
+ <operation name="create">
388
+ <documentation>
389
+ This method has been deprecated; please use create_v2 instead.
390
+
391
+ Creates a VLAN group.
392
+
393
+ </documentation>
394
+ <input message="tns:Networking.VLANGroup.createRequest"/>
395
+ <output message="tns:Networking.VLANGroup.createResponse"/>
396
+ </operation>
397
+ <operation name="create_v2">
398
+ <documentation>
399
+ Creates a VLAN group.
400
+
401
+ This method has been updated to avoid use
402
+ of an unnecessary VLAN id vector in VLAN group creation.
403
+
404
+ </documentation>
405
+ <input message="tns:Networking.VLANGroup.create_v2Request"/>
406
+ <output message="tns:Networking.VLANGroup.create_v2Response"/>
407
+ </operation>
408
+ <operation name="delete_vlan_group">
409
+ <documentation>
410
+ Deletes the specified VLAN groups.
411
+
412
+ </documentation>
413
+ <input message="tns:Networking.VLANGroup.delete_vlan_groupRequest"/>
414
+ <output message="tns:Networking.VLANGroup.delete_vlan_groupResponse"/>
415
+ </operation>
416
+ <operation name="delete_all_vlan_groups">
417
+ <documentation>
418
+ Deletes all VLAN groups.
419
+
420
+ </documentation>
421
+ <input message="tns:Networking.VLANGroup.delete_all_vlan_groupsRequest"/>
422
+ <output message="tns:Networking.VLANGroup.delete_all_vlan_groupsResponse"/>
423
+ </operation>
424
+ <operation name="set_vlan_id">
425
+ <documentation>
426
+ This method has been deprecated; setting VLAN id for a VLAN group
427
+ had and will have no effect. Please don't use in the future.
428
+
429
+ Sets the tag ids for the specified VLAN groups.
430
+
431
+ </documentation>
432
+ <input message="tns:Networking.VLANGroup.set_vlan_idRequest"/>
433
+ <output message="tns:Networking.VLANGroup.set_vlan_idResponse"/>
434
+ </operation>
435
+ <operation name="get_vlan_id">
436
+ <documentation>
437
+ This method has been deprecated; accessing VLAN id for a VLAN group
438
+ was unnecessary and misleading. The method now returns 0s.
439
+ Please don't use in the future.
440
+
441
+ Gets the ids for the specified VLAN groups.
442
+
443
+ </documentation>
444
+ <input message="tns:Networking.VLANGroup.get_vlan_idRequest"/>
445
+ <output message="tns:Networking.VLANGroup.get_vlan_idResponse"/>
446
+ </operation>
447
+ <operation name="set_transparency_mode">
448
+ <documentation>
449
+ Sets the transparency modes for the specified VLAN groups.
450
+
451
+ </documentation>
452
+ <input message="tns:Networking.VLANGroup.set_transparency_modeRequest"/>
453
+ <output message="tns:Networking.VLANGroup.set_transparency_modeResponse"/>
454
+ </operation>
455
+ <operation name="get_transparency_mode">
456
+ <documentation>
457
+ Gets the transparency modes for the specified VLAN groups.
458
+
459
+ </documentation>
460
+ <input message="tns:Networking.VLANGroup.get_transparency_modeRequest"/>
461
+ <output message="tns:Networking.VLANGroup.get_transparency_modeResponse"/>
462
+ </operation>
463
+ <operation name="set_bridge_all_traffic_state">
464
+ <documentation>
465
+ Sets the states to indicate whether to bridge non-IP traffic as well as IP traffic
466
+ for the specified VLAN groups.
467
+
468
+ </documentation>
469
+ <input message="tns:Networking.VLANGroup.set_bridge_all_traffic_stateRequest"/>
470
+ <output message="tns:Networking.VLANGroup.set_bridge_all_traffic_stateResponse"/>
471
+ </operation>
472
+ <operation name="get_bridge_all_traffic_state">
473
+ <documentation>
474
+ Gets the states to indicate whether to bridge non-IP traffic as well as IP traffic
475
+ for the specified VLAN groups.
476
+
477
+ </documentation>
478
+ <input message="tns:Networking.VLANGroup.get_bridge_all_traffic_stateRequest"/>
479
+ <output message="tns:Networking.VLANGroup.get_bridge_all_traffic_stateResponse"/>
480
+ </operation>
481
+ <operation name="set_bridge_in_standby_state">
482
+ <documentation>
483
+ Sets the states to indicate whether to bridge while unit is in standby mode
484
+ for the specified VLAN groups.
485
+
486
+ </documentation>
487
+ <input message="tns:Networking.VLANGroup.set_bridge_in_standby_stateRequest"/>
488
+ <output message="tns:Networking.VLANGroup.set_bridge_in_standby_stateResponse"/>
489
+ </operation>
490
+ <operation name="get_bridge_in_standby_state">
491
+ <documentation>
492
+ Gets the states to indicate whether to bridge while unit is in standby mode
493
+ for the specified VLAN groups.
494
+
495
+ </documentation>
496
+ <input message="tns:Networking.VLANGroup.get_bridge_in_standby_stateRequest"/>
497
+ <output message="tns:Networking.VLANGroup.get_bridge_in_standby_stateResponse"/>
498
+ </operation>
499
+ <operation name="set_bridge_multicast_state">
500
+ <documentation>
501
+ Sets the states to indicate whether to bridge multicast/broadcast traffic
502
+ for the specified VLAN groups.
503
+
504
+ </documentation>
505
+ <input message="tns:Networking.VLANGroup.set_bridge_multicast_stateRequest"/>
506
+ <output message="tns:Networking.VLANGroup.set_bridge_multicast_stateResponse"/>
507
+ </operation>
508
+ <operation name="get_bridge_multicast_state">
509
+ <documentation>
510
+ Gets the states to indicate whether to bridge multicast/broadcast traffic
511
+ for the specified VLAN groups.
512
+
513
+ </documentation>
514
+ <input message="tns:Networking.VLANGroup.get_bridge_multicast_stateRequest"/>
515
+ <output message="tns:Networking.VLANGroup.get_bridge_multicast_stateResponse"/>
516
+ </operation>
517
+ <operation name="set_mac_masquerade_address">
518
+ <documentation>
519
+ This function is deprecated. MAC masquerade address are now configured
520
+ on traffic groups.
521
+
522
+ If there is only one floating traffic group in the system, this function will
523
+ set the traffic group's MAC masquerade address to the last address in
524
+ mac_masquerade_addresses and discard all other MAC addresses provided. If
525
+ there is more than one floating traffic group, a Common::OperationFailed exception
526
+ is raised.
527
+
528
+ </documentation>
529
+ <input message="tns:Networking.VLANGroup.set_mac_masquerade_addressRequest"/>
530
+ <output message="tns:Networking.VLANGroup.set_mac_masquerade_addressResponse"/>
531
+ </operation>
532
+ <operation name="get_mac_masquerade_address">
533
+ <documentation>
534
+ This function is deprecated. MAC masquerade addresses are now configured
535
+ on traffic groups.
536
+
537
+ </documentation>
538
+ <input message="tns:Networking.VLANGroup.get_mac_masquerade_addressRequest"/>
539
+ <output message="tns:Networking.VLANGroup.get_mac_masquerade_addressResponse"/>
540
+ </operation>
541
+ <operation name="get_true_mac_address">
542
+ <documentation>
543
+ Gets the true MAC addresses used by the specified VLAN groups.
544
+
545
+ </documentation>
546
+ <input message="tns:Networking.VLANGroup.get_true_mac_addressRequest"/>
547
+ <output message="tns:Networking.VLANGroup.get_true_mac_addressResponse"/>
548
+ </operation>
549
+ <operation name="get_member">
550
+ <documentation>
551
+ Gets the lists of children VLANs of the specified VLAN groups.
552
+
553
+ </documentation>
554
+ <input message="tns:Networking.VLANGroup.get_memberRequest"/>
555
+ <output message="tns:Networking.VLANGroup.get_memberResponse"/>
556
+ </operation>
557
+ <operation name="add_member">
558
+ <documentation>
559
+ Adds the specified children VLANs to the specified VLAN groups.
560
+
561
+ </documentation>
562
+ <input message="tns:Networking.VLANGroup.add_memberRequest"/>
563
+ <output message="tns:Networking.VLANGroup.add_memberResponse"/>
564
+ </operation>
565
+ <operation name="remove_member">
566
+ <documentation>
567
+ Removes the specified children VLANs from the specified VLAN groups.
568
+
569
+ </documentation>
570
+ <input message="tns:Networking.VLANGroup.remove_memberRequest"/>
571
+ <output message="tns:Networking.VLANGroup.remove_memberResponse"/>
572
+ </operation>
573
+ <operation name="remove_all_members">
574
+ <documentation>
575
+ Removes all children VLANs from the specified VLAN groups.
576
+
577
+ </documentation>
578
+ <input message="tns:Networking.VLANGroup.remove_all_membersRequest"/>
579
+ <output message="tns:Networking.VLANGroup.remove_all_membersResponse"/>
580
+ </operation>
581
+ <operation name="get_global_proxy_exclusion">
582
+ <documentation>
583
+ Gets the global lists of IP addresses that proxy ARP will ignore for all VLAN groups.
584
+
585
+ </documentation>
586
+ <input message="tns:Networking.VLANGroup.get_global_proxy_exclusionRequest"/>
587
+ <output message="tns:Networking.VLANGroup.get_global_proxy_exclusionResponse"/>
588
+ </operation>
589
+ <operation name="add_global_proxy_exclusion">
590
+ <documentation>
591
+ Adds the specified IP addresses to the global proxy ARP exclusion list that applies to all VLAN groups.
592
+
593
+ </documentation>
594
+ <input message="tns:Networking.VLANGroup.add_global_proxy_exclusionRequest"/>
595
+ <output message="tns:Networking.VLANGroup.add_global_proxy_exclusionResponse"/>
596
+ </operation>
597
+ <operation name="remove_global_proxy_exclusion">
598
+ <documentation>
599
+ Removes the specified IP addresses from the global proxy ARP exclusion list that applies to all VLAN groups.
600
+
601
+ </documentation>
602
+ <input message="tns:Networking.VLANGroup.remove_global_proxy_exclusionRequest"/>
603
+ <output message="tns:Networking.VLANGroup.remove_global_proxy_exclusionResponse"/>
604
+ </operation>
605
+ <operation name="remove_all_global_proxy_exclusions">
606
+ <documentation>
607
+ Removes all IP addresses from the global proxy ARP exclusion list for all VLAN groups.
608
+
609
+ </documentation>
610
+ <input message="tns:Networking.VLANGroup.remove_all_global_proxy_exclusionsRequest"/>
611
+ <output message="tns:Networking.VLANGroup.remove_all_global_proxy_exclusionsResponse"/>
612
+ </operation>
613
+ <operation name="get_proxy_exclusion">
614
+ <documentation>
615
+ Gets the lists of IP addresses that proxy ARP will ignore for the specified VLAN groups.
616
+
617
+ </documentation>
618
+ <input message="tns:Networking.VLANGroup.get_proxy_exclusionRequest"/>
619
+ <output message="tns:Networking.VLANGroup.get_proxy_exclusionResponse"/>
620
+ </operation>
621
+ <operation name="add_proxy_exclusion">
622
+ <documentation>
623
+ Adds the specified IP addresses to the proxy ARP exclusion lists of the specified VLAN groups.
624
+
625
+ </documentation>
626
+ <input message="tns:Networking.VLANGroup.add_proxy_exclusionRequest"/>
627
+ <output message="tns:Networking.VLANGroup.add_proxy_exclusionResponse"/>
628
+ </operation>
629
+ <operation name="remove_proxy_exclusion">
630
+ <documentation>
631
+ Removes the specified IP addresses from the proxy ARP exclusion lists of the specified VLAN groups.
632
+
633
+ </documentation>
634
+ <input message="tns:Networking.VLANGroup.remove_proxy_exclusionRequest"/>
635
+ <output message="tns:Networking.VLANGroup.remove_proxy_exclusionResponse"/>
636
+ </operation>
637
+ <operation name="remove_all_proxy_exclusions">
638
+ <documentation>
639
+ Removes all IP addresses from the proxy ARP exclusion lists of the specified VLAN groups.
640
+
641
+ </documentation>
642
+ <input message="tns:Networking.VLANGroup.remove_all_proxy_exclusionsRequest"/>
643
+ <output message="tns:Networking.VLANGroup.remove_all_proxy_exclusionsResponse"/>
644
+ </operation>
645
+ <operation name="set_auto_lasthop">
646
+ <documentation>
647
+ Sets the attribute that specifies auto-lasthop behavior,
648
+ for the specified VLAN groups.
649
+ This controls how the system routes return traffic.
650
+ The default is AUTO_LASTHOP_DEFAULT.
651
+
652
+ </documentation>
653
+ <input message="tns:Networking.VLANGroup.set_auto_lasthopRequest"/>
654
+ <output message="tns:Networking.VLANGroup.set_auto_lasthopResponse"/>
655
+ </operation>
656
+ <operation name="get_auto_lasthop">
657
+ <documentation>
658
+ Gets the attribute that specifies auto-lasthop behavior,
659
+ for the specified VLAN groups.
660
+
661
+ </documentation>
662
+ <input message="tns:Networking.VLANGroup.get_auto_lasthopRequest"/>
663
+ <output message="tns:Networking.VLANGroup.get_auto_lasthopResponse"/>
664
+ </operation>
665
+ <operation name="set_description">
666
+ <documentation>
667
+ Sets the description for a set of VLAN groups.
668
+
669
+ This is an arbitrary field which can be used for any purpose.
670
+
671
+ </documentation>
672
+ <input message="tns:Networking.VLANGroup.set_descriptionRequest"/>
673
+ <output message="tns:Networking.VLANGroup.set_descriptionResponse"/>
674
+ </operation>
675
+ <operation name="get_description">
676
+ <documentation>
677
+ Gets the descriptions for a set of VLAN groups.
678
+
679
+ </documentation>
680
+ <input message="tns:Networking.VLANGroup.get_descriptionRequest"/>
681
+ <output message="tns:Networking.VLANGroup.get_descriptionResponse"/>
682
+ </operation>
683
+ <operation name="get_version">
684
+ <documentation>
685
+ Gets the version information for this interface.
686
+
687
+ </documentation>
688
+ <input message="tns:Networking.VLANGroup.get_versionRequest"/>
689
+ <output message="tns:Networking.VLANGroup.get_versionResponse"/>
690
+ </operation>
691
+ </portType>
692
+
693
+ <!-- binding -->
694
+
695
+ <binding name="Networking.VLANGroupBinding" type="tns:Networking.VLANGroupPortType">
696
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
697
+ <operation name="get_list">
698
+ <documentation>
699
+ Gets a list of all VLAN groups on this device.
700
+
701
+ </documentation>
702
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
703
+ <input>
704
+ <soap:body
705
+ use="encoded"
706
+ namespace="urn:iControl:Networking/VLANGroup"
707
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
708
+ </input>
709
+ <output>
710
+ <soap:body
711
+ use="encoded"
712
+ namespace="urn:iControl:Networking/VLANGroup"
713
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
714
+ </output>
715
+ </operation>
716
+
717
+ <operation name="create">
718
+ <documentation>
719
+ This method has been deprecated; please use create_v2 instead.
720
+
721
+ Creates a VLAN group.
722
+
723
+ </documentation>
724
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
725
+ <input>
726
+ <soap:body
727
+ use="encoded"
728
+ namespace="urn:iControl:Networking/VLANGroup"
729
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
730
+ </input>
731
+ <output>
732
+ <soap:body
733
+ use="encoded"
734
+ namespace="urn:iControl:Networking/VLANGroup"
735
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
736
+ </output>
737
+ </operation>
738
+
739
+ <operation name="create_v2">
740
+ <documentation>
741
+ Creates a VLAN group.
742
+
743
+ This method has been updated to avoid use
744
+ of an unnecessary VLAN id vector in VLAN group creation.
745
+
746
+ </documentation>
747
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
748
+ <input>
749
+ <soap:body
750
+ use="encoded"
751
+ namespace="urn:iControl:Networking/VLANGroup"
752
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
753
+ </input>
754
+ <output>
755
+ <soap:body
756
+ use="encoded"
757
+ namespace="urn:iControl:Networking/VLANGroup"
758
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
759
+ </output>
760
+ </operation>
761
+
762
+ <operation name="delete_vlan_group">
763
+ <documentation>
764
+ Deletes the specified VLAN groups.
765
+
766
+ </documentation>
767
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
768
+ <input>
769
+ <soap:body
770
+ use="encoded"
771
+ namespace="urn:iControl:Networking/VLANGroup"
772
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
773
+ </input>
774
+ <output>
775
+ <soap:body
776
+ use="encoded"
777
+ namespace="urn:iControl:Networking/VLANGroup"
778
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
779
+ </output>
780
+ </operation>
781
+
782
+ <operation name="delete_all_vlan_groups">
783
+ <documentation>
784
+ Deletes all VLAN groups.
785
+
786
+ </documentation>
787
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
788
+ <input>
789
+ <soap:body
790
+ use="encoded"
791
+ namespace="urn:iControl:Networking/VLANGroup"
792
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
793
+ </input>
794
+ <output>
795
+ <soap:body
796
+ use="encoded"
797
+ namespace="urn:iControl:Networking/VLANGroup"
798
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
799
+ </output>
800
+ </operation>
801
+
802
+ <operation name="set_vlan_id">
803
+ <documentation>
804
+ This method has been deprecated; setting VLAN id for a VLAN group
805
+ had and will have no effect. Please don't use in the future.
806
+
807
+ Sets the tag ids for the specified VLAN groups.
808
+
809
+ </documentation>
810
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
811
+ <input>
812
+ <soap:body
813
+ use="encoded"
814
+ namespace="urn:iControl:Networking/VLANGroup"
815
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
816
+ </input>
817
+ <output>
818
+ <soap:body
819
+ use="encoded"
820
+ namespace="urn:iControl:Networking/VLANGroup"
821
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
822
+ </output>
823
+ </operation>
824
+
825
+ <operation name="get_vlan_id">
826
+ <documentation>
827
+ This method has been deprecated; accessing VLAN id for a VLAN group
828
+ was unnecessary and misleading. The method now returns 0s.
829
+ Please don't use in the future.
830
+
831
+ Gets the ids for the specified VLAN groups.
832
+
833
+ </documentation>
834
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
835
+ <input>
836
+ <soap:body
837
+ use="encoded"
838
+ namespace="urn:iControl:Networking/VLANGroup"
839
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
840
+ </input>
841
+ <output>
842
+ <soap:body
843
+ use="encoded"
844
+ namespace="urn:iControl:Networking/VLANGroup"
845
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
846
+ </output>
847
+ </operation>
848
+
849
+ <operation name="set_transparency_mode">
850
+ <documentation>
851
+ Sets the transparency modes for the specified VLAN groups.
852
+
853
+ </documentation>
854
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
855
+ <input>
856
+ <soap:body
857
+ use="encoded"
858
+ namespace="urn:iControl:Networking/VLANGroup"
859
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
860
+ </input>
861
+ <output>
862
+ <soap:body
863
+ use="encoded"
864
+ namespace="urn:iControl:Networking/VLANGroup"
865
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
866
+ </output>
867
+ </operation>
868
+
869
+ <operation name="get_transparency_mode">
870
+ <documentation>
871
+ Gets the transparency modes for the specified VLAN groups.
872
+
873
+ </documentation>
874
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
875
+ <input>
876
+ <soap:body
877
+ use="encoded"
878
+ namespace="urn:iControl:Networking/VLANGroup"
879
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
880
+ </input>
881
+ <output>
882
+ <soap:body
883
+ use="encoded"
884
+ namespace="urn:iControl:Networking/VLANGroup"
885
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
886
+ </output>
887
+ </operation>
888
+
889
+ <operation name="set_bridge_all_traffic_state">
890
+ <documentation>
891
+ Sets the states to indicate whether to bridge non-IP traffic as well as IP traffic
892
+ for the specified VLAN groups.
893
+
894
+ </documentation>
895
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
896
+ <input>
897
+ <soap:body
898
+ use="encoded"
899
+ namespace="urn:iControl:Networking/VLANGroup"
900
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
901
+ </input>
902
+ <output>
903
+ <soap:body
904
+ use="encoded"
905
+ namespace="urn:iControl:Networking/VLANGroup"
906
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
907
+ </output>
908
+ </operation>
909
+
910
+ <operation name="get_bridge_all_traffic_state">
911
+ <documentation>
912
+ Gets the states to indicate whether to bridge non-IP traffic as well as IP traffic
913
+ for the specified VLAN groups.
914
+
915
+ </documentation>
916
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
917
+ <input>
918
+ <soap:body
919
+ use="encoded"
920
+ namespace="urn:iControl:Networking/VLANGroup"
921
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
922
+ </input>
923
+ <output>
924
+ <soap:body
925
+ use="encoded"
926
+ namespace="urn:iControl:Networking/VLANGroup"
927
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
928
+ </output>
929
+ </operation>
930
+
931
+ <operation name="set_bridge_in_standby_state">
932
+ <documentation>
933
+ Sets the states to indicate whether to bridge while unit is in standby mode
934
+ for the specified VLAN groups.
935
+
936
+ </documentation>
937
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
938
+ <input>
939
+ <soap:body
940
+ use="encoded"
941
+ namespace="urn:iControl:Networking/VLANGroup"
942
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
943
+ </input>
944
+ <output>
945
+ <soap:body
946
+ use="encoded"
947
+ namespace="urn:iControl:Networking/VLANGroup"
948
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
949
+ </output>
950
+ </operation>
951
+
952
+ <operation name="get_bridge_in_standby_state">
953
+ <documentation>
954
+ Gets the states to indicate whether to bridge while unit is in standby mode
955
+ for the specified VLAN groups.
956
+
957
+ </documentation>
958
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
959
+ <input>
960
+ <soap:body
961
+ use="encoded"
962
+ namespace="urn:iControl:Networking/VLANGroup"
963
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
964
+ </input>
965
+ <output>
966
+ <soap:body
967
+ use="encoded"
968
+ namespace="urn:iControl:Networking/VLANGroup"
969
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
970
+ </output>
971
+ </operation>
972
+
973
+ <operation name="set_bridge_multicast_state">
974
+ <documentation>
975
+ Sets the states to indicate whether to bridge multicast/broadcast traffic
976
+ for the specified VLAN groups.
977
+
978
+ </documentation>
979
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
980
+ <input>
981
+ <soap:body
982
+ use="encoded"
983
+ namespace="urn:iControl:Networking/VLANGroup"
984
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
985
+ </input>
986
+ <output>
987
+ <soap:body
988
+ use="encoded"
989
+ namespace="urn:iControl:Networking/VLANGroup"
990
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
991
+ </output>
992
+ </operation>
993
+
994
+ <operation name="get_bridge_multicast_state">
995
+ <documentation>
996
+ Gets the states to indicate whether to bridge multicast/broadcast traffic
997
+ for the specified VLAN groups.
998
+
999
+ </documentation>
1000
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1001
+ <input>
1002
+ <soap:body
1003
+ use="encoded"
1004
+ namespace="urn:iControl:Networking/VLANGroup"
1005
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1006
+ </input>
1007
+ <output>
1008
+ <soap:body
1009
+ use="encoded"
1010
+ namespace="urn:iControl:Networking/VLANGroup"
1011
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1012
+ </output>
1013
+ </operation>
1014
+
1015
+ <operation name="set_mac_masquerade_address">
1016
+ <documentation>
1017
+ This function is deprecated. MAC masquerade address are now configured
1018
+ on traffic groups.
1019
+
1020
+ If there is only one floating traffic group in the system, this function will
1021
+ set the traffic group's MAC masquerade address to the last address in
1022
+ mac_masquerade_addresses and discard all other MAC addresses provided. If
1023
+ there is more than one floating traffic group, a Common::OperationFailed exception
1024
+ is raised.
1025
+
1026
+ </documentation>
1027
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1028
+ <input>
1029
+ <soap:body
1030
+ use="encoded"
1031
+ namespace="urn:iControl:Networking/VLANGroup"
1032
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1033
+ </input>
1034
+ <output>
1035
+ <soap:body
1036
+ use="encoded"
1037
+ namespace="urn:iControl:Networking/VLANGroup"
1038
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1039
+ </output>
1040
+ </operation>
1041
+
1042
+ <operation name="get_mac_masquerade_address">
1043
+ <documentation>
1044
+ This function is deprecated. MAC masquerade addresses are now configured
1045
+ on traffic groups.
1046
+
1047
+ </documentation>
1048
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1049
+ <input>
1050
+ <soap:body
1051
+ use="encoded"
1052
+ namespace="urn:iControl:Networking/VLANGroup"
1053
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1054
+ </input>
1055
+ <output>
1056
+ <soap:body
1057
+ use="encoded"
1058
+ namespace="urn:iControl:Networking/VLANGroup"
1059
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1060
+ </output>
1061
+ </operation>
1062
+
1063
+ <operation name="get_true_mac_address">
1064
+ <documentation>
1065
+ Gets the true MAC addresses used by the specified VLAN groups.
1066
+
1067
+ </documentation>
1068
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1069
+ <input>
1070
+ <soap:body
1071
+ use="encoded"
1072
+ namespace="urn:iControl:Networking/VLANGroup"
1073
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1074
+ </input>
1075
+ <output>
1076
+ <soap:body
1077
+ use="encoded"
1078
+ namespace="urn:iControl:Networking/VLANGroup"
1079
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1080
+ </output>
1081
+ </operation>
1082
+
1083
+ <operation name="get_member">
1084
+ <documentation>
1085
+ Gets the lists of children VLANs of the specified VLAN groups.
1086
+
1087
+ </documentation>
1088
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1089
+ <input>
1090
+ <soap:body
1091
+ use="encoded"
1092
+ namespace="urn:iControl:Networking/VLANGroup"
1093
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1094
+ </input>
1095
+ <output>
1096
+ <soap:body
1097
+ use="encoded"
1098
+ namespace="urn:iControl:Networking/VLANGroup"
1099
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1100
+ </output>
1101
+ </operation>
1102
+
1103
+ <operation name="add_member">
1104
+ <documentation>
1105
+ Adds the specified children VLANs to the specified VLAN groups.
1106
+
1107
+ </documentation>
1108
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1109
+ <input>
1110
+ <soap:body
1111
+ use="encoded"
1112
+ namespace="urn:iControl:Networking/VLANGroup"
1113
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1114
+ </input>
1115
+ <output>
1116
+ <soap:body
1117
+ use="encoded"
1118
+ namespace="urn:iControl:Networking/VLANGroup"
1119
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1120
+ </output>
1121
+ </operation>
1122
+
1123
+ <operation name="remove_member">
1124
+ <documentation>
1125
+ Removes the specified children VLANs from the specified VLAN groups.
1126
+
1127
+ </documentation>
1128
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1129
+ <input>
1130
+ <soap:body
1131
+ use="encoded"
1132
+ namespace="urn:iControl:Networking/VLANGroup"
1133
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1134
+ </input>
1135
+ <output>
1136
+ <soap:body
1137
+ use="encoded"
1138
+ namespace="urn:iControl:Networking/VLANGroup"
1139
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1140
+ </output>
1141
+ </operation>
1142
+
1143
+ <operation name="remove_all_members">
1144
+ <documentation>
1145
+ Removes all children VLANs from the specified VLAN groups.
1146
+
1147
+ </documentation>
1148
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1149
+ <input>
1150
+ <soap:body
1151
+ use="encoded"
1152
+ namespace="urn:iControl:Networking/VLANGroup"
1153
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1154
+ </input>
1155
+ <output>
1156
+ <soap:body
1157
+ use="encoded"
1158
+ namespace="urn:iControl:Networking/VLANGroup"
1159
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1160
+ </output>
1161
+ </operation>
1162
+
1163
+ <operation name="get_global_proxy_exclusion">
1164
+ <documentation>
1165
+ Gets the global lists of IP addresses that proxy ARP will ignore for all VLAN groups.
1166
+
1167
+ </documentation>
1168
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1169
+ <input>
1170
+ <soap:body
1171
+ use="encoded"
1172
+ namespace="urn:iControl:Networking/VLANGroup"
1173
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1174
+ </input>
1175
+ <output>
1176
+ <soap:body
1177
+ use="encoded"
1178
+ namespace="urn:iControl:Networking/VLANGroup"
1179
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1180
+ </output>
1181
+ </operation>
1182
+
1183
+ <operation name="add_global_proxy_exclusion">
1184
+ <documentation>
1185
+ Adds the specified IP addresses to the global proxy ARP exclusion list that applies to all VLAN groups.
1186
+
1187
+ </documentation>
1188
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1189
+ <input>
1190
+ <soap:body
1191
+ use="encoded"
1192
+ namespace="urn:iControl:Networking/VLANGroup"
1193
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1194
+ </input>
1195
+ <output>
1196
+ <soap:body
1197
+ use="encoded"
1198
+ namespace="urn:iControl:Networking/VLANGroup"
1199
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1200
+ </output>
1201
+ </operation>
1202
+
1203
+ <operation name="remove_global_proxy_exclusion">
1204
+ <documentation>
1205
+ Removes the specified IP addresses from the global proxy ARP exclusion list that applies to all VLAN groups.
1206
+
1207
+ </documentation>
1208
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1209
+ <input>
1210
+ <soap:body
1211
+ use="encoded"
1212
+ namespace="urn:iControl:Networking/VLANGroup"
1213
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1214
+ </input>
1215
+ <output>
1216
+ <soap:body
1217
+ use="encoded"
1218
+ namespace="urn:iControl:Networking/VLANGroup"
1219
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1220
+ </output>
1221
+ </operation>
1222
+
1223
+ <operation name="remove_all_global_proxy_exclusions">
1224
+ <documentation>
1225
+ Removes all IP addresses from the global proxy ARP exclusion list for all VLAN groups.
1226
+
1227
+ </documentation>
1228
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1229
+ <input>
1230
+ <soap:body
1231
+ use="encoded"
1232
+ namespace="urn:iControl:Networking/VLANGroup"
1233
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1234
+ </input>
1235
+ <output>
1236
+ <soap:body
1237
+ use="encoded"
1238
+ namespace="urn:iControl:Networking/VLANGroup"
1239
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1240
+ </output>
1241
+ </operation>
1242
+
1243
+ <operation name="get_proxy_exclusion">
1244
+ <documentation>
1245
+ Gets the lists of IP addresses that proxy ARP will ignore for the specified VLAN groups.
1246
+
1247
+ </documentation>
1248
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1249
+ <input>
1250
+ <soap:body
1251
+ use="encoded"
1252
+ namespace="urn:iControl:Networking/VLANGroup"
1253
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1254
+ </input>
1255
+ <output>
1256
+ <soap:body
1257
+ use="encoded"
1258
+ namespace="urn:iControl:Networking/VLANGroup"
1259
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1260
+ </output>
1261
+ </operation>
1262
+
1263
+ <operation name="add_proxy_exclusion">
1264
+ <documentation>
1265
+ Adds the specified IP addresses to the proxy ARP exclusion lists of the specified VLAN groups.
1266
+
1267
+ </documentation>
1268
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1269
+ <input>
1270
+ <soap:body
1271
+ use="encoded"
1272
+ namespace="urn:iControl:Networking/VLANGroup"
1273
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1274
+ </input>
1275
+ <output>
1276
+ <soap:body
1277
+ use="encoded"
1278
+ namespace="urn:iControl:Networking/VLANGroup"
1279
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1280
+ </output>
1281
+ </operation>
1282
+
1283
+ <operation name="remove_proxy_exclusion">
1284
+ <documentation>
1285
+ Removes the specified IP addresses from the proxy ARP exclusion lists of the specified VLAN groups.
1286
+
1287
+ </documentation>
1288
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1289
+ <input>
1290
+ <soap:body
1291
+ use="encoded"
1292
+ namespace="urn:iControl:Networking/VLANGroup"
1293
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1294
+ </input>
1295
+ <output>
1296
+ <soap:body
1297
+ use="encoded"
1298
+ namespace="urn:iControl:Networking/VLANGroup"
1299
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1300
+ </output>
1301
+ </operation>
1302
+
1303
+ <operation name="remove_all_proxy_exclusions">
1304
+ <documentation>
1305
+ Removes all IP addresses from the proxy ARP exclusion lists of the specified VLAN groups.
1306
+
1307
+ </documentation>
1308
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1309
+ <input>
1310
+ <soap:body
1311
+ use="encoded"
1312
+ namespace="urn:iControl:Networking/VLANGroup"
1313
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1314
+ </input>
1315
+ <output>
1316
+ <soap:body
1317
+ use="encoded"
1318
+ namespace="urn:iControl:Networking/VLANGroup"
1319
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1320
+ </output>
1321
+ </operation>
1322
+
1323
+ <operation name="set_auto_lasthop">
1324
+ <documentation>
1325
+ Sets the attribute that specifies auto-lasthop behavior,
1326
+ for the specified VLAN groups.
1327
+ This controls how the system routes return traffic.
1328
+ The default is AUTO_LASTHOP_DEFAULT.
1329
+
1330
+ </documentation>
1331
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1332
+ <input>
1333
+ <soap:body
1334
+ use="encoded"
1335
+ namespace="urn:iControl:Networking/VLANGroup"
1336
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1337
+ </input>
1338
+ <output>
1339
+ <soap:body
1340
+ use="encoded"
1341
+ namespace="urn:iControl:Networking/VLANGroup"
1342
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1343
+ </output>
1344
+ </operation>
1345
+
1346
+ <operation name="get_auto_lasthop">
1347
+ <documentation>
1348
+ Gets the attribute that specifies auto-lasthop behavior,
1349
+ for the specified VLAN groups.
1350
+
1351
+ </documentation>
1352
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1353
+ <input>
1354
+ <soap:body
1355
+ use="encoded"
1356
+ namespace="urn:iControl:Networking/VLANGroup"
1357
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1358
+ </input>
1359
+ <output>
1360
+ <soap:body
1361
+ use="encoded"
1362
+ namespace="urn:iControl:Networking/VLANGroup"
1363
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1364
+ </output>
1365
+ </operation>
1366
+
1367
+ <operation name="set_description">
1368
+ <documentation>
1369
+ Sets the description for a set of VLAN groups.
1370
+
1371
+ This is an arbitrary field which can be used for any purpose.
1372
+
1373
+ </documentation>
1374
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1375
+ <input>
1376
+ <soap:body
1377
+ use="encoded"
1378
+ namespace="urn:iControl:Networking/VLANGroup"
1379
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1380
+ </input>
1381
+ <output>
1382
+ <soap:body
1383
+ use="encoded"
1384
+ namespace="urn:iControl:Networking/VLANGroup"
1385
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1386
+ </output>
1387
+ </operation>
1388
+
1389
+ <operation name="get_description">
1390
+ <documentation>
1391
+ Gets the descriptions for a set of VLAN groups.
1392
+
1393
+ </documentation>
1394
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1395
+ <input>
1396
+ <soap:body
1397
+ use="encoded"
1398
+ namespace="urn:iControl:Networking/VLANGroup"
1399
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1400
+ </input>
1401
+ <output>
1402
+ <soap:body
1403
+ use="encoded"
1404
+ namespace="urn:iControl:Networking/VLANGroup"
1405
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1406
+ </output>
1407
+ </operation>
1408
+
1409
+ <operation name="get_version">
1410
+ <documentation>
1411
+ Gets the version information for this interface.
1412
+
1413
+ </documentation>
1414
+ <soap:operation soapAction="urn:iControl:Networking/VLANGroup"/>
1415
+ <input>
1416
+ <soap:body
1417
+ use="encoded"
1418
+ namespace="urn:iControl:Networking/VLANGroup"
1419
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1420
+ </input>
1421
+ <output>
1422
+ <soap:body
1423
+ use="encoded"
1424
+ namespace="urn:iControl:Networking/VLANGroup"
1425
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1426
+ </output>
1427
+ </operation>
1428
+ </binding>
1429
+
1430
+ <!-- service -->
1431
+
1432
+ <service name="Networking.VLANGroup">
1433
+ <documentation>
1434
+ The VLANGroup interface enables you to work with the definitions and attributes contained in a device's VLAN group.
1435
+
1436
+ </documentation>
1437
+ <port name="Networking.VLANGroupPort" binding="tns:Networking.VLANGroupBinding">
1438
+ <soap:address location="https://url_to_service"/>
1439
+ </port>
1440
+ </service>
1441
+ </definitions>