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,818 @@
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.iSessionPeerDiscovery"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:complexType name="Networking.iSessionPeerDiscovery.DiscoveryModeSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.iSessionPeerDiscovery.DiscoveryMode[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:simpleType name="Common.EnabledState">
32
+ <xsd:restriction base="xsd:string">
33
+ <xsd:enumeration value="STATE_DISABLED">
34
+ <xsd:annotation>
35
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
36
+ </xsd:annotation>
37
+ </xsd:enumeration>
38
+ <xsd:enumeration value="STATE_ENABLED">
39
+ <xsd:annotation>
40
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
41
+ </xsd:annotation>
42
+ </xsd:enumeration>
43
+ </xsd:restriction>
44
+ </xsd:simpleType>
45
+ <xsd:complexType name="Networking.iSessionPeerDiscovery.FilterModeSequence">
46
+ <xsd:complexContent>
47
+ <xsd:restriction base='SOAP-ENC:Array'>
48
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.iSessionPeerDiscovery.FilterMode[]'/>
49
+ </xsd:restriction>
50
+ </xsd:complexContent>
51
+ </xsd:complexType>
52
+ <xsd:complexType name="Common.ULongSequence">
53
+ <xsd:complexContent>
54
+ <xsd:restriction base='SOAP-ENC:Array'>
55
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
56
+ </xsd:restriction>
57
+ </xsd:complexContent>
58
+ </xsd:complexType>
59
+ <xsd:simpleType name="Networking.iSessionPeerDiscovery.DiscoveryMode">
60
+ <xsd:restriction base="xsd:string">
61
+ <xsd:enumeration value="DISCOVERY_MODE_ENABLE_ALL">
62
+ <xsd:annotation>
63
+ <xsd:documentation>DISCOVERY_MODE_ENABLE_ALL</xsd:documentation>
64
+ </xsd:annotation>
65
+ </xsd:enumeration>
66
+ <xsd:enumeration value="DISCOVERY_MODE_DISABLE">
67
+ <xsd:annotation>
68
+ <xsd:documentation>DISCOVERY_MODE_DISABLE</xsd:documentation>
69
+ </xsd:annotation>
70
+ </xsd:enumeration>
71
+ <xsd:enumeration value="DISCOVERY_MODE_ENABLE_ICMP">
72
+ <xsd:annotation>
73
+ <xsd:documentation>DISCOVERY_MODE_ENABLE_ICMP</xsd:documentation>
74
+ </xsd:annotation>
75
+ </xsd:enumeration>
76
+ <xsd:enumeration value="DISCOVERY_MODE_ENABLE_TCP">
77
+ <xsd:annotation>
78
+ <xsd:documentation>DISCOVERY_MODE_ENABLE_TCP</xsd:documentation>
79
+ </xsd:annotation>
80
+ </xsd:enumeration>
81
+ </xsd:restriction>
82
+ </xsd:simpleType>
83
+ <xsd:complexType name="Common.UShortSequence">
84
+ <xsd:complexContent>
85
+ <xsd:restriction base='SOAP-ENC:Array'>
86
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:int[]'/>
87
+ </xsd:restriction>
88
+ </xsd:complexContent>
89
+ </xsd:complexType>
90
+ <xsd:simpleType name="Networking.iSessionPeerDiscovery.FilterMode">
91
+ <xsd:restriction base="xsd:string">
92
+ <xsd:enumeration value="DISCOVERY_FILTER_MODE_EXCLUDE">
93
+ <xsd:annotation>
94
+ <xsd:documentation>DISCOVERY_FILTER_MODE_EXCLUDE</xsd:documentation>
95
+ </xsd:annotation>
96
+ </xsd:enumeration>
97
+ <xsd:enumeration value="DISCOVERY_FILTER_MODE_INCLUDE">
98
+ <xsd:annotation>
99
+ <xsd:documentation>DISCOVERY_FILTER_MODE_INCLUDE</xsd:documentation>
100
+ </xsd:annotation>
101
+ </xsd:enumeration>
102
+ </xsd:restriction>
103
+ </xsd:simpleType>
104
+ <xsd:complexType name="Common.EnabledStateSequence">
105
+ <xsd:complexContent>
106
+ <xsd:restriction base='SOAP-ENC:Array'>
107
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
108
+ </xsd:restriction>
109
+ </xsd:complexContent>
110
+ </xsd:complexType>
111
+ </xsd:schema>
112
+ </types>
113
+
114
+ <!-- message -->
115
+
116
+ <message name="Networking.iSessionPeerDiscovery.get_listRequest">
117
+ </message>
118
+ <message name="Networking.iSessionPeerDiscovery.get_listResponse">
119
+ <part name="return" type="tns:Common.ULongSequence"/>
120
+ </message>
121
+
122
+ <message name="Networking.iSessionPeerDiscovery.get_discovered_peer_enabled_stateRequest">
123
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
124
+ </message>
125
+ <message name="Networking.iSessionPeerDiscovery.get_discovered_peer_enabled_stateResponse">
126
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
127
+ </message>
128
+
129
+ <message name="Networking.iSessionPeerDiscovery.set_discovered_peer_enabled_stateRequest">
130
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
131
+ <part name="discover_peer" type="tns:Common.EnabledStateSequence"/>
132
+ </message>
133
+ <message name="Networking.iSessionPeerDiscovery.set_discovered_peer_enabled_stateResponse">
134
+ </message>
135
+
136
+ <message name="Networking.iSessionPeerDiscovery.get_discoverable_peer_enabled_stateRequest">
137
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
138
+ </message>
139
+ <message name="Networking.iSessionPeerDiscovery.get_discoverable_peer_enabled_stateResponse">
140
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
141
+ </message>
142
+
143
+ <message name="Networking.iSessionPeerDiscovery.set_discoverable_peer_enabled_stateRequest">
144
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
145
+ <part name="discoverable_peer" type="tns:Common.EnabledStateSequence"/>
146
+ </message>
147
+ <message name="Networking.iSessionPeerDiscovery.set_discoverable_peer_enabled_stateResponse">
148
+ </message>
149
+
150
+ <message name="Networking.iSessionPeerDiscovery.get_discovery_mode_enabled_stateRequest">
151
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
152
+ </message>
153
+ <message name="Networking.iSessionPeerDiscovery.get_discovery_mode_enabled_stateResponse">
154
+ <part name="return" type="tns:Networking.iSessionPeerDiscovery.FilterModeSequence"/>
155
+ </message>
156
+
157
+ <message name="Networking.iSessionPeerDiscovery.set_discovery_mode_enabled_stateRequest">
158
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
159
+ <part name="discovery_mode" type="tns:Networking.iSessionPeerDiscovery.FilterModeSequence"/>
160
+ </message>
161
+ <message name="Networking.iSessionPeerDiscovery.set_discovery_mode_enabled_stateResponse">
162
+ </message>
163
+
164
+ <message name="Networking.iSessionPeerDiscovery.get_discovery_modeRequest">
165
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
166
+ </message>
167
+ <message name="Networking.iSessionPeerDiscovery.get_discovery_modeResponse">
168
+ <part name="return" type="tns:Networking.iSessionPeerDiscovery.DiscoveryModeSequence"/>
169
+ </message>
170
+
171
+ <message name="Networking.iSessionPeerDiscovery.set_discovery_modeRequest">
172
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
173
+ <part name="discovery_modes" type="tns:Networking.iSessionPeerDiscovery.DiscoveryModeSequence"/>
174
+ </message>
175
+ <message name="Networking.iSessionPeerDiscovery.set_discovery_modeResponse">
176
+ </message>
177
+
178
+ <message name="Networking.iSessionPeerDiscovery.get_icmp_max_requestsRequest">
179
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
180
+ </message>
181
+ <message name="Networking.iSessionPeerDiscovery.get_icmp_max_requestsResponse">
182
+ <part name="return" type="tns:Common.UShortSequence"/>
183
+ </message>
184
+
185
+ <message name="Networking.iSessionPeerDiscovery.set_icmp_max_requestsRequest">
186
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
187
+ <part name="max_requests" type="tns:Common.UShortSequence"/>
188
+ </message>
189
+ <message name="Networking.iSessionPeerDiscovery.set_icmp_max_requestsResponse">
190
+ </message>
191
+
192
+ <message name="Networking.iSessionPeerDiscovery.get_max_peer_countRequest">
193
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
194
+ </message>
195
+ <message name="Networking.iSessionPeerDiscovery.get_max_peer_countResponse">
196
+ <part name="return" type="tns:Common.UShortSequence"/>
197
+ </message>
198
+
199
+ <message name="Networking.iSessionPeerDiscovery.set_max_peer_countRequest">
200
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
201
+ <part name="max_peers" type="tns:Common.UShortSequence"/>
202
+ </message>
203
+ <message name="Networking.iSessionPeerDiscovery.set_max_peer_countResponse">
204
+ </message>
205
+
206
+ <message name="Networking.iSessionPeerDiscovery.get_icmp_max_retriesRequest">
207
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
208
+ </message>
209
+ <message name="Networking.iSessionPeerDiscovery.get_icmp_max_retriesResponse">
210
+ <part name="return" type="tns:Common.UShortSequence"/>
211
+ </message>
212
+
213
+ <message name="Networking.iSessionPeerDiscovery.set_icmp_max_retriesRequest">
214
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
215
+ <part name="max_retries" type="tns:Common.UShortSequence"/>
216
+ </message>
217
+ <message name="Networking.iSessionPeerDiscovery.set_icmp_max_retriesResponse">
218
+ </message>
219
+
220
+ <message name="Networking.iSessionPeerDiscovery.get_icmp_backoff_timeRequest">
221
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
222
+ </message>
223
+ <message name="Networking.iSessionPeerDiscovery.get_icmp_backoff_timeResponse">
224
+ <part name="return" type="tns:Common.UShortSequence"/>
225
+ </message>
226
+
227
+ <message name="Networking.iSessionPeerDiscovery.set_icmp_backoff_timeRequest">
228
+ <part name="dynpeerlist" type="tns:Common.ULongSequence"/>
229
+ <part name="max_backoff_time" type="tns:Common.UShortSequence"/>
230
+ </message>
231
+ <message name="Networking.iSessionPeerDiscovery.set_icmp_backoff_timeResponse">
232
+ </message>
233
+
234
+ <message name="Networking.iSessionPeerDiscovery.get_versionRequest">
235
+ </message>
236
+ <message name="Networking.iSessionPeerDiscovery.get_versionResponse">
237
+ <part name="return" type="xsd:string"/>
238
+ </message>
239
+
240
+ <!-- portType -->
241
+
242
+ <portType name="Networking.iSessionPeerDiscoveryPortType">
243
+ <operation name="get_list">
244
+ <documentation>
245
+ Gets a list of all endpoint discovery objects.
246
+
247
+ This method is useless, as one and only one endpoint discovery
248
+ object exists.
249
+
250
+ </documentation>
251
+ <input message="tns:Networking.iSessionPeerDiscovery.get_listRequest"/>
252
+ <output message="tns:Networking.iSessionPeerDiscovery.get_listResponse"/>
253
+ </operation>
254
+ <operation name="get_discovered_peer_enabled_state">
255
+ <documentation>
256
+ Gets the current setting allows other remote endpoints to discover
257
+ this local endpoint and enables and disables the logic that detects
258
+ this condition.
259
+
260
+ </documentation>
261
+ <input message="tns:Networking.iSessionPeerDiscovery.get_discovered_peer_enabled_stateRequest"/>
262
+ <output message="tns:Networking.iSessionPeerDiscovery.get_discovered_peer_enabled_stateResponse"/>
263
+ </operation>
264
+ <operation name="set_discovered_peer_enabled_state">
265
+ <documentation>
266
+ Sets the current setting that allows other remote endpoints to
267
+ discover this local endpoint and enables and disables the logic
268
+ that detects this condition.
269
+
270
+ </documentation>
271
+ <input message="tns:Networking.iSessionPeerDiscovery.set_discovered_peer_enabled_stateRequest"/>
272
+ <output message="tns:Networking.iSessionPeerDiscovery.set_discovered_peer_enabled_stateResponse"/>
273
+ </operation>
274
+ <operation name="get_discoverable_peer_enabled_state">
275
+ <documentation>
276
+ Gets the setting allows other remote endpoints to discover this
277
+ local endpoint and advertises the local ability to connect.
278
+
279
+ </documentation>
280
+ <input message="tns:Networking.iSessionPeerDiscovery.get_discoverable_peer_enabled_stateRequest"/>
281
+ <output message="tns:Networking.iSessionPeerDiscovery.get_discoverable_peer_enabled_stateResponse"/>
282
+ </operation>
283
+ <operation name="set_discoverable_peer_enabled_state">
284
+ <documentation>
285
+ Sets the setting allows other remote endpoints to discover this
286
+ local endpoint and advertises the local ability to connect.
287
+
288
+ </documentation>
289
+ <input message="tns:Networking.iSessionPeerDiscovery.set_discoverable_peer_enabled_stateRequest"/>
290
+ <output message="tns:Networking.iSessionPeerDiscovery.set_discoverable_peer_enabled_stateResponse"/>
291
+ </operation>
292
+ <operation name="get_discovery_mode_enabled_state">
293
+ <documentation>
294
+ Gets the setting that allows other remote endpoints to enable
295
+ automatic discovery of this local iSession endpoint.
296
+
297
+ </documentation>
298
+ <input message="tns:Networking.iSessionPeerDiscovery.get_discovery_mode_enabled_stateRequest"/>
299
+ <output message="tns:Networking.iSessionPeerDiscovery.get_discovery_mode_enabled_stateResponse"/>
300
+ </operation>
301
+ <operation name="set_discovery_mode_enabled_state">
302
+ <documentation>
303
+ Sets the setting that allows other remote endpoints to enable
304
+ automatic discovery of this local iSession endpoint.
305
+
306
+ </documentation>
307
+ <input message="tns:Networking.iSessionPeerDiscovery.set_discovery_mode_enabled_stateRequest"/>
308
+ <output message="tns:Networking.iSessionPeerDiscovery.set_discovery_mode_enabled_stateResponse"/>
309
+ </operation>
310
+ <operation name="get_discovery_mode">
311
+ <documentation>
312
+ Gets the modes that allows other remote endpoints to enable
313
+ automatic discovery of this local iSession endpoint.
314
+
315
+ </documentation>
316
+ <input message="tns:Networking.iSessionPeerDiscovery.get_discovery_modeRequest"/>
317
+ <output message="tns:Networking.iSessionPeerDiscovery.get_discovery_modeResponse"/>
318
+ </operation>
319
+ <operation name="set_discovery_mode">
320
+ <documentation>
321
+ Sets the modes that allows other remote endpoints to enable
322
+ automatic discovery of this local iSession endpoint.
323
+
324
+ </documentation>
325
+ <input message="tns:Networking.iSessionPeerDiscovery.set_discovery_modeRequest"/>
326
+ <output message="tns:Networking.iSessionPeerDiscovery.set_discovery_modeResponse"/>
327
+ </operation>
328
+ <operation name="get_icmp_max_requests">
329
+ <documentation>
330
+ Gets the maximum number of ICMP requests allowed for other remote
331
+ endpoints to discover this local endpoint.
332
+
333
+ </documentation>
334
+ <input message="tns:Networking.iSessionPeerDiscovery.get_icmp_max_requestsRequest"/>
335
+ <output message="tns:Networking.iSessionPeerDiscovery.get_icmp_max_requestsResponse"/>
336
+ </operation>
337
+ <operation name="set_icmp_max_requests">
338
+ <documentation>
339
+ Sets the maximum number of ICMP requests allowed for other remote
340
+ endpoints to discover this local endpoint.
341
+
342
+ </documentation>
343
+ <input message="tns:Networking.iSessionPeerDiscovery.set_icmp_max_requestsRequest"/>
344
+ <output message="tns:Networking.iSessionPeerDiscovery.set_icmp_max_requestsResponse"/>
345
+ </operation>
346
+ <operation name="get_max_peer_count">
347
+ <documentation>
348
+ Gets the maximum number of remote endpoints allowed to discover
349
+ this local endpoint.
350
+
351
+ </documentation>
352
+ <input message="tns:Networking.iSessionPeerDiscovery.get_max_peer_countRequest"/>
353
+ <output message="tns:Networking.iSessionPeerDiscovery.get_max_peer_countResponse"/>
354
+ </operation>
355
+ <operation name="set_max_peer_count">
356
+ <documentation>
357
+ Sets the maximum number of remote endpoints allowed to discover
358
+ this local endpoint.
359
+
360
+ </documentation>
361
+ <input message="tns:Networking.iSessionPeerDiscovery.set_max_peer_countRequest"/>
362
+ <output message="tns:Networking.iSessionPeerDiscovery.set_max_peer_countResponse"/>
363
+ </operation>
364
+ <operation name="get_icmp_max_retries">
365
+ <documentation>
366
+ Gets the maximum number of ICMP retries allowed for other remote
367
+ endpoints to discover this local endpoint.
368
+
369
+ </documentation>
370
+ <input message="tns:Networking.iSessionPeerDiscovery.get_icmp_max_retriesRequest"/>
371
+ <output message="tns:Networking.iSessionPeerDiscovery.get_icmp_max_retriesResponse"/>
372
+ </operation>
373
+ <operation name="set_icmp_max_retries">
374
+ <documentation>
375
+ Sets the maximum number of ICMP retries allowed for other remote
376
+ endpoints to discover this local endpoint.
377
+
378
+ </documentation>
379
+ <input message="tns:Networking.iSessionPeerDiscovery.set_icmp_max_retriesRequest"/>
380
+ <output message="tns:Networking.iSessionPeerDiscovery.set_icmp_max_retriesResponse"/>
381
+ </operation>
382
+ <operation name="get_icmp_backoff_time">
383
+ <documentation>
384
+ Gets the minimum wait time before abandoning an ICMP probe message
385
+ request and resending it for remote endpoints discovering this
386
+ local endpoint.
387
+
388
+ </documentation>
389
+ <input message="tns:Networking.iSessionPeerDiscovery.get_icmp_backoff_timeRequest"/>
390
+ <output message="tns:Networking.iSessionPeerDiscovery.get_icmp_backoff_timeResponse"/>
391
+ </operation>
392
+ <operation name="set_icmp_backoff_time">
393
+ <documentation>
394
+ Sets the minimum wait time before abandoning an ICMP probe message
395
+ request and resending it for remote endpoints discovering this
396
+ local endpoint.
397
+
398
+ </documentation>
399
+ <input message="tns:Networking.iSessionPeerDiscovery.set_icmp_backoff_timeRequest"/>
400
+ <output message="tns:Networking.iSessionPeerDiscovery.set_icmp_backoff_timeResponse"/>
401
+ </operation>
402
+ <operation name="get_version">
403
+ <documentation>
404
+ Gets the version information for this interface.
405
+
406
+ </documentation>
407
+ <input message="tns:Networking.iSessionPeerDiscovery.get_versionRequest"/>
408
+ <output message="tns:Networking.iSessionPeerDiscovery.get_versionResponse"/>
409
+ </operation>
410
+ </portType>
411
+
412
+ <!-- binding -->
413
+
414
+ <binding name="Networking.iSessionPeerDiscoveryBinding" type="tns:Networking.iSessionPeerDiscoveryPortType">
415
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
416
+ <operation name="get_list">
417
+ <documentation>
418
+ Gets a list of all endpoint discovery objects.
419
+
420
+ This method is useless, as one and only one endpoint discovery
421
+ object exists.
422
+
423
+ </documentation>
424
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
425
+ <input>
426
+ <soap:body
427
+ use="encoded"
428
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
429
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
430
+ </input>
431
+ <output>
432
+ <soap:body
433
+ use="encoded"
434
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
435
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
436
+ </output>
437
+ </operation>
438
+
439
+ <operation name="get_discovered_peer_enabled_state">
440
+ <documentation>
441
+ Gets the current setting allows other remote endpoints to discover
442
+ this local endpoint and enables and disables the logic that detects
443
+ this condition.
444
+
445
+ </documentation>
446
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
447
+ <input>
448
+ <soap:body
449
+ use="encoded"
450
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
451
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
452
+ </input>
453
+ <output>
454
+ <soap:body
455
+ use="encoded"
456
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
457
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
458
+ </output>
459
+ </operation>
460
+
461
+ <operation name="set_discovered_peer_enabled_state">
462
+ <documentation>
463
+ Sets the current setting that allows other remote endpoints to
464
+ discover this local endpoint and enables and disables the logic
465
+ that detects this condition.
466
+
467
+ </documentation>
468
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
469
+ <input>
470
+ <soap:body
471
+ use="encoded"
472
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
473
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
474
+ </input>
475
+ <output>
476
+ <soap:body
477
+ use="encoded"
478
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
479
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
480
+ </output>
481
+ </operation>
482
+
483
+ <operation name="get_discoverable_peer_enabled_state">
484
+ <documentation>
485
+ Gets the setting allows other remote endpoints to discover this
486
+ local endpoint and advertises the local ability to connect.
487
+
488
+ </documentation>
489
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
490
+ <input>
491
+ <soap:body
492
+ use="encoded"
493
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
494
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
495
+ </input>
496
+ <output>
497
+ <soap:body
498
+ use="encoded"
499
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
500
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
501
+ </output>
502
+ </operation>
503
+
504
+ <operation name="set_discoverable_peer_enabled_state">
505
+ <documentation>
506
+ Sets the setting allows other remote endpoints to discover this
507
+ local endpoint and advertises the local ability to connect.
508
+
509
+ </documentation>
510
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
511
+ <input>
512
+ <soap:body
513
+ use="encoded"
514
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
515
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
516
+ </input>
517
+ <output>
518
+ <soap:body
519
+ use="encoded"
520
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
521
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
522
+ </output>
523
+ </operation>
524
+
525
+ <operation name="get_discovery_mode_enabled_state">
526
+ <documentation>
527
+ Gets the setting that allows other remote endpoints to enable
528
+ automatic discovery of this local iSession endpoint.
529
+
530
+ </documentation>
531
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
532
+ <input>
533
+ <soap:body
534
+ use="encoded"
535
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
536
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
537
+ </input>
538
+ <output>
539
+ <soap:body
540
+ use="encoded"
541
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
542
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
543
+ </output>
544
+ </operation>
545
+
546
+ <operation name="set_discovery_mode_enabled_state">
547
+ <documentation>
548
+ Sets the setting that allows other remote endpoints to enable
549
+ automatic discovery of this local iSession endpoint.
550
+
551
+ </documentation>
552
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
553
+ <input>
554
+ <soap:body
555
+ use="encoded"
556
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
557
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
558
+ </input>
559
+ <output>
560
+ <soap:body
561
+ use="encoded"
562
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
563
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
564
+ </output>
565
+ </operation>
566
+
567
+ <operation name="get_discovery_mode">
568
+ <documentation>
569
+ Gets the modes that allows other remote endpoints to enable
570
+ automatic discovery of this local iSession endpoint.
571
+
572
+ </documentation>
573
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
574
+ <input>
575
+ <soap:body
576
+ use="encoded"
577
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
578
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
579
+ </input>
580
+ <output>
581
+ <soap:body
582
+ use="encoded"
583
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
584
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
585
+ </output>
586
+ </operation>
587
+
588
+ <operation name="set_discovery_mode">
589
+ <documentation>
590
+ Sets the modes that allows other remote endpoints to enable
591
+ automatic discovery of this local iSession endpoint.
592
+
593
+ </documentation>
594
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
595
+ <input>
596
+ <soap:body
597
+ use="encoded"
598
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
599
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
600
+ </input>
601
+ <output>
602
+ <soap:body
603
+ use="encoded"
604
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
605
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
606
+ </output>
607
+ </operation>
608
+
609
+ <operation name="get_icmp_max_requests">
610
+ <documentation>
611
+ Gets the maximum number of ICMP requests allowed for other remote
612
+ endpoints to discover this local endpoint.
613
+
614
+ </documentation>
615
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
616
+ <input>
617
+ <soap:body
618
+ use="encoded"
619
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
620
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
621
+ </input>
622
+ <output>
623
+ <soap:body
624
+ use="encoded"
625
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
626
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
627
+ </output>
628
+ </operation>
629
+
630
+ <operation name="set_icmp_max_requests">
631
+ <documentation>
632
+ Sets the maximum number of ICMP requests allowed for other remote
633
+ endpoints to discover this local endpoint.
634
+
635
+ </documentation>
636
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
637
+ <input>
638
+ <soap:body
639
+ use="encoded"
640
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
641
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
642
+ </input>
643
+ <output>
644
+ <soap:body
645
+ use="encoded"
646
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
647
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
648
+ </output>
649
+ </operation>
650
+
651
+ <operation name="get_max_peer_count">
652
+ <documentation>
653
+ Gets the maximum number of remote endpoints allowed to discover
654
+ this local endpoint.
655
+
656
+ </documentation>
657
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
658
+ <input>
659
+ <soap:body
660
+ use="encoded"
661
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
662
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
663
+ </input>
664
+ <output>
665
+ <soap:body
666
+ use="encoded"
667
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
668
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
669
+ </output>
670
+ </operation>
671
+
672
+ <operation name="set_max_peer_count">
673
+ <documentation>
674
+ Sets the maximum number of remote endpoints allowed to discover
675
+ this local endpoint.
676
+
677
+ </documentation>
678
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
679
+ <input>
680
+ <soap:body
681
+ use="encoded"
682
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
683
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
684
+ </input>
685
+ <output>
686
+ <soap:body
687
+ use="encoded"
688
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
689
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
690
+ </output>
691
+ </operation>
692
+
693
+ <operation name="get_icmp_max_retries">
694
+ <documentation>
695
+ Gets the maximum number of ICMP retries allowed for other remote
696
+ endpoints to discover this local endpoint.
697
+
698
+ </documentation>
699
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
700
+ <input>
701
+ <soap:body
702
+ use="encoded"
703
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
704
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
705
+ </input>
706
+ <output>
707
+ <soap:body
708
+ use="encoded"
709
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
710
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
711
+ </output>
712
+ </operation>
713
+
714
+ <operation name="set_icmp_max_retries">
715
+ <documentation>
716
+ Sets the maximum number of ICMP retries allowed for other remote
717
+ endpoints to discover this local endpoint.
718
+
719
+ </documentation>
720
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
721
+ <input>
722
+ <soap:body
723
+ use="encoded"
724
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
725
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
726
+ </input>
727
+ <output>
728
+ <soap:body
729
+ use="encoded"
730
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
731
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
732
+ </output>
733
+ </operation>
734
+
735
+ <operation name="get_icmp_backoff_time">
736
+ <documentation>
737
+ Gets the minimum wait time before abandoning an ICMP probe message
738
+ request and resending it for remote endpoints discovering this
739
+ local endpoint.
740
+
741
+ </documentation>
742
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
743
+ <input>
744
+ <soap:body
745
+ use="encoded"
746
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
747
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
748
+ </input>
749
+ <output>
750
+ <soap:body
751
+ use="encoded"
752
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
753
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
754
+ </output>
755
+ </operation>
756
+
757
+ <operation name="set_icmp_backoff_time">
758
+ <documentation>
759
+ Sets the minimum wait time before abandoning an ICMP probe message
760
+ request and resending it for remote endpoints discovering this
761
+ local endpoint.
762
+
763
+ </documentation>
764
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
765
+ <input>
766
+ <soap:body
767
+ use="encoded"
768
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
769
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
770
+ </input>
771
+ <output>
772
+ <soap:body
773
+ use="encoded"
774
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
775
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
776
+ </output>
777
+ </operation>
778
+
779
+ <operation name="get_version">
780
+ <documentation>
781
+ Gets the version information for this interface.
782
+
783
+ </documentation>
784
+ <soap:operation soapAction="urn:iControl:Networking/iSessionPeerDiscovery"/>
785
+ <input>
786
+ <soap:body
787
+ use="encoded"
788
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
789
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
790
+ </input>
791
+ <output>
792
+ <soap:body
793
+ use="encoded"
794
+ namespace="urn:iControl:Networking/iSessionPeerDiscovery"
795
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
796
+ </output>
797
+ </operation>
798
+ </binding>
799
+
800
+ <!-- service -->
801
+
802
+ <service name="Networking.iSessionPeerDiscovery">
803
+ <documentation>
804
+ The Dynamic Peer Discovery interface enables you to work with the
805
+ definitions and attributes contained in a device's endpoint discovery
806
+ objects.
807
+
808
+ This interface includes an object key which is a Common::ULong value.
809
+ This value is meaningless in itself, and since only one endpoint
810
+ discovery object can exist, it is of no real use. Its value is ignored
811
+ in all methods in this interface.
812
+
813
+ </documentation>
814
+ <port name="Networking.iSessionPeerDiscoveryPort" binding="tns:Networking.iSessionPeerDiscoveryBinding">
815
+ <soap:address location="https://url_to_service"/>
816
+ </port>
817
+ </service>
818
+ </definitions>