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,1067 @@
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.RouterAdvertisement"
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:complexType name="Common.StringSequence">
39
+ <xsd:complexContent>
40
+ <xsd:restriction base='SOAP-ENC:Array'>
41
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
42
+ </xsd:restriction>
43
+ </xsd:complexContent>
44
+ </xsd:complexType>
45
+ <xsd:complexType name="Common.ULongSequence">
46
+ <xsd:complexContent>
47
+ <xsd:restriction base='SOAP-ENC:Array'>
48
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
49
+ </xsd:restriction>
50
+ </xsd:complexContent>
51
+ </xsd:complexType>
52
+ <xsd:complexType name="Common.EnabledStateSequence">
53
+ <xsd:complexContent>
54
+ <xsd:restriction base='SOAP-ENC:Array'>
55
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
56
+ </xsd:restriction>
57
+ </xsd:complexContent>
58
+ </xsd:complexType>
59
+ </xsd:schema>
60
+ </types>
61
+
62
+ <!-- message -->
63
+
64
+ <message name="Networking.RouterAdvertisement.get_listRequest">
65
+ </message>
66
+ <message name="Networking.RouterAdvertisement.get_listResponse">
67
+ <part name="return" type="tns:Common.StringSequence"/>
68
+ </message>
69
+
70
+ <message name="Networking.RouterAdvertisement.createRequest">
71
+ <part name="ras" type="tns:Common.StringSequence"/>
72
+ <part name="vlans" type="tns:Common.StringSequence"/>
73
+ </message>
74
+ <message name="Networking.RouterAdvertisement.createResponse">
75
+ </message>
76
+
77
+ <message name="Networking.RouterAdvertisement.delete_router_advertisementRequest">
78
+ <part name="ras" type="tns:Common.StringSequence"/>
79
+ </message>
80
+ <message name="Networking.RouterAdvertisement.delete_router_advertisementResponse">
81
+ </message>
82
+
83
+ <message name="Networking.RouterAdvertisement.delete_all_router_advertisementsRequest">
84
+ </message>
85
+ <message name="Networking.RouterAdvertisement.delete_all_router_advertisementsResponse">
86
+ </message>
87
+
88
+ <message name="Networking.RouterAdvertisement.set_vlanRequest">
89
+ <part name="ras" type="tns:Common.StringSequence"/>
90
+ <part name="vlans" type="tns:Common.StringSequence"/>
91
+ </message>
92
+ <message name="Networking.RouterAdvertisement.set_vlanResponse">
93
+ </message>
94
+
95
+ <message name="Networking.RouterAdvertisement.get_vlanRequest">
96
+ <part name="ras" type="tns:Common.StringSequence"/>
97
+ </message>
98
+ <message name="Networking.RouterAdvertisement.get_vlanResponse">
99
+ <part name="return" type="tns:Common.StringSequence"/>
100
+ </message>
101
+
102
+ <message name="Networking.RouterAdvertisement.set_enabled_stateRequest">
103
+ <part name="ras" type="tns:Common.StringSequence"/>
104
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
105
+ </message>
106
+ <message name="Networking.RouterAdvertisement.set_enabled_stateResponse">
107
+ </message>
108
+
109
+ <message name="Networking.RouterAdvertisement.get_enabled_stateRequest">
110
+ <part name="ras" type="tns:Common.StringSequence"/>
111
+ </message>
112
+ <message name="Networking.RouterAdvertisement.get_enabled_stateResponse">
113
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
114
+ </message>
115
+
116
+ <message name="Networking.RouterAdvertisement.set_maximum_intervalRequest">
117
+ <part name="ras" type="tns:Common.StringSequence"/>
118
+ <part name="intervals" type="tns:Common.ULongSequence"/>
119
+ </message>
120
+ <message name="Networking.RouterAdvertisement.set_maximum_intervalResponse">
121
+ </message>
122
+
123
+ <message name="Networking.RouterAdvertisement.get_maximum_intervalRequest">
124
+ <part name="ras" type="tns:Common.StringSequence"/>
125
+ </message>
126
+ <message name="Networking.RouterAdvertisement.get_maximum_intervalResponse">
127
+ <part name="return" type="tns:Common.ULongSequence"/>
128
+ </message>
129
+
130
+ <message name="Networking.RouterAdvertisement.set_minimum_intervalRequest">
131
+ <part name="ras" type="tns:Common.StringSequence"/>
132
+ <part name="intervals" type="tns:Common.ULongSequence"/>
133
+ </message>
134
+ <message name="Networking.RouterAdvertisement.set_minimum_intervalResponse">
135
+ </message>
136
+
137
+ <message name="Networking.RouterAdvertisement.get_minimum_intervalRequest">
138
+ <part name="ras" type="tns:Common.StringSequence"/>
139
+ </message>
140
+ <message name="Networking.RouterAdvertisement.get_minimum_intervalResponse">
141
+ <part name="return" type="tns:Common.ULongSequence"/>
142
+ </message>
143
+
144
+ <message name="Networking.RouterAdvertisement.set_managed_flag_stateRequest">
145
+ <part name="ras" type="tns:Common.StringSequence"/>
146
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
147
+ </message>
148
+ <message name="Networking.RouterAdvertisement.set_managed_flag_stateResponse">
149
+ </message>
150
+
151
+ <message name="Networking.RouterAdvertisement.get_managed_flag_stateRequest">
152
+ <part name="ras" type="tns:Common.StringSequence"/>
153
+ </message>
154
+ <message name="Networking.RouterAdvertisement.get_managed_flag_stateResponse">
155
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
156
+ </message>
157
+
158
+ <message name="Networking.RouterAdvertisement.set_other_configuration_flag_stateRequest">
159
+ <part name="ras" type="tns:Common.StringSequence"/>
160
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
161
+ </message>
162
+ <message name="Networking.RouterAdvertisement.set_other_configuration_flag_stateResponse">
163
+ </message>
164
+
165
+ <message name="Networking.RouterAdvertisement.get_other_configuration_flag_stateRequest">
166
+ <part name="ras" type="tns:Common.StringSequence"/>
167
+ </message>
168
+ <message name="Networking.RouterAdvertisement.get_other_configuration_flag_stateResponse">
169
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
170
+ </message>
171
+
172
+ <message name="Networking.RouterAdvertisement.set_retransmit_timeRequest">
173
+ <part name="ras" type="tns:Common.StringSequence"/>
174
+ <part name="times" type="tns:Common.ULongSequence"/>
175
+ </message>
176
+ <message name="Networking.RouterAdvertisement.set_retransmit_timeResponse">
177
+ </message>
178
+
179
+ <message name="Networking.RouterAdvertisement.get_retransmit_timeRequest">
180
+ <part name="ras" type="tns:Common.StringSequence"/>
181
+ </message>
182
+ <message name="Networking.RouterAdvertisement.get_retransmit_timeResponse">
183
+ <part name="return" type="tns:Common.ULongSequence"/>
184
+ </message>
185
+
186
+ <message name="Networking.RouterAdvertisement.set_mtuRequest">
187
+ <part name="ras" type="tns:Common.StringSequence"/>
188
+ <part name="mtus" type="tns:Common.ULongSequence"/>
189
+ </message>
190
+ <message name="Networking.RouterAdvertisement.set_mtuResponse">
191
+ </message>
192
+
193
+ <message name="Networking.RouterAdvertisement.get_mtuRequest">
194
+ <part name="ras" type="tns:Common.StringSequence"/>
195
+ </message>
196
+ <message name="Networking.RouterAdvertisement.get_mtuResponse">
197
+ <part name="return" type="tns:Common.ULongSequence"/>
198
+ </message>
199
+
200
+ <message name="Networking.RouterAdvertisement.set_maximum_hopRequest">
201
+ <part name="ras" type="tns:Common.StringSequence"/>
202
+ <part name="values" type="tns:Common.ULongSequence"/>
203
+ </message>
204
+ <message name="Networking.RouterAdvertisement.set_maximum_hopResponse">
205
+ </message>
206
+
207
+ <message name="Networking.RouterAdvertisement.get_maximum_hopRequest">
208
+ <part name="ras" type="tns:Common.StringSequence"/>
209
+ </message>
210
+ <message name="Networking.RouterAdvertisement.get_maximum_hopResponse">
211
+ <part name="return" type="tns:Common.ULongSequence"/>
212
+ </message>
213
+
214
+ <message name="Networking.RouterAdvertisement.set_router_lifetimeRequest">
215
+ <part name="ras" type="tns:Common.StringSequence"/>
216
+ <part name="lifetimes" type="tns:Common.ULongSequence"/>
217
+ </message>
218
+ <message name="Networking.RouterAdvertisement.set_router_lifetimeResponse">
219
+ </message>
220
+
221
+ <message name="Networking.RouterAdvertisement.get_router_lifetimeRequest">
222
+ <part name="ras" type="tns:Common.StringSequence"/>
223
+ </message>
224
+ <message name="Networking.RouterAdvertisement.get_router_lifetimeResponse">
225
+ <part name="return" type="tns:Common.ULongSequence"/>
226
+ </message>
227
+
228
+ <message name="Networking.RouterAdvertisement.set_reachable_timeRequest">
229
+ <part name="ras" type="tns:Common.StringSequence"/>
230
+ <part name="times" type="tns:Common.ULongSequence"/>
231
+ </message>
232
+ <message name="Networking.RouterAdvertisement.set_reachable_timeResponse">
233
+ </message>
234
+
235
+ <message name="Networking.RouterAdvertisement.get_reachable_timeRequest">
236
+ <part name="ras" type="tns:Common.StringSequence"/>
237
+ </message>
238
+ <message name="Networking.RouterAdvertisement.get_reachable_timeResponse">
239
+ <part name="return" type="tns:Common.ULongSequence"/>
240
+ </message>
241
+
242
+ <message name="Networking.RouterAdvertisement.get_versionRequest">
243
+ </message>
244
+ <message name="Networking.RouterAdvertisement.get_versionResponse">
245
+ <part name="return" type="xsd:string"/>
246
+ </message>
247
+
248
+ <!-- portType -->
249
+
250
+ <portType name="Networking.RouterAdvertisementPortType">
251
+ <operation name="get_list">
252
+ <documentation>
253
+ Gets a list of all Router Advertisements on this device.
254
+
255
+ </documentation>
256
+ <input message="tns:Networking.RouterAdvertisement.get_listRequest"/>
257
+ <output message="tns:Networking.RouterAdvertisement.get_listResponse"/>
258
+ </operation>
259
+ <operation name="create">
260
+ <documentation>
261
+ Creates the specified Router Advertisements with specified attributes.
262
+
263
+ </documentation>
264
+ <input message="tns:Networking.RouterAdvertisement.createRequest"/>
265
+ <output message="tns:Networking.RouterAdvertisement.createResponse"/>
266
+ </operation>
267
+ <operation name="delete_router_advertisement">
268
+ <documentation>
269
+ Deletes the specified Router Advertisements.
270
+
271
+ </documentation>
272
+ <input message="tns:Networking.RouterAdvertisement.delete_router_advertisementRequest"/>
273
+ <output message="tns:Networking.RouterAdvertisement.delete_router_advertisementResponse"/>
274
+ </operation>
275
+ <operation name="delete_all_router_advertisements">
276
+ <documentation>
277
+ Deletes all Router Advertisements.
278
+
279
+ </documentation>
280
+ <input message="tns:Networking.RouterAdvertisement.delete_all_router_advertisementsRequest"/>
281
+ <output message="tns:Networking.RouterAdvertisement.delete_all_router_advertisementsResponse"/>
282
+ </operation>
283
+ <operation name="set_vlan">
284
+ <documentation>
285
+ Sets the VLANs with which the specified Router Advertisements are associated.
286
+
287
+ </documentation>
288
+ <input message="tns:Networking.RouterAdvertisement.set_vlanRequest"/>
289
+ <output message="tns:Networking.RouterAdvertisement.set_vlanResponse"/>
290
+ </operation>
291
+ <operation name="get_vlan">
292
+ <documentation>
293
+ Gets the VLANs with which the specified Router Advertisements are associated.
294
+
295
+ </documentation>
296
+ <input message="tns:Networking.RouterAdvertisement.get_vlanRequest"/>
297
+ <output message="tns:Networking.RouterAdvertisement.get_vlanResponse"/>
298
+ </operation>
299
+ <operation name="set_enabled_state">
300
+ <documentation>
301
+ Sets the enabled state for the specified Router Advertisements. Enabled Router Advertisements
302
+ will advertise on their associated VLANs.
303
+
304
+ </documentation>
305
+ <input message="tns:Networking.RouterAdvertisement.set_enabled_stateRequest"/>
306
+ <output message="tns:Networking.RouterAdvertisement.set_enabled_stateResponse"/>
307
+ </operation>
308
+ <operation name="get_enabled_state">
309
+ <documentation>
310
+ Gets the enabled state for the specified Router Advertisements.
311
+
312
+ </documentation>
313
+ <input message="tns:Networking.RouterAdvertisement.get_enabled_stateRequest"/>
314
+ <output message="tns:Networking.RouterAdvertisement.get_enabled_stateResponse"/>
315
+ </operation>
316
+ <operation name="set_maximum_interval">
317
+ <documentation>
318
+ Sets the maximum interval for the specified Router Advertisements. The maximum interval is
319
+ the maximum amount of time allowed between sending unsolicited multicast router
320
+ advertisements from the specified interface, in seconds.
321
+ Must have a value greater than the minimum interval and must be between 4 and 1800.
322
+
323
+ </documentation>
324
+ <input message="tns:Networking.RouterAdvertisement.set_maximum_intervalRequest"/>
325
+ <output message="tns:Networking.RouterAdvertisement.set_maximum_intervalResponse"/>
326
+ </operation>
327
+ <operation name="get_maximum_interval">
328
+ <documentation>
329
+ Gets the maximum interval for the specified Router Advertisements.
330
+
331
+ </documentation>
332
+ <input message="tns:Networking.RouterAdvertisement.get_maximum_intervalRequest"/>
333
+ <output message="tns:Networking.RouterAdvertisement.get_maximum_intervalResponse"/>
334
+ </operation>
335
+ <operation name="set_minimum_interval">
336
+ <documentation>
337
+ Sets the minimum interval for the specified Router Advertisements. The minimum interval is
338
+ the minimum amount of time allowed between sending unsolicited multicast router
339
+ advertisements from the specified interface, in seconds.
340
+ Must have a value between 3 and the maximum interval.
341
+
342
+ </documentation>
343
+ <input message="tns:Networking.RouterAdvertisement.set_minimum_intervalRequest"/>
344
+ <output message="tns:Networking.RouterAdvertisement.set_minimum_intervalResponse"/>
345
+ </operation>
346
+ <operation name="get_minimum_interval">
347
+ <documentation>
348
+ Gets the minimum interval for the specified Router Advertisements.
349
+
350
+ </documentation>
351
+ <input message="tns:Networking.RouterAdvertisement.get_minimum_intervalRequest"/>
352
+ <output message="tns:Networking.RouterAdvertisement.get_minimum_intervalResponse"/>
353
+ </operation>
354
+ <operation name="set_managed_flag_state">
355
+ <documentation>
356
+ Sets the managed flag state for the specified Router Advertisements. The "Managed address configuration" flag
357
+ indicates that addresses are available via DHCPv6.
358
+
359
+ </documentation>
360
+ <input message="tns:Networking.RouterAdvertisement.set_managed_flag_stateRequest"/>
361
+ <output message="tns:Networking.RouterAdvertisement.set_managed_flag_stateResponse"/>
362
+ </operation>
363
+ <operation name="get_managed_flag_state">
364
+ <documentation>
365
+ Gets the managed flag state for the specified Router Advertisements.
366
+
367
+ </documentation>
368
+ <input message="tns:Networking.RouterAdvertisement.get_managed_flag_stateRequest"/>
369
+ <output message="tns:Networking.RouterAdvertisement.get_managed_flag_stateResponse"/>
370
+ </operation>
371
+ <operation name="set_other_configuration_flag_state">
372
+ <documentation>
373
+ Sets the other-configuration flag state for the specified Router Advertisements. The "other configuration"
374
+ flag indicates that other configuration information is available via DHCPv6. Examples of such
375
+ information are DNS-related information or information on other servers within the network.
376
+
377
+ </documentation>
378
+ <input message="tns:Networking.RouterAdvertisement.set_other_configuration_flag_stateRequest"/>
379
+ <output message="tns:Networking.RouterAdvertisement.set_other_configuration_flag_stateResponse"/>
380
+ </operation>
381
+ <operation name="get_other_configuration_flag_state">
382
+ <documentation>
383
+ Gets the other-configuration flag state for the specified Router Advertisements.
384
+
385
+ </documentation>
386
+ <input message="tns:Networking.RouterAdvertisement.get_other_configuration_flag_stateRequest"/>
387
+ <output message="tns:Networking.RouterAdvertisement.get_other_configuration_flag_stateResponse"/>
388
+ </operation>
389
+ <operation name="set_retransmit_time">
390
+ <documentation>
391
+ Sets the retransmit time for the specified Router Advertisements. This value is the time, in
392
+ milliseconds, between retransmitted Neighbor Solicitation messages. A value of zero
393
+ means unspecified (by this router).
394
+
395
+ </documentation>
396
+ <input message="tns:Networking.RouterAdvertisement.set_retransmit_timeRequest"/>
397
+ <output message="tns:Networking.RouterAdvertisement.set_retransmit_timeResponse"/>
398
+ </operation>
399
+ <operation name="get_retransmit_time">
400
+ <documentation>
401
+ Gets the retransmit time for the specified Router Advertisements.
402
+
403
+ </documentation>
404
+ <input message="tns:Networking.RouterAdvertisement.get_retransmit_timeRequest"/>
405
+ <output message="tns:Networking.RouterAdvertisement.get_retransmit_timeResponse"/>
406
+ </operation>
407
+ <operation name="set_mtu">
408
+ <documentation>
409
+ Sets the MTU for the specified Router Advertisements. The MTU or maximum transmission unit,
410
+ should be adjusted to match the MTU on links that have a variable MTU.
411
+
412
+ </documentation>
413
+ <input message="tns:Networking.RouterAdvertisement.set_mtuRequest"/>
414
+ <output message="tns:Networking.RouterAdvertisement.set_mtuResponse"/>
415
+ </operation>
416
+ <operation name="get_mtu">
417
+ <documentation>
418
+ Gets the MTU for the specified Router Advertisements.
419
+
420
+ </documentation>
421
+ <input message="tns:Networking.RouterAdvertisement.get_mtuRequest"/>
422
+ <output message="tns:Networking.RouterAdvertisement.get_mtuResponse"/>
423
+ </operation>
424
+ <operation name="set_maximum_hop">
425
+ <documentation>
426
+ Sets the maximum hops a Router Advertisement packet may travel before it is discarded.
427
+ A value of zero means unspecified (by this router). Has a maximum value of 255.
428
+
429
+ </documentation>
430
+ <input message="tns:Networking.RouterAdvertisement.set_maximum_hopRequest"/>
431
+ <output message="tns:Networking.RouterAdvertisement.set_maximum_hopResponse"/>
432
+ </operation>
433
+ <operation name="get_maximum_hop">
434
+ <documentation>
435
+ Gets the maximum hops for the specified Router Advertisements.
436
+
437
+ </documentation>
438
+ <input message="tns:Networking.RouterAdvertisement.get_maximum_hopRequest"/>
439
+ <output message="tns:Networking.RouterAdvertisement.get_maximum_hopResponse"/>
440
+ </operation>
441
+ <operation name="set_router_lifetime">
442
+ <documentation>
443
+ Sets the router lifetime for the specified Router Advertisements. The router lifetime is
444
+ the lifetime associated with the default router in seconds. A
445
+ lifetime of zero indicates that the router is not a default router.
446
+ Must be a value between the maximum interval and 9000.
447
+
448
+ </documentation>
449
+ <input message="tns:Networking.RouterAdvertisement.set_router_lifetimeRequest"/>
450
+ <output message="tns:Networking.RouterAdvertisement.set_router_lifetimeResponse"/>
451
+ </operation>
452
+ <operation name="get_router_lifetime">
453
+ <documentation>
454
+ Gets the router lifetime for the specified Router Advertisements.
455
+
456
+ </documentation>
457
+ <input message="tns:Networking.RouterAdvertisement.get_router_lifetimeRequest"/>
458
+ <output message="tns:Networking.RouterAdvertisement.get_router_lifetimeResponse"/>
459
+ </operation>
460
+ <operation name="set_reachable_time">
461
+ <documentation>
462
+ Sets the reachable time for the specified Router Advertisements. This is the time, in milliseconds,
463
+ that a node assumes a neighbor is reachable after having recieved a reachablity
464
+ confirmation. A value of zero means unspecified (by this router).
465
+ Has a maximum value of 3600000.
466
+
467
+ </documentation>
468
+ <input message="tns:Networking.RouterAdvertisement.set_reachable_timeRequest"/>
469
+ <output message="tns:Networking.RouterAdvertisement.set_reachable_timeResponse"/>
470
+ </operation>
471
+ <operation name="get_reachable_time">
472
+ <documentation>
473
+ Gets the reachable time for the specified Router Advertisements.
474
+
475
+ </documentation>
476
+ <input message="tns:Networking.RouterAdvertisement.get_reachable_timeRequest"/>
477
+ <output message="tns:Networking.RouterAdvertisement.get_reachable_timeResponse"/>
478
+ </operation>
479
+ <operation name="get_version">
480
+ <documentation>
481
+ Gets the version information for this interface.
482
+
483
+ </documentation>
484
+ <input message="tns:Networking.RouterAdvertisement.get_versionRequest"/>
485
+ <output message="tns:Networking.RouterAdvertisement.get_versionResponse"/>
486
+ </operation>
487
+ </portType>
488
+
489
+ <!-- binding -->
490
+
491
+ <binding name="Networking.RouterAdvertisementBinding" type="tns:Networking.RouterAdvertisementPortType">
492
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
493
+ <operation name="get_list">
494
+ <documentation>
495
+ Gets a list of all Router Advertisements on this device.
496
+
497
+ </documentation>
498
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
499
+ <input>
500
+ <soap:body
501
+ use="encoded"
502
+ namespace="urn:iControl:Networking/RouterAdvertisement"
503
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
504
+ </input>
505
+ <output>
506
+ <soap:body
507
+ use="encoded"
508
+ namespace="urn:iControl:Networking/RouterAdvertisement"
509
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
510
+ </output>
511
+ </operation>
512
+
513
+ <operation name="create">
514
+ <documentation>
515
+ Creates the specified Router Advertisements with specified attributes.
516
+
517
+ </documentation>
518
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
519
+ <input>
520
+ <soap:body
521
+ use="encoded"
522
+ namespace="urn:iControl:Networking/RouterAdvertisement"
523
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
524
+ </input>
525
+ <output>
526
+ <soap:body
527
+ use="encoded"
528
+ namespace="urn:iControl:Networking/RouterAdvertisement"
529
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
530
+ </output>
531
+ </operation>
532
+
533
+ <operation name="delete_router_advertisement">
534
+ <documentation>
535
+ Deletes the specified Router Advertisements.
536
+
537
+ </documentation>
538
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
539
+ <input>
540
+ <soap:body
541
+ use="encoded"
542
+ namespace="urn:iControl:Networking/RouterAdvertisement"
543
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
544
+ </input>
545
+ <output>
546
+ <soap:body
547
+ use="encoded"
548
+ namespace="urn:iControl:Networking/RouterAdvertisement"
549
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
550
+ </output>
551
+ </operation>
552
+
553
+ <operation name="delete_all_router_advertisements">
554
+ <documentation>
555
+ Deletes all Router Advertisements.
556
+
557
+ </documentation>
558
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
559
+ <input>
560
+ <soap:body
561
+ use="encoded"
562
+ namespace="urn:iControl:Networking/RouterAdvertisement"
563
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
564
+ </input>
565
+ <output>
566
+ <soap:body
567
+ use="encoded"
568
+ namespace="urn:iControl:Networking/RouterAdvertisement"
569
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
570
+ </output>
571
+ </operation>
572
+
573
+ <operation name="set_vlan">
574
+ <documentation>
575
+ Sets the VLANs with which the specified Router Advertisements are associated.
576
+
577
+ </documentation>
578
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
579
+ <input>
580
+ <soap:body
581
+ use="encoded"
582
+ namespace="urn:iControl:Networking/RouterAdvertisement"
583
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
584
+ </input>
585
+ <output>
586
+ <soap:body
587
+ use="encoded"
588
+ namespace="urn:iControl:Networking/RouterAdvertisement"
589
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
590
+ </output>
591
+ </operation>
592
+
593
+ <operation name="get_vlan">
594
+ <documentation>
595
+ Gets the VLANs with which the specified Router Advertisements are associated.
596
+
597
+ </documentation>
598
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
599
+ <input>
600
+ <soap:body
601
+ use="encoded"
602
+ namespace="urn:iControl:Networking/RouterAdvertisement"
603
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
604
+ </input>
605
+ <output>
606
+ <soap:body
607
+ use="encoded"
608
+ namespace="urn:iControl:Networking/RouterAdvertisement"
609
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
610
+ </output>
611
+ </operation>
612
+
613
+ <operation name="set_enabled_state">
614
+ <documentation>
615
+ Sets the enabled state for the specified Router Advertisements. Enabled Router Advertisements
616
+ will advertise on their associated VLANs.
617
+
618
+ </documentation>
619
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
620
+ <input>
621
+ <soap:body
622
+ use="encoded"
623
+ namespace="urn:iControl:Networking/RouterAdvertisement"
624
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
625
+ </input>
626
+ <output>
627
+ <soap:body
628
+ use="encoded"
629
+ namespace="urn:iControl:Networking/RouterAdvertisement"
630
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
631
+ </output>
632
+ </operation>
633
+
634
+ <operation name="get_enabled_state">
635
+ <documentation>
636
+ Gets the enabled state for the specified Router Advertisements.
637
+
638
+ </documentation>
639
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
640
+ <input>
641
+ <soap:body
642
+ use="encoded"
643
+ namespace="urn:iControl:Networking/RouterAdvertisement"
644
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
645
+ </input>
646
+ <output>
647
+ <soap:body
648
+ use="encoded"
649
+ namespace="urn:iControl:Networking/RouterAdvertisement"
650
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
651
+ </output>
652
+ </operation>
653
+
654
+ <operation name="set_maximum_interval">
655
+ <documentation>
656
+ Sets the maximum interval for the specified Router Advertisements. The maximum interval is
657
+ the maximum amount of time allowed between sending unsolicited multicast router
658
+ advertisements from the specified interface, in seconds.
659
+ Must have a value greater than the minimum interval and must be between 4 and 1800.
660
+
661
+ </documentation>
662
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
663
+ <input>
664
+ <soap:body
665
+ use="encoded"
666
+ namespace="urn:iControl:Networking/RouterAdvertisement"
667
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
668
+ </input>
669
+ <output>
670
+ <soap:body
671
+ use="encoded"
672
+ namespace="urn:iControl:Networking/RouterAdvertisement"
673
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
674
+ </output>
675
+ </operation>
676
+
677
+ <operation name="get_maximum_interval">
678
+ <documentation>
679
+ Gets the maximum interval for the specified Router Advertisements.
680
+
681
+ </documentation>
682
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
683
+ <input>
684
+ <soap:body
685
+ use="encoded"
686
+ namespace="urn:iControl:Networking/RouterAdvertisement"
687
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
688
+ </input>
689
+ <output>
690
+ <soap:body
691
+ use="encoded"
692
+ namespace="urn:iControl:Networking/RouterAdvertisement"
693
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
694
+ </output>
695
+ </operation>
696
+
697
+ <operation name="set_minimum_interval">
698
+ <documentation>
699
+ Sets the minimum interval for the specified Router Advertisements. The minimum interval is
700
+ the minimum amount of time allowed between sending unsolicited multicast router
701
+ advertisements from the specified interface, in seconds.
702
+ Must have a value between 3 and the maximum interval.
703
+
704
+ </documentation>
705
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
706
+ <input>
707
+ <soap:body
708
+ use="encoded"
709
+ namespace="urn:iControl:Networking/RouterAdvertisement"
710
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
711
+ </input>
712
+ <output>
713
+ <soap:body
714
+ use="encoded"
715
+ namespace="urn:iControl:Networking/RouterAdvertisement"
716
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
717
+ </output>
718
+ </operation>
719
+
720
+ <operation name="get_minimum_interval">
721
+ <documentation>
722
+ Gets the minimum interval for the specified Router Advertisements.
723
+
724
+ </documentation>
725
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
726
+ <input>
727
+ <soap:body
728
+ use="encoded"
729
+ namespace="urn:iControl:Networking/RouterAdvertisement"
730
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
731
+ </input>
732
+ <output>
733
+ <soap:body
734
+ use="encoded"
735
+ namespace="urn:iControl:Networking/RouterAdvertisement"
736
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
737
+ </output>
738
+ </operation>
739
+
740
+ <operation name="set_managed_flag_state">
741
+ <documentation>
742
+ Sets the managed flag state for the specified Router Advertisements. The "Managed address configuration" flag
743
+ indicates that addresses are available via DHCPv6.
744
+
745
+ </documentation>
746
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
747
+ <input>
748
+ <soap:body
749
+ use="encoded"
750
+ namespace="urn:iControl:Networking/RouterAdvertisement"
751
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
752
+ </input>
753
+ <output>
754
+ <soap:body
755
+ use="encoded"
756
+ namespace="urn:iControl:Networking/RouterAdvertisement"
757
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
758
+ </output>
759
+ </operation>
760
+
761
+ <operation name="get_managed_flag_state">
762
+ <documentation>
763
+ Gets the managed flag state for the specified Router Advertisements.
764
+
765
+ </documentation>
766
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
767
+ <input>
768
+ <soap:body
769
+ use="encoded"
770
+ namespace="urn:iControl:Networking/RouterAdvertisement"
771
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
772
+ </input>
773
+ <output>
774
+ <soap:body
775
+ use="encoded"
776
+ namespace="urn:iControl:Networking/RouterAdvertisement"
777
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
778
+ </output>
779
+ </operation>
780
+
781
+ <operation name="set_other_configuration_flag_state">
782
+ <documentation>
783
+ Sets the other-configuration flag state for the specified Router Advertisements. The "other configuration"
784
+ flag indicates that other configuration information is available via DHCPv6. Examples of such
785
+ information are DNS-related information or information on other servers within the network.
786
+
787
+ </documentation>
788
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
789
+ <input>
790
+ <soap:body
791
+ use="encoded"
792
+ namespace="urn:iControl:Networking/RouterAdvertisement"
793
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
794
+ </input>
795
+ <output>
796
+ <soap:body
797
+ use="encoded"
798
+ namespace="urn:iControl:Networking/RouterAdvertisement"
799
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
800
+ </output>
801
+ </operation>
802
+
803
+ <operation name="get_other_configuration_flag_state">
804
+ <documentation>
805
+ Gets the other-configuration flag state for the specified Router Advertisements.
806
+
807
+ </documentation>
808
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
809
+ <input>
810
+ <soap:body
811
+ use="encoded"
812
+ namespace="urn:iControl:Networking/RouterAdvertisement"
813
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
814
+ </input>
815
+ <output>
816
+ <soap:body
817
+ use="encoded"
818
+ namespace="urn:iControl:Networking/RouterAdvertisement"
819
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
820
+ </output>
821
+ </operation>
822
+
823
+ <operation name="set_retransmit_time">
824
+ <documentation>
825
+ Sets the retransmit time for the specified Router Advertisements. This value is the time, in
826
+ milliseconds, between retransmitted Neighbor Solicitation messages. A value of zero
827
+ means unspecified (by this router).
828
+
829
+ </documentation>
830
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
831
+ <input>
832
+ <soap:body
833
+ use="encoded"
834
+ namespace="urn:iControl:Networking/RouterAdvertisement"
835
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
836
+ </input>
837
+ <output>
838
+ <soap:body
839
+ use="encoded"
840
+ namespace="urn:iControl:Networking/RouterAdvertisement"
841
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
842
+ </output>
843
+ </operation>
844
+
845
+ <operation name="get_retransmit_time">
846
+ <documentation>
847
+ Gets the retransmit time for the specified Router Advertisements.
848
+
849
+ </documentation>
850
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
851
+ <input>
852
+ <soap:body
853
+ use="encoded"
854
+ namespace="urn:iControl:Networking/RouterAdvertisement"
855
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
856
+ </input>
857
+ <output>
858
+ <soap:body
859
+ use="encoded"
860
+ namespace="urn:iControl:Networking/RouterAdvertisement"
861
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
862
+ </output>
863
+ </operation>
864
+
865
+ <operation name="set_mtu">
866
+ <documentation>
867
+ Sets the MTU for the specified Router Advertisements. The MTU or maximum transmission unit,
868
+ should be adjusted to match the MTU on links that have a variable MTU.
869
+
870
+ </documentation>
871
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
872
+ <input>
873
+ <soap:body
874
+ use="encoded"
875
+ namespace="urn:iControl:Networking/RouterAdvertisement"
876
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
877
+ </input>
878
+ <output>
879
+ <soap:body
880
+ use="encoded"
881
+ namespace="urn:iControl:Networking/RouterAdvertisement"
882
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
883
+ </output>
884
+ </operation>
885
+
886
+ <operation name="get_mtu">
887
+ <documentation>
888
+ Gets the MTU for the specified Router Advertisements.
889
+
890
+ </documentation>
891
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
892
+ <input>
893
+ <soap:body
894
+ use="encoded"
895
+ namespace="urn:iControl:Networking/RouterAdvertisement"
896
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
897
+ </input>
898
+ <output>
899
+ <soap:body
900
+ use="encoded"
901
+ namespace="urn:iControl:Networking/RouterAdvertisement"
902
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
903
+ </output>
904
+ </operation>
905
+
906
+ <operation name="set_maximum_hop">
907
+ <documentation>
908
+ Sets the maximum hops a Router Advertisement packet may travel before it is discarded.
909
+ A value of zero means unspecified (by this router). Has a maximum value of 255.
910
+
911
+ </documentation>
912
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
913
+ <input>
914
+ <soap:body
915
+ use="encoded"
916
+ namespace="urn:iControl:Networking/RouterAdvertisement"
917
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
918
+ </input>
919
+ <output>
920
+ <soap:body
921
+ use="encoded"
922
+ namespace="urn:iControl:Networking/RouterAdvertisement"
923
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
924
+ </output>
925
+ </operation>
926
+
927
+ <operation name="get_maximum_hop">
928
+ <documentation>
929
+ Gets the maximum hops for the specified Router Advertisements.
930
+
931
+ </documentation>
932
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
933
+ <input>
934
+ <soap:body
935
+ use="encoded"
936
+ namespace="urn:iControl:Networking/RouterAdvertisement"
937
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
938
+ </input>
939
+ <output>
940
+ <soap:body
941
+ use="encoded"
942
+ namespace="urn:iControl:Networking/RouterAdvertisement"
943
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
944
+ </output>
945
+ </operation>
946
+
947
+ <operation name="set_router_lifetime">
948
+ <documentation>
949
+ Sets the router lifetime for the specified Router Advertisements. The router lifetime is
950
+ the lifetime associated with the default router in seconds. A
951
+ lifetime of zero indicates that the router is not a default router.
952
+ Must be a value between the maximum interval and 9000.
953
+
954
+ </documentation>
955
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
956
+ <input>
957
+ <soap:body
958
+ use="encoded"
959
+ namespace="urn:iControl:Networking/RouterAdvertisement"
960
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
961
+ </input>
962
+ <output>
963
+ <soap:body
964
+ use="encoded"
965
+ namespace="urn:iControl:Networking/RouterAdvertisement"
966
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
967
+ </output>
968
+ </operation>
969
+
970
+ <operation name="get_router_lifetime">
971
+ <documentation>
972
+ Gets the router lifetime for the specified Router Advertisements.
973
+
974
+ </documentation>
975
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
976
+ <input>
977
+ <soap:body
978
+ use="encoded"
979
+ namespace="urn:iControl:Networking/RouterAdvertisement"
980
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
981
+ </input>
982
+ <output>
983
+ <soap:body
984
+ use="encoded"
985
+ namespace="urn:iControl:Networking/RouterAdvertisement"
986
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
987
+ </output>
988
+ </operation>
989
+
990
+ <operation name="set_reachable_time">
991
+ <documentation>
992
+ Sets the reachable time for the specified Router Advertisements. This is the time, in milliseconds,
993
+ that a node assumes a neighbor is reachable after having recieved a reachablity
994
+ confirmation. A value of zero means unspecified (by this router).
995
+ Has a maximum value of 3600000.
996
+
997
+ </documentation>
998
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
999
+ <input>
1000
+ <soap:body
1001
+ use="encoded"
1002
+ namespace="urn:iControl:Networking/RouterAdvertisement"
1003
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1004
+ </input>
1005
+ <output>
1006
+ <soap:body
1007
+ use="encoded"
1008
+ namespace="urn:iControl:Networking/RouterAdvertisement"
1009
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1010
+ </output>
1011
+ </operation>
1012
+
1013
+ <operation name="get_reachable_time">
1014
+ <documentation>
1015
+ Gets the reachable time for the specified Router Advertisements.
1016
+
1017
+ </documentation>
1018
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
1019
+ <input>
1020
+ <soap:body
1021
+ use="encoded"
1022
+ namespace="urn:iControl:Networking/RouterAdvertisement"
1023
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1024
+ </input>
1025
+ <output>
1026
+ <soap:body
1027
+ use="encoded"
1028
+ namespace="urn:iControl:Networking/RouterAdvertisement"
1029
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1030
+ </output>
1031
+ </operation>
1032
+
1033
+ <operation name="get_version">
1034
+ <documentation>
1035
+ Gets the version information for this interface.
1036
+
1037
+ </documentation>
1038
+ <soap:operation soapAction="urn:iControl:Networking/RouterAdvertisement"/>
1039
+ <input>
1040
+ <soap:body
1041
+ use="encoded"
1042
+ namespace="urn:iControl:Networking/RouterAdvertisement"
1043
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1044
+ </input>
1045
+ <output>
1046
+ <soap:body
1047
+ use="encoded"
1048
+ namespace="urn:iControl:Networking/RouterAdvertisement"
1049
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1050
+ </output>
1051
+ </operation>
1052
+ </binding>
1053
+
1054
+ <!-- service -->
1055
+
1056
+ <service name="Networking.RouterAdvertisement">
1057
+ <documentation>
1058
+ The RouterAdvertisement interface enables you to create and edit router advertisements defined in the device.
1059
+ Since version 11.2.0 the functionality for router advertisements (RFC 4861) has been integrated into the system.
1060
+ This interface allows you to configure its behavior.
1061
+
1062
+ </documentation>
1063
+ <port name="Networking.RouterAdvertisementPort" binding="tns:Networking.RouterAdvertisementBinding">
1064
+ <soap:address location="https://url_to_service"/>
1065
+ </port>
1066
+ </service>
1067
+ </definitions>