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,1642 @@
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="GlobalLB.DNSSECKey"
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="Common.ULong64SequenceSequence">
25
+ <xsd:complexContent>
26
+ <xsd:restriction base='SOAP-ENC:Array'>
27
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ULong64Sequence[]'/>
28
+ </xsd:restriction>
29
+ </xsd:complexContent>
30
+ </xsd:complexType>
31
+ <xsd:complexType name="GlobalLB.DNSSECKey.KeyTypeSequence">
32
+ <xsd:complexContent>
33
+ <xsd:restriction base='SOAP-ENC:Array'>
34
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.DNSSECKey.KeyType[]'/>
35
+ </xsd:restriction>
36
+ </xsd:complexContent>
37
+ </xsd:complexType>
38
+ <xsd:simpleType name="GlobalLB.DNSSECKey.KeyType">
39
+ <xsd:restriction base="xsd:string">
40
+ <xsd:enumeration value="KEY_TYPE_UNKNOWN">
41
+ <xsd:annotation>
42
+ <xsd:documentation>KEY_TYPE_UNKNOWN</xsd:documentation>
43
+ </xsd:annotation>
44
+ </xsd:enumeration>
45
+ <xsd:enumeration value="KEY_TYPE_ZONE_SIGNING">
46
+ <xsd:annotation>
47
+ <xsd:documentation>KEY_TYPE_ZONE_SIGNING</xsd:documentation>
48
+ </xsd:annotation>
49
+ </xsd:enumeration>
50
+ <xsd:enumeration value="KEY_TYPE_KEY_SIGNING">
51
+ <xsd:annotation>
52
+ <xsd:documentation>KEY_TYPE_KEY_SIGNING</xsd:documentation>
53
+ </xsd:annotation>
54
+ </xsd:enumeration>
55
+ </xsd:restriction>
56
+ </xsd:simpleType>
57
+ <xsd:complexType name="Common.TimeStampSequence">
58
+ <xsd:complexContent>
59
+ <xsd:restriction base='SOAP-ENC:Array'>
60
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.TimeStamp[]'/>
61
+ </xsd:restriction>
62
+ </xsd:complexContent>
63
+ </xsd:complexType>
64
+ <xsd:simpleType name="GlobalLB.HardwareSecurityModuleType">
65
+ <xsd:restriction base="xsd:string">
66
+ <xsd:enumeration value="HARDWARE_SECURITY_MODULE_TYPE_UNKNOWN">
67
+ <xsd:annotation>
68
+ <xsd:documentation>HARDWARE_SECURITY_MODULE_TYPE_UNKNOWN</xsd:documentation>
69
+ </xsd:annotation>
70
+ </xsd:enumeration>
71
+ <xsd:enumeration value="HARDWARE_SECURITY_MODULE_TYPE_NONE">
72
+ <xsd:annotation>
73
+ <xsd:documentation>HARDWARE_SECURITY_MODULE_TYPE_NONE</xsd:documentation>
74
+ </xsd:annotation>
75
+ </xsd:enumeration>
76
+ <xsd:enumeration value="HARDWARE_SECURITY_MODULE_TYPE_INTERNAL">
77
+ <xsd:annotation>
78
+ <xsd:documentation>HARDWARE_SECURITY_MODULE_TYPE_INTERNAL</xsd:documentation>
79
+ </xsd:annotation>
80
+ </xsd:enumeration>
81
+ <xsd:enumeration value="HARDWARE_SECURITY_MODULE_TYPE_EXTERNAL">
82
+ <xsd:annotation>
83
+ <xsd:documentation>HARDWARE_SECURITY_MODULE_TYPE_EXTERNAL</xsd:documentation>
84
+ </xsd:annotation>
85
+ </xsd:enumeration>
86
+ </xsd:restriction>
87
+ </xsd:simpleType>
88
+ <xsd:complexType name="Common.ULong64">
89
+ <xsd:sequence>
90
+ <xsd:element name="high" type="xsd:long"/>
91
+ <xsd:element name="low" type="xsd:long"/>
92
+ </xsd:sequence>
93
+ </xsd:complexType>
94
+ <xsd:simpleType name="Common.EnabledState">
95
+ <xsd:restriction base="xsd:string">
96
+ <xsd:enumeration value="STATE_DISABLED">
97
+ <xsd:annotation>
98
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
99
+ </xsd:annotation>
100
+ </xsd:enumeration>
101
+ <xsd:enumeration value="STATE_ENABLED">
102
+ <xsd:annotation>
103
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
104
+ </xsd:annotation>
105
+ </xsd:enumeration>
106
+ </xsd:restriction>
107
+ </xsd:simpleType>
108
+ <xsd:complexType name="Common.TimeStamp">
109
+ <xsd:sequence>
110
+ <xsd:element name="year" type="xsd:long"/>
111
+ <xsd:element name="month" type="xsd:long"/>
112
+ <xsd:element name="day" type="xsd:long"/>
113
+ <xsd:element name="hour" type="xsd:long"/>
114
+ <xsd:element name="minute" type="xsd:long"/>
115
+ <xsd:element name="second" type="xsd:long"/>
116
+ </xsd:sequence>
117
+ </xsd:complexType>
118
+ <xsd:complexType name="Common.StringSequence">
119
+ <xsd:complexContent>
120
+ <xsd:restriction base='SOAP-ENC:Array'>
121
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
122
+ </xsd:restriction>
123
+ </xsd:complexContent>
124
+ </xsd:complexType>
125
+ <xsd:complexType name="Common.TimeStampSequenceSequence">
126
+ <xsd:complexContent>
127
+ <xsd:restriction base='SOAP-ENC:Array'>
128
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.TimeStampSequence[]'/>
129
+ </xsd:restriction>
130
+ </xsd:complexContent>
131
+ </xsd:complexType>
132
+ <xsd:complexType name="Common.ULong64Sequence">
133
+ <xsd:complexContent>
134
+ <xsd:restriction base='SOAP-ENC:Array'>
135
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.ULong64[]'/>
136
+ </xsd:restriction>
137
+ </xsd:complexContent>
138
+ </xsd:complexType>
139
+ <xsd:complexType name="GlobalLB.HardwareSecurityModuleTypeSequence">
140
+ <xsd:complexContent>
141
+ <xsd:restriction base='SOAP-ENC:Array'>
142
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.HardwareSecurityModuleType[]'/>
143
+ </xsd:restriction>
144
+ </xsd:complexContent>
145
+ </xsd:complexType>
146
+ <xsd:complexType name="GlobalLB.DNSSECKey.KeyAlgorithmSequence">
147
+ <xsd:complexContent>
148
+ <xsd:restriction base='SOAP-ENC:Array'>
149
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:GlobalLB.DNSSECKey.KeyAlgorithm[]'/>
150
+ </xsd:restriction>
151
+ </xsd:complexContent>
152
+ </xsd:complexType>
153
+ <xsd:complexType name="Common.ULongSequence">
154
+ <xsd:complexContent>
155
+ <xsd:restriction base='SOAP-ENC:Array'>
156
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
157
+ </xsd:restriction>
158
+ </xsd:complexContent>
159
+ </xsd:complexType>
160
+ <xsd:complexType name="Common.UShortSequenceSequence">
161
+ <xsd:complexContent>
162
+ <xsd:restriction base='SOAP-ENC:Array'>
163
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.UShortSequence[]'/>
164
+ </xsd:restriction>
165
+ </xsd:complexContent>
166
+ </xsd:complexType>
167
+ <xsd:complexType name="Common.UShortSequence">
168
+ <xsd:complexContent>
169
+ <xsd:restriction base='SOAP-ENC:Array'>
170
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:int[]'/>
171
+ </xsd:restriction>
172
+ </xsd:complexContent>
173
+ </xsd:complexType>
174
+ <xsd:complexType name="Common.StringSequenceSequence">
175
+ <xsd:complexContent>
176
+ <xsd:restriction base='SOAP-ENC:Array'>
177
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.StringSequence[]'/>
178
+ </xsd:restriction>
179
+ </xsd:complexContent>
180
+ </xsd:complexType>
181
+ <xsd:simpleType name="GlobalLB.DNSSECKey.KeyAlgorithm">
182
+ <xsd:restriction base="xsd:string">
183
+ <xsd:enumeration value="KEY_ALGORITHM_UNKNOWN">
184
+ <xsd:annotation>
185
+ <xsd:documentation>KEY_ALGORITHM_UNKNOWN</xsd:documentation>
186
+ </xsd:annotation>
187
+ </xsd:enumeration>
188
+ <xsd:enumeration value="KEY_ALGORITHM_RSASHA1">
189
+ <xsd:annotation>
190
+ <xsd:documentation>KEY_ALGORITHM_RSASHA1</xsd:documentation>
191
+ </xsd:annotation>
192
+ </xsd:enumeration>
193
+ <xsd:enumeration value="KEY_ALGORITHM_RSASHA256">
194
+ <xsd:annotation>
195
+ <xsd:documentation>KEY_ALGORITHM_RSASHA256</xsd:documentation>
196
+ </xsd:annotation>
197
+ </xsd:enumeration>
198
+ <xsd:enumeration value="KEY_ALGORITHM_RSASHA512">
199
+ <xsd:annotation>
200
+ <xsd:documentation>KEY_ALGORITHM_RSASHA512</xsd:documentation>
201
+ </xsd:annotation>
202
+ </xsd:enumeration>
203
+ </xsd:restriction>
204
+ </xsd:simpleType>
205
+ <xsd:complexType name="Common.EnabledStateSequence">
206
+ <xsd:complexContent>
207
+ <xsd:restriction base='SOAP-ENC:Array'>
208
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
209
+ </xsd:restriction>
210
+ </xsd:complexContent>
211
+ </xsd:complexType>
212
+ </xsd:schema>
213
+ </types>
214
+
215
+ <!-- message -->
216
+
217
+ <message name="GlobalLB.DNSSECKey.get_listRequest">
218
+ </message>
219
+ <message name="GlobalLB.DNSSECKey.get_listResponse">
220
+ <part name="return" type="tns:Common.StringSequence"/>
221
+ </message>
222
+
223
+ <message name="GlobalLB.DNSSECKey.createRequest">
224
+ <part name="keys" type="tns:Common.StringSequence"/>
225
+ <part name="sizes" type="tns:Common.ULongSequence"/>
226
+ <part name="types" type="tns:GlobalLB.DNSSECKey.KeyTypeSequence"/>
227
+ <part name="algorithms" type="tns:GlobalLB.DNSSECKey.KeyAlgorithmSequence"/>
228
+ <part name="fips" type="tns:Common.EnabledStateSequence"/>
229
+ </message>
230
+ <message name="GlobalLB.DNSSECKey.createResponse">
231
+ </message>
232
+
233
+ <message name="GlobalLB.DNSSECKey.create_v2Request">
234
+ <part name="keys" type="tns:Common.StringSequence"/>
235
+ <part name="sizes" type="tns:Common.ULongSequence"/>
236
+ <part name="types" type="tns:GlobalLB.DNSSECKey.KeyTypeSequence"/>
237
+ <part name="algorithms" type="tns:GlobalLB.DNSSECKey.KeyAlgorithmSequence"/>
238
+ <part name="hsm_types" type="tns:GlobalLB.HardwareSecurityModuleTypeSequence"/>
239
+ </message>
240
+ <message name="GlobalLB.DNSSECKey.create_v2Response">
241
+ </message>
242
+
243
+ <message name="GlobalLB.DNSSECKey.create_manualRequest">
244
+ <part name="keys" type="tns:Common.StringSequence"/>
245
+ <part name="types" type="tns:GlobalLB.DNSSECKey.KeyTypeSequence"/>
246
+ <part name="algorithms" type="tns:GlobalLB.DNSSECKey.KeyAlgorithmSequence"/>
247
+ <part name="hsm_types" type="tns:GlobalLB.HardwareSecurityModuleTypeSequence"/>
248
+ <part name="cert_files" type="tns:Common.StringSequence"/>
249
+ <part name="key_files" type="tns:Common.StringSequence"/>
250
+ </message>
251
+ <message name="GlobalLB.DNSSECKey.create_manualResponse">
252
+ </message>
253
+
254
+ <message name="GlobalLB.DNSSECKey.delete_keyRequest">
255
+ <part name="keys" type="tns:Common.StringSequence"/>
256
+ </message>
257
+ <message name="GlobalLB.DNSSECKey.delete_keyResponse">
258
+ </message>
259
+
260
+ <message name="GlobalLB.DNSSECKey.delete_all_keysRequest">
261
+ </message>
262
+ <message name="GlobalLB.DNSSECKey.delete_all_keysResponse">
263
+ </message>
264
+
265
+ <message name="GlobalLB.DNSSECKey.get_sizeRequest">
266
+ <part name="keys" type="tns:Common.StringSequence"/>
267
+ </message>
268
+ <message name="GlobalLB.DNSSECKey.get_sizeResponse">
269
+ <part name="return" type="tns:Common.ULongSequence"/>
270
+ </message>
271
+
272
+ <message name="GlobalLB.DNSSECKey.get_typeRequest">
273
+ <part name="keys" type="tns:Common.StringSequence"/>
274
+ </message>
275
+ <message name="GlobalLB.DNSSECKey.get_typeResponse">
276
+ <part name="return" type="tns:GlobalLB.DNSSECKey.KeyTypeSequence"/>
277
+ </message>
278
+
279
+ <message name="GlobalLB.DNSSECKey.get_algorithmRequest">
280
+ <part name="keys" type="tns:Common.StringSequence"/>
281
+ </message>
282
+ <message name="GlobalLB.DNSSECKey.get_algorithmResponse">
283
+ <part name="return" type="tns:GlobalLB.DNSSECKey.KeyAlgorithmSequence"/>
284
+ </message>
285
+
286
+ <message name="GlobalLB.DNSSECKey.get_fips_stateRequest">
287
+ <part name="keys" type="tns:Common.StringSequence"/>
288
+ </message>
289
+ <message name="GlobalLB.DNSSECKey.get_fips_stateResponse">
290
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
291
+ </message>
292
+
293
+ <message name="GlobalLB.DNSSECKey.get_hardware_security_module_typeRequest">
294
+ <part name="keys" type="tns:Common.StringSequence"/>
295
+ </message>
296
+ <message name="GlobalLB.DNSSECKey.get_hardware_security_module_typeResponse">
297
+ <part name="return" type="tns:GlobalLB.HardwareSecurityModuleTypeSequence"/>
298
+ </message>
299
+
300
+ <message name="GlobalLB.DNSSECKey.set_enabled_stateRequest">
301
+ <part name="keys" type="tns:Common.StringSequence"/>
302
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
303
+ </message>
304
+ <message name="GlobalLB.DNSSECKey.set_enabled_stateResponse">
305
+ </message>
306
+
307
+ <message name="GlobalLB.DNSSECKey.get_enabled_stateRequest">
308
+ <part name="keys" type="tns:Common.StringSequence"/>
309
+ </message>
310
+ <message name="GlobalLB.DNSSECKey.get_enabled_stateResponse">
311
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
312
+ </message>
313
+
314
+ <message name="GlobalLB.DNSSECKey.set_time_to_liveRequest">
315
+ <part name="keys" type="tns:Common.StringSequence"/>
316
+ <part name="times" type="tns:Common.ULongSequence"/>
317
+ </message>
318
+ <message name="GlobalLB.DNSSECKey.set_time_to_liveResponse">
319
+ </message>
320
+
321
+ <message name="GlobalLB.DNSSECKey.get_time_to_liveRequest">
322
+ <part name="keys" type="tns:Common.StringSequence"/>
323
+ </message>
324
+ <message name="GlobalLB.DNSSECKey.get_time_to_liveResponse">
325
+ <part name="return" type="tns:Common.ULongSequence"/>
326
+ </message>
327
+
328
+ <message name="GlobalLB.DNSSECKey.set_rollover_periodRequest">
329
+ <part name="keys" type="tns:Common.StringSequence"/>
330
+ <part name="times" type="tns:Common.ULongSequence"/>
331
+ </message>
332
+ <message name="GlobalLB.DNSSECKey.set_rollover_periodResponse">
333
+ </message>
334
+
335
+ <message name="GlobalLB.DNSSECKey.get_rollover_periodRequest">
336
+ <part name="keys" type="tns:Common.StringSequence"/>
337
+ </message>
338
+ <message name="GlobalLB.DNSSECKey.get_rollover_periodResponse">
339
+ <part name="return" type="tns:Common.ULongSequence"/>
340
+ </message>
341
+
342
+ <message name="GlobalLB.DNSSECKey.set_expiration_periodRequest">
343
+ <part name="keys" type="tns:Common.StringSequence"/>
344
+ <part name="times" type="tns:Common.ULongSequence"/>
345
+ </message>
346
+ <message name="GlobalLB.DNSSECKey.set_expiration_periodResponse">
347
+ </message>
348
+
349
+ <message name="GlobalLB.DNSSECKey.get_expiration_periodRequest">
350
+ <part name="keys" type="tns:Common.StringSequence"/>
351
+ </message>
352
+ <message name="GlobalLB.DNSSECKey.get_expiration_periodResponse">
353
+ <part name="return" type="tns:Common.ULongSequence"/>
354
+ </message>
355
+
356
+ <message name="GlobalLB.DNSSECKey.set_signature_validity_periodRequest">
357
+ <part name="keys" type="tns:Common.StringSequence"/>
358
+ <part name="times" type="tns:Common.ULongSequence"/>
359
+ </message>
360
+ <message name="GlobalLB.DNSSECKey.set_signature_validity_periodResponse">
361
+ </message>
362
+
363
+ <message name="GlobalLB.DNSSECKey.get_signature_validity_periodRequest">
364
+ <part name="keys" type="tns:Common.StringSequence"/>
365
+ </message>
366
+ <message name="GlobalLB.DNSSECKey.get_signature_validity_periodResponse">
367
+ <part name="return" type="tns:Common.ULongSequence"/>
368
+ </message>
369
+
370
+ <message name="GlobalLB.DNSSECKey.set_signature_publication_periodRequest">
371
+ <part name="keys" type="tns:Common.StringSequence"/>
372
+ <part name="times" type="tns:Common.ULongSequence"/>
373
+ </message>
374
+ <message name="GlobalLB.DNSSECKey.set_signature_publication_periodResponse">
375
+ </message>
376
+
377
+ <message name="GlobalLB.DNSSECKey.get_signature_publication_periodRequest">
378
+ <part name="keys" type="tns:Common.StringSequence"/>
379
+ </message>
380
+ <message name="GlobalLB.DNSSECKey.get_signature_publication_periodResponse">
381
+ <part name="return" type="tns:Common.ULongSequence"/>
382
+ </message>
383
+
384
+ <message name="GlobalLB.DNSSECKey.set_descriptionRequest">
385
+ <part name="keys" type="tns:Common.StringSequence"/>
386
+ <part name="descriptions" type="tns:Common.StringSequence"/>
387
+ </message>
388
+ <message name="GlobalLB.DNSSECKey.set_descriptionResponse">
389
+ </message>
390
+
391
+ <message name="GlobalLB.DNSSECKey.get_descriptionRequest">
392
+ <part name="keys" type="tns:Common.StringSequence"/>
393
+ </message>
394
+ <message name="GlobalLB.DNSSECKey.get_descriptionResponse">
395
+ <part name="return" type="tns:Common.StringSequence"/>
396
+ </message>
397
+
398
+ <message name="GlobalLB.DNSSECKey.get_certificate_fileRequest">
399
+ <part name="keys" type="tns:Common.StringSequence"/>
400
+ </message>
401
+ <message name="GlobalLB.DNSSECKey.get_certificate_fileResponse">
402
+ <part name="return" type="tns:Common.StringSequence"/>
403
+ </message>
404
+
405
+ <message name="GlobalLB.DNSSECKey.get_key_fileRequest">
406
+ <part name="keys" type="tns:Common.StringSequence"/>
407
+ </message>
408
+ <message name="GlobalLB.DNSSECKey.get_key_fileResponse">
409
+ <part name="return" type="tns:Common.StringSequence"/>
410
+ </message>
411
+
412
+ <message name="GlobalLB.DNSSECKey.get_generationRequest">
413
+ <part name="keys" type="tns:Common.StringSequence"/>
414
+ </message>
415
+ <message name="GlobalLB.DNSSECKey.get_generationResponse">
416
+ <part name="return" type="tns:Common.ULong64SequenceSequence"/>
417
+ </message>
418
+
419
+ <message name="GlobalLB.DNSSECKey.set_generation_rollover_timeRequest">
420
+ <part name="keys" type="tns:Common.StringSequence"/>
421
+ <part name="generations" type="tns:Common.ULong64SequenceSequence"/>
422
+ <part name="times" type="tns:Common.TimeStampSequenceSequence"/>
423
+ </message>
424
+ <message name="GlobalLB.DNSSECKey.set_generation_rollover_timeResponse">
425
+ </message>
426
+
427
+ <message name="GlobalLB.DNSSECKey.get_generation_rollover_timeRequest">
428
+ <part name="keys" type="tns:Common.StringSequence"/>
429
+ <part name="generations" type="tns:Common.ULong64SequenceSequence"/>
430
+ </message>
431
+ <message name="GlobalLB.DNSSECKey.get_generation_rollover_timeResponse">
432
+ <part name="return" type="tns:Common.TimeStampSequenceSequence"/>
433
+ </message>
434
+
435
+ <message name="GlobalLB.DNSSECKey.set_generation_expiration_timeRequest">
436
+ <part name="keys" type="tns:Common.StringSequence"/>
437
+ <part name="generations" type="tns:Common.ULong64SequenceSequence"/>
438
+ <part name="times" type="tns:Common.TimeStampSequenceSequence"/>
439
+ </message>
440
+ <message name="GlobalLB.DNSSECKey.set_generation_expiration_timeResponse">
441
+ </message>
442
+
443
+ <message name="GlobalLB.DNSSECKey.get_generation_expiration_timeRequest">
444
+ <part name="keys" type="tns:Common.StringSequence"/>
445
+ <part name="generations" type="tns:Common.ULong64SequenceSequence"/>
446
+ </message>
447
+ <message name="GlobalLB.DNSSECKey.get_generation_expiration_timeResponse">
448
+ <part name="return" type="tns:Common.TimeStampSequenceSequence"/>
449
+ </message>
450
+
451
+ <message name="GlobalLB.DNSSECKey.get_generation_public_textRequest">
452
+ <part name="keys" type="tns:Common.StringSequence"/>
453
+ <part name="generations" type="tns:Common.ULong64SequenceSequence"/>
454
+ </message>
455
+ <message name="GlobalLB.DNSSECKey.get_generation_public_textResponse">
456
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
457
+ </message>
458
+
459
+ <message name="GlobalLB.DNSSECKey.get_generation_creatorRequest">
460
+ <part name="keys" type="tns:Common.StringSequence"/>
461
+ <part name="generations" type="tns:Common.ULong64SequenceSequence"/>
462
+ </message>
463
+ <message name="GlobalLB.DNSSECKey.get_generation_creatorResponse">
464
+ <part name="return" type="tns:Common.StringSequenceSequence"/>
465
+ </message>
466
+
467
+ <message name="GlobalLB.DNSSECKey.get_generation_key_tagRequest">
468
+ <part name="keys" type="tns:Common.StringSequence"/>
469
+ <part name="generations" type="tns:Common.ULong64SequenceSequence"/>
470
+ </message>
471
+ <message name="GlobalLB.DNSSECKey.get_generation_key_tagResponse">
472
+ <part name="return" type="tns:Common.UShortSequenceSequence"/>
473
+ </message>
474
+
475
+ <message name="GlobalLB.DNSSECKey.get_versionRequest">
476
+ </message>
477
+ <message name="GlobalLB.DNSSECKey.get_versionResponse">
478
+ <part name="return" type="xsd:string"/>
479
+ </message>
480
+
481
+ <!-- portType -->
482
+
483
+ <portType name="GlobalLB.DNSSECKeyPortType">
484
+ <operation name="get_list">
485
+ <documentation>
486
+ Gets the names of all DNSSEC keys.
487
+
488
+ </documentation>
489
+ <input message="tns:GlobalLB.DNSSECKey.get_listRequest"/>
490
+ <output message="tns:GlobalLB.DNSSECKey.get_listResponse"/>
491
+ </operation>
492
+ <operation name="create">
493
+ <documentation>
494
+ Creates a set of DNSSEC keys.
495
+
496
+ Note that the attributes specified in this method cannot be changed
497
+ afterwards.
498
+
499
+ </documentation>
500
+ <input message="tns:GlobalLB.DNSSECKey.createRequest"/>
501
+ <output message="tns:GlobalLB.DNSSECKey.createResponse"/>
502
+ </operation>
503
+ <operation name="create_v2">
504
+ <documentation>
505
+ Creates a set of automatically managed DNSSEC keys.
506
+
507
+ Note that the attributes specified in this method cannot be changed
508
+ afterwards.
509
+
510
+ </documentation>
511
+ <input message="tns:GlobalLB.DNSSECKey.create_v2Request"/>
512
+ <output message="tns:GlobalLB.DNSSECKey.create_v2Response"/>
513
+ </operation>
514
+ <operation name="create_manual">
515
+ <documentation>
516
+ Creates a set of manually managed DNSSEC keys.
517
+
518
+ Note that the attributes specified in this method cannot be changed
519
+ afterwards.
520
+
521
+ </documentation>
522
+ <input message="tns:GlobalLB.DNSSECKey.create_manualRequest"/>
523
+ <output message="tns:GlobalLB.DNSSECKey.create_manualResponse"/>
524
+ </operation>
525
+ <operation name="delete_key">
526
+ <documentation>
527
+ Deletes a set of DNSSEC keys.
528
+
529
+ </documentation>
530
+ <input message="tns:GlobalLB.DNSSECKey.delete_keyRequest"/>
531
+ <output message="tns:GlobalLB.DNSSECKey.delete_keyResponse"/>
532
+ </operation>
533
+ <operation name="delete_all_keys">
534
+ <documentation>
535
+ Deletes all DNSSEC keys.
536
+
537
+ </documentation>
538
+ <input message="tns:GlobalLB.DNSSECKey.delete_all_keysRequest"/>
539
+ <output message="tns:GlobalLB.DNSSECKey.delete_all_keysResponse"/>
540
+ </operation>
541
+ <operation name="get_size">
542
+ <documentation>
543
+ Gets the digital signature sizes for a set of DNSSEC keys.
544
+
545
+ </documentation>
546
+ <input message="tns:GlobalLB.DNSSECKey.get_sizeRequest"/>
547
+ <output message="tns:GlobalLB.DNSSECKey.get_sizeResponse"/>
548
+ </operation>
549
+ <operation name="get_type">
550
+ <documentation>
551
+ Gets the types for a set of DNSSEC keys.
552
+
553
+ </documentation>
554
+ <input message="tns:GlobalLB.DNSSECKey.get_typeRequest"/>
555
+ <output message="tns:GlobalLB.DNSSECKey.get_typeResponse"/>
556
+ </operation>
557
+ <operation name="get_algorithm">
558
+ <documentation>
559
+ Gets the algorithms used to digitally sign DNS record groups and
560
+ keys for a set of DNSSEC keys.
561
+
562
+ </documentation>
563
+ <input message="tns:GlobalLB.DNSSECKey.get_algorithmRequest"/>
564
+ <output message="tns:GlobalLB.DNSSECKey.get_algorithmResponse"/>
565
+ </operation>
566
+ <operation name="get_fips_state">
567
+ <documentation>
568
+ Gets the enabled state for using the FIPS device to store and
569
+ retrieve keys for a set of DNSSEC keys.
570
+
571
+ </documentation>
572
+ <input message="tns:GlobalLB.DNSSECKey.get_fips_stateRequest"/>
573
+ <output message="tns:GlobalLB.DNSSECKey.get_fips_stateResponse"/>
574
+ </operation>
575
+ <operation name="get_hardware_security_module_type">
576
+ <documentation>
577
+ Gets the hardware security module type to specify whether keys are
578
+ stored locally or on an external hardware security module for a set
579
+ of DNSSEC keys.
580
+
581
+ </documentation>
582
+ <input message="tns:GlobalLB.DNSSECKey.get_hardware_security_module_typeRequest"/>
583
+ <output message="tns:GlobalLB.DNSSECKey.get_hardware_security_module_typeResponse"/>
584
+ </operation>
585
+ <operation name="set_enabled_state">
586
+ <documentation>
587
+ Sets the enabled state for a set of DNSSEC keys.
588
+
589
+ If a DNSSEC key is disabled, the key is still published, but it is
590
+ not used to sign DNS record groups or keys.
591
+
592
+ </documentation>
593
+ <input message="tns:GlobalLB.DNSSECKey.set_enabled_stateRequest"/>
594
+ <output message="tns:GlobalLB.DNSSECKey.set_enabled_stateResponse"/>
595
+ </operation>
596
+ <operation name="get_enabled_state">
597
+ <documentation>
598
+ Gets the enabled state for a set of DNSSEC keys.
599
+
600
+ </documentation>
601
+ <input message="tns:GlobalLB.DNSSECKey.get_enabled_stateRequest"/>
602
+ <output message="tns:GlobalLB.DNSSECKey.get_enabled_stateResponse"/>
603
+ </operation>
604
+ <operation name="set_time_to_live">
605
+ <documentation>
606
+ Sets the Time To Live (TTL) for the DNSKEY record types.
607
+
608
+ </documentation>
609
+ <input message="tns:GlobalLB.DNSSECKey.set_time_to_liveRequest"/>
610
+ <output message="tns:GlobalLB.DNSSECKey.set_time_to_liveResponse"/>
611
+ </operation>
612
+ <operation name="get_time_to_live">
613
+ <documentation>
614
+ Gets the Time To Live (TTL) for the DNSKEY record types.
615
+
616
+ </documentation>
617
+ <input message="tns:GlobalLB.DNSSECKey.get_time_to_liveRequest"/>
618
+ <output message="tns:GlobalLB.DNSSECKey.get_time_to_liveResponse"/>
619
+ </operation>
620
+ <operation name="set_rollover_period">
621
+ <documentation>
622
+ Sets the rollover period for a set of DNSSEC keys.
623
+
624
+ The rollover period is the time between the activation of one
625
+ DNSSEC key generation and the activation of the next DNSSEC key
626
+ generation.
627
+
628
+ </documentation>
629
+ <input message="tns:GlobalLB.DNSSECKey.set_rollover_periodRequest"/>
630
+ <output message="tns:GlobalLB.DNSSECKey.set_rollover_periodResponse"/>
631
+ </operation>
632
+ <operation name="get_rollover_period">
633
+ <documentation>
634
+ Gets the rollover period for a set of DNSSEC keys.
635
+
636
+ </documentation>
637
+ <input message="tns:GlobalLB.DNSSECKey.get_rollover_periodRequest"/>
638
+ <output message="tns:GlobalLB.DNSSECKey.get_rollover_periodResponse"/>
639
+ </operation>
640
+ <operation name="set_expiration_period">
641
+ <documentation>
642
+ Sets the expiration period for a set of DNSSEC keys.
643
+
644
+ The expiration period is the time between the activation of a
645
+ DNSSEC key generation and its expiration. It must be longer than
646
+ the rollover period.
647
+
648
+ </documentation>
649
+ <input message="tns:GlobalLB.DNSSECKey.set_expiration_periodRequest"/>
650
+ <output message="tns:GlobalLB.DNSSECKey.set_expiration_periodResponse"/>
651
+ </operation>
652
+ <operation name="get_expiration_period">
653
+ <documentation>
654
+ Gets the expiration period for a set of DNSSEC keys.
655
+
656
+ </documentation>
657
+ <input message="tns:GlobalLB.DNSSECKey.get_expiration_periodRequest"/>
658
+ <output message="tns:GlobalLB.DNSSECKey.get_expiration_periodResponse"/>
659
+ </operation>
660
+ <operation name="set_signature_validity_period">
661
+ <documentation>
662
+ Sets the RRSIG record signature validity period for a set of DNSSEC
663
+ keys.
664
+
665
+ This value is the period for which the digital signature is valid
666
+ and is stored in the RRSIG record and should be significantly
667
+ smaller than the Time To Live period.
668
+
669
+ </documentation>
670
+ <input message="tns:GlobalLB.DNSSECKey.set_signature_validity_periodRequest"/>
671
+ <output message="tns:GlobalLB.DNSSECKey.set_signature_validity_periodResponse"/>
672
+ </operation>
673
+ <operation name="get_signature_validity_period">
674
+ <documentation>
675
+ Gets the RRSIG record signature validity period for a set of DNSSEC
676
+ keys.
677
+
678
+ </documentation>
679
+ <input message="tns:GlobalLB.DNSSECKey.get_signature_validity_periodRequest"/>
680
+ <output message="tns:GlobalLB.DNSSECKey.get_signature_validity_periodResponse"/>
681
+ </operation>
682
+ <operation name="set_signature_publication_period">
683
+ <documentation>
684
+ Sets the RRSIG record signature publication period for a set of
685
+ DNSSEC keys.
686
+
687
+ The signature publication period is the period in which the digital
688
+ signature is published, is stored in the RRSIG record, and should
689
+ be significantly shorter than the Time To Live period and must be
690
+ shorter than the signature validity period.
691
+
692
+ </documentation>
693
+ <input message="tns:GlobalLB.DNSSECKey.set_signature_publication_periodRequest"/>
694
+ <output message="tns:GlobalLB.DNSSECKey.set_signature_publication_periodResponse"/>
695
+ </operation>
696
+ <operation name="get_signature_publication_period">
697
+ <documentation>
698
+ Gets the RRSIG record signature publication period for a set of
699
+ DNSSEC keys.
700
+
701
+ </documentation>
702
+ <input message="tns:GlobalLB.DNSSECKey.get_signature_publication_periodRequest"/>
703
+ <output message="tns:GlobalLB.DNSSECKey.get_signature_publication_periodResponse"/>
704
+ </operation>
705
+ <operation name="set_description">
706
+ <documentation>
707
+ Sets the description for a set of DNSSEC keys.
708
+
709
+ This is an arbitrary field which can be used for any purpose.
710
+
711
+ </documentation>
712
+ <input message="tns:GlobalLB.DNSSECKey.set_descriptionRequest"/>
713
+ <output message="tns:GlobalLB.DNSSECKey.set_descriptionResponse"/>
714
+ </operation>
715
+ <operation name="get_description">
716
+ <documentation>
717
+ Gets the descriptions for a set of DNSSEC keys.
718
+
719
+ </documentation>
720
+ <input message="tns:GlobalLB.DNSSECKey.get_descriptionRequest"/>
721
+ <output message="tns:GlobalLB.DNSSECKey.get_descriptionResponse"/>
722
+ </operation>
723
+ <operation name="get_certificate_file">
724
+ <documentation>
725
+ Gets the certificate file name for a set of DNSSEC keys.
726
+
727
+ </documentation>
728
+ <input message="tns:GlobalLB.DNSSECKey.get_certificate_fileRequest"/>
729
+ <output message="tns:GlobalLB.DNSSECKey.get_certificate_fileResponse"/>
730
+ </operation>
731
+ <operation name="get_key_file">
732
+ <documentation>
733
+ Gets the key file name for a set of DNSSEC keys.
734
+
735
+ </documentation>
736
+ <input message="tns:GlobalLB.DNSSECKey.get_key_fileRequest"/>
737
+ <output message="tns:GlobalLB.DNSSECKey.get_key_fileResponse"/>
738
+ </operation>
739
+ <operation name="get_generation">
740
+ <documentation>
741
+ Gets the existing DNSSEC key generation identifiers for a set of
742
+ DNSSEC keys.
743
+
744
+ The key generation identifier is a simple generation count, unique
745
+ within a single DNSSEC key.
746
+
747
+ </documentation>
748
+ <input message="tns:GlobalLB.DNSSECKey.get_generationRequest"/>
749
+ <output message="tns:GlobalLB.DNSSECKey.get_generationResponse"/>
750
+ </operation>
751
+ <operation name="set_generation_rollover_time">
752
+ <documentation>
753
+ Sets the rollover date and time for a set of DNSSEC key
754
+ generations.
755
+
756
+ This method can be used for any reason, but most likely used to
757
+ invalidate a possibly compromised key by forcing the creation of a
758
+ new key generation.
759
+
760
+ </documentation>
761
+ <input message="tns:GlobalLB.DNSSECKey.set_generation_rollover_timeRequest"/>
762
+ <output message="tns:GlobalLB.DNSSECKey.set_generation_rollover_timeResponse"/>
763
+ </operation>
764
+ <operation name="get_generation_rollover_time">
765
+ <documentation>
766
+ Gets the rollover date and time for a set of DNSSEC key
767
+ generations.
768
+
769
+ </documentation>
770
+ <input message="tns:GlobalLB.DNSSECKey.get_generation_rollover_timeRequest"/>
771
+ <output message="tns:GlobalLB.DNSSECKey.get_generation_rollover_timeResponse"/>
772
+ </operation>
773
+ <operation name="set_generation_expiration_time">
774
+ <documentation>
775
+ Sets the expiration date and time for a set of DNSSEC key
776
+ generations.
777
+
778
+ This method can be used for any reason, but most likely used to
779
+ invalidate a possibly compromised key.
780
+
781
+ </documentation>
782
+ <input message="tns:GlobalLB.DNSSECKey.set_generation_expiration_timeRequest"/>
783
+ <output message="tns:GlobalLB.DNSSECKey.set_generation_expiration_timeResponse"/>
784
+ </operation>
785
+ <operation name="get_generation_expiration_time">
786
+ <documentation>
787
+ Gets the expiration date and time for a set of DNSSEC key
788
+ generations.
789
+
790
+ </documentation>
791
+ <input message="tns:GlobalLB.DNSSECKey.get_generation_expiration_timeRequest"/>
792
+ <output message="tns:GlobalLB.DNSSECKey.get_generation_expiration_timeResponse"/>
793
+ </operation>
794
+ <operation name="get_generation_public_text">
795
+ <documentation>
796
+ Gets the public text for a set of DNSSEC key generations.
797
+
798
+ </documentation>
799
+ <input message="tns:GlobalLB.DNSSECKey.get_generation_public_textRequest"/>
800
+ <output message="tns:GlobalLB.DNSSECKey.get_generation_public_textResponse"/>
801
+ </operation>
802
+ <operation name="get_generation_creator">
803
+ <documentation>
804
+ Gets the creator for a set of DNSSEC key generations, which
805
+ is the hostname of the BIG-IP that created the generation.
806
+
807
+ </documentation>
808
+ <input message="tns:GlobalLB.DNSSECKey.get_generation_creatorRequest"/>
809
+ <output message="tns:GlobalLB.DNSSECKey.get_generation_creatorResponse"/>
810
+ </operation>
811
+ <operation name="get_generation_key_tag">
812
+ <documentation>
813
+ Gets the DNSSEC RR hash for a set of DNSSEC key generations.
814
+
815
+ </documentation>
816
+ <input message="tns:GlobalLB.DNSSECKey.get_generation_key_tagRequest"/>
817
+ <output message="tns:GlobalLB.DNSSECKey.get_generation_key_tagResponse"/>
818
+ </operation>
819
+ <operation name="get_version">
820
+ <documentation>
821
+ Get the version information for this interface.
822
+
823
+ </documentation>
824
+ <input message="tns:GlobalLB.DNSSECKey.get_versionRequest"/>
825
+ <output message="tns:GlobalLB.DNSSECKey.get_versionResponse"/>
826
+ </operation>
827
+ </portType>
828
+
829
+ <!-- binding -->
830
+
831
+ <binding name="GlobalLB.DNSSECKeyBinding" type="tns:GlobalLB.DNSSECKeyPortType">
832
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
833
+ <operation name="get_list">
834
+ <documentation>
835
+ Gets the names of all DNSSEC keys.
836
+
837
+ </documentation>
838
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
839
+ <input>
840
+ <soap:body
841
+ use="encoded"
842
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
843
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
844
+ </input>
845
+ <output>
846
+ <soap:body
847
+ use="encoded"
848
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
849
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
850
+ </output>
851
+ </operation>
852
+
853
+ <operation name="create">
854
+ <documentation>
855
+ Creates a set of DNSSEC keys.
856
+
857
+ Note that the attributes specified in this method cannot be changed
858
+ afterwards.
859
+
860
+ </documentation>
861
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
862
+ <input>
863
+ <soap:body
864
+ use="encoded"
865
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
866
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
867
+ </input>
868
+ <output>
869
+ <soap:body
870
+ use="encoded"
871
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
872
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
873
+ </output>
874
+ </operation>
875
+
876
+ <operation name="create_v2">
877
+ <documentation>
878
+ Creates a set of automatically managed DNSSEC keys.
879
+
880
+ Note that the attributes specified in this method cannot be changed
881
+ afterwards.
882
+
883
+ </documentation>
884
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
885
+ <input>
886
+ <soap:body
887
+ use="encoded"
888
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
889
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
890
+ </input>
891
+ <output>
892
+ <soap:body
893
+ use="encoded"
894
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
895
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
896
+ </output>
897
+ </operation>
898
+
899
+ <operation name="create_manual">
900
+ <documentation>
901
+ Creates a set of manually managed DNSSEC keys.
902
+
903
+ Note that the attributes specified in this method cannot be changed
904
+ afterwards.
905
+
906
+ </documentation>
907
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
908
+ <input>
909
+ <soap:body
910
+ use="encoded"
911
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
912
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
913
+ </input>
914
+ <output>
915
+ <soap:body
916
+ use="encoded"
917
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
918
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
919
+ </output>
920
+ </operation>
921
+
922
+ <operation name="delete_key">
923
+ <documentation>
924
+ Deletes a set of DNSSEC keys.
925
+
926
+ </documentation>
927
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
928
+ <input>
929
+ <soap:body
930
+ use="encoded"
931
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
932
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
933
+ </input>
934
+ <output>
935
+ <soap:body
936
+ use="encoded"
937
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
938
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
939
+ </output>
940
+ </operation>
941
+
942
+ <operation name="delete_all_keys">
943
+ <documentation>
944
+ Deletes all DNSSEC keys.
945
+
946
+ </documentation>
947
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
948
+ <input>
949
+ <soap:body
950
+ use="encoded"
951
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
952
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
953
+ </input>
954
+ <output>
955
+ <soap:body
956
+ use="encoded"
957
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
958
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
959
+ </output>
960
+ </operation>
961
+
962
+ <operation name="get_size">
963
+ <documentation>
964
+ Gets the digital signature sizes for a set of DNSSEC keys.
965
+
966
+ </documentation>
967
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
968
+ <input>
969
+ <soap:body
970
+ use="encoded"
971
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
972
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
973
+ </input>
974
+ <output>
975
+ <soap:body
976
+ use="encoded"
977
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
978
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
979
+ </output>
980
+ </operation>
981
+
982
+ <operation name="get_type">
983
+ <documentation>
984
+ Gets the types for a set of DNSSEC keys.
985
+
986
+ </documentation>
987
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
988
+ <input>
989
+ <soap:body
990
+ use="encoded"
991
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
992
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
993
+ </input>
994
+ <output>
995
+ <soap:body
996
+ use="encoded"
997
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
998
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
999
+ </output>
1000
+ </operation>
1001
+
1002
+ <operation name="get_algorithm">
1003
+ <documentation>
1004
+ Gets the algorithms used to digitally sign DNS record groups and
1005
+ keys for a set of DNSSEC keys.
1006
+
1007
+ </documentation>
1008
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1009
+ <input>
1010
+ <soap:body
1011
+ use="encoded"
1012
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1013
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1014
+ </input>
1015
+ <output>
1016
+ <soap:body
1017
+ use="encoded"
1018
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1019
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1020
+ </output>
1021
+ </operation>
1022
+
1023
+ <operation name="get_fips_state">
1024
+ <documentation>
1025
+ Gets the enabled state for using the FIPS device to store and
1026
+ retrieve keys for a set of DNSSEC keys.
1027
+
1028
+ </documentation>
1029
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1030
+ <input>
1031
+ <soap:body
1032
+ use="encoded"
1033
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1034
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1035
+ </input>
1036
+ <output>
1037
+ <soap:body
1038
+ use="encoded"
1039
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1040
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1041
+ </output>
1042
+ </operation>
1043
+
1044
+ <operation name="get_hardware_security_module_type">
1045
+ <documentation>
1046
+ Gets the hardware security module type to specify whether keys are
1047
+ stored locally or on an external hardware security module for a set
1048
+ of DNSSEC keys.
1049
+
1050
+ </documentation>
1051
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1052
+ <input>
1053
+ <soap:body
1054
+ use="encoded"
1055
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1056
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1057
+ </input>
1058
+ <output>
1059
+ <soap:body
1060
+ use="encoded"
1061
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1062
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1063
+ </output>
1064
+ </operation>
1065
+
1066
+ <operation name="set_enabled_state">
1067
+ <documentation>
1068
+ Sets the enabled state for a set of DNSSEC keys.
1069
+
1070
+ If a DNSSEC key is disabled, the key is still published, but it is
1071
+ not used to sign DNS record groups or keys.
1072
+
1073
+ </documentation>
1074
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1075
+ <input>
1076
+ <soap:body
1077
+ use="encoded"
1078
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1079
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1080
+ </input>
1081
+ <output>
1082
+ <soap:body
1083
+ use="encoded"
1084
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1085
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1086
+ </output>
1087
+ </operation>
1088
+
1089
+ <operation name="get_enabled_state">
1090
+ <documentation>
1091
+ Gets the enabled state for a set of DNSSEC keys.
1092
+
1093
+ </documentation>
1094
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1095
+ <input>
1096
+ <soap:body
1097
+ use="encoded"
1098
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1099
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1100
+ </input>
1101
+ <output>
1102
+ <soap:body
1103
+ use="encoded"
1104
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1105
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1106
+ </output>
1107
+ </operation>
1108
+
1109
+ <operation name="set_time_to_live">
1110
+ <documentation>
1111
+ Sets the Time To Live (TTL) for the DNSKEY record types.
1112
+
1113
+ </documentation>
1114
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1115
+ <input>
1116
+ <soap:body
1117
+ use="encoded"
1118
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1119
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1120
+ </input>
1121
+ <output>
1122
+ <soap:body
1123
+ use="encoded"
1124
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1125
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1126
+ </output>
1127
+ </operation>
1128
+
1129
+ <operation name="get_time_to_live">
1130
+ <documentation>
1131
+ Gets the Time To Live (TTL) for the DNSKEY record types.
1132
+
1133
+ </documentation>
1134
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1135
+ <input>
1136
+ <soap:body
1137
+ use="encoded"
1138
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1139
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1140
+ </input>
1141
+ <output>
1142
+ <soap:body
1143
+ use="encoded"
1144
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1145
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1146
+ </output>
1147
+ </operation>
1148
+
1149
+ <operation name="set_rollover_period">
1150
+ <documentation>
1151
+ Sets the rollover period for a set of DNSSEC keys.
1152
+
1153
+ The rollover period is the time between the activation of one
1154
+ DNSSEC key generation and the activation of the next DNSSEC key
1155
+ generation.
1156
+
1157
+ </documentation>
1158
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1159
+ <input>
1160
+ <soap:body
1161
+ use="encoded"
1162
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1163
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1164
+ </input>
1165
+ <output>
1166
+ <soap:body
1167
+ use="encoded"
1168
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1169
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1170
+ </output>
1171
+ </operation>
1172
+
1173
+ <operation name="get_rollover_period">
1174
+ <documentation>
1175
+ Gets the rollover period for a set of DNSSEC keys.
1176
+
1177
+ </documentation>
1178
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1179
+ <input>
1180
+ <soap:body
1181
+ use="encoded"
1182
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1183
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1184
+ </input>
1185
+ <output>
1186
+ <soap:body
1187
+ use="encoded"
1188
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1189
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1190
+ </output>
1191
+ </operation>
1192
+
1193
+ <operation name="set_expiration_period">
1194
+ <documentation>
1195
+ Sets the expiration period for a set of DNSSEC keys.
1196
+
1197
+ The expiration period is the time between the activation of a
1198
+ DNSSEC key generation and its expiration. It must be longer than
1199
+ the rollover period.
1200
+
1201
+ </documentation>
1202
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1203
+ <input>
1204
+ <soap:body
1205
+ use="encoded"
1206
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1207
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1208
+ </input>
1209
+ <output>
1210
+ <soap:body
1211
+ use="encoded"
1212
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1213
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1214
+ </output>
1215
+ </operation>
1216
+
1217
+ <operation name="get_expiration_period">
1218
+ <documentation>
1219
+ Gets the expiration period for a set of DNSSEC keys.
1220
+
1221
+ </documentation>
1222
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1223
+ <input>
1224
+ <soap:body
1225
+ use="encoded"
1226
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1227
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1228
+ </input>
1229
+ <output>
1230
+ <soap:body
1231
+ use="encoded"
1232
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1233
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1234
+ </output>
1235
+ </operation>
1236
+
1237
+ <operation name="set_signature_validity_period">
1238
+ <documentation>
1239
+ Sets the RRSIG record signature validity period for a set of DNSSEC
1240
+ keys.
1241
+
1242
+ This value is the period for which the digital signature is valid
1243
+ and is stored in the RRSIG record and should be significantly
1244
+ smaller than the Time To Live period.
1245
+
1246
+ </documentation>
1247
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1248
+ <input>
1249
+ <soap:body
1250
+ use="encoded"
1251
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1252
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1253
+ </input>
1254
+ <output>
1255
+ <soap:body
1256
+ use="encoded"
1257
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1258
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1259
+ </output>
1260
+ </operation>
1261
+
1262
+ <operation name="get_signature_validity_period">
1263
+ <documentation>
1264
+ Gets the RRSIG record signature validity period for a set of DNSSEC
1265
+ keys.
1266
+
1267
+ </documentation>
1268
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1269
+ <input>
1270
+ <soap:body
1271
+ use="encoded"
1272
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1273
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1274
+ </input>
1275
+ <output>
1276
+ <soap:body
1277
+ use="encoded"
1278
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1279
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1280
+ </output>
1281
+ </operation>
1282
+
1283
+ <operation name="set_signature_publication_period">
1284
+ <documentation>
1285
+ Sets the RRSIG record signature publication period for a set of
1286
+ DNSSEC keys.
1287
+
1288
+ The signature publication period is the period in which the digital
1289
+ signature is published, is stored in the RRSIG record, and should
1290
+ be significantly shorter than the Time To Live period and must be
1291
+ shorter than the signature validity period.
1292
+
1293
+ </documentation>
1294
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1295
+ <input>
1296
+ <soap:body
1297
+ use="encoded"
1298
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1299
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1300
+ </input>
1301
+ <output>
1302
+ <soap:body
1303
+ use="encoded"
1304
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1305
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1306
+ </output>
1307
+ </operation>
1308
+
1309
+ <operation name="get_signature_publication_period">
1310
+ <documentation>
1311
+ Gets the RRSIG record signature publication period for a set of
1312
+ DNSSEC keys.
1313
+
1314
+ </documentation>
1315
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1316
+ <input>
1317
+ <soap:body
1318
+ use="encoded"
1319
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1320
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1321
+ </input>
1322
+ <output>
1323
+ <soap:body
1324
+ use="encoded"
1325
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1326
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1327
+ </output>
1328
+ </operation>
1329
+
1330
+ <operation name="set_description">
1331
+ <documentation>
1332
+ Sets the description for a set of DNSSEC keys.
1333
+
1334
+ This is an arbitrary field which can be used for any purpose.
1335
+
1336
+ </documentation>
1337
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1338
+ <input>
1339
+ <soap:body
1340
+ use="encoded"
1341
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1342
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1343
+ </input>
1344
+ <output>
1345
+ <soap:body
1346
+ use="encoded"
1347
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1348
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1349
+ </output>
1350
+ </operation>
1351
+
1352
+ <operation name="get_description">
1353
+ <documentation>
1354
+ Gets the descriptions for a set of DNSSEC keys.
1355
+
1356
+ </documentation>
1357
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1358
+ <input>
1359
+ <soap:body
1360
+ use="encoded"
1361
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1362
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1363
+ </input>
1364
+ <output>
1365
+ <soap:body
1366
+ use="encoded"
1367
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1368
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1369
+ </output>
1370
+ </operation>
1371
+
1372
+ <operation name="get_certificate_file">
1373
+ <documentation>
1374
+ Gets the certificate file name for a set of DNSSEC keys.
1375
+
1376
+ </documentation>
1377
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1378
+ <input>
1379
+ <soap:body
1380
+ use="encoded"
1381
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1382
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1383
+ </input>
1384
+ <output>
1385
+ <soap:body
1386
+ use="encoded"
1387
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1388
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1389
+ </output>
1390
+ </operation>
1391
+
1392
+ <operation name="get_key_file">
1393
+ <documentation>
1394
+ Gets the key file name for a set of DNSSEC keys.
1395
+
1396
+ </documentation>
1397
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1398
+ <input>
1399
+ <soap:body
1400
+ use="encoded"
1401
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1402
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1403
+ </input>
1404
+ <output>
1405
+ <soap:body
1406
+ use="encoded"
1407
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1408
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1409
+ </output>
1410
+ </operation>
1411
+
1412
+ <operation name="get_generation">
1413
+ <documentation>
1414
+ Gets the existing DNSSEC key generation identifiers for a set of
1415
+ DNSSEC keys.
1416
+
1417
+ The key generation identifier is a simple generation count, unique
1418
+ within a single DNSSEC key.
1419
+
1420
+ </documentation>
1421
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1422
+ <input>
1423
+ <soap:body
1424
+ use="encoded"
1425
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1426
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1427
+ </input>
1428
+ <output>
1429
+ <soap:body
1430
+ use="encoded"
1431
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1432
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1433
+ </output>
1434
+ </operation>
1435
+
1436
+ <operation name="set_generation_rollover_time">
1437
+ <documentation>
1438
+ Sets the rollover date and time for a set of DNSSEC key
1439
+ generations.
1440
+
1441
+ This method can be used for any reason, but most likely used to
1442
+ invalidate a possibly compromised key by forcing the creation of a
1443
+ new key generation.
1444
+
1445
+ </documentation>
1446
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1447
+ <input>
1448
+ <soap:body
1449
+ use="encoded"
1450
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1451
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1452
+ </input>
1453
+ <output>
1454
+ <soap:body
1455
+ use="encoded"
1456
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1457
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1458
+ </output>
1459
+ </operation>
1460
+
1461
+ <operation name="get_generation_rollover_time">
1462
+ <documentation>
1463
+ Gets the rollover date and time for a set of DNSSEC key
1464
+ generations.
1465
+
1466
+ </documentation>
1467
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1468
+ <input>
1469
+ <soap:body
1470
+ use="encoded"
1471
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1472
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1473
+ </input>
1474
+ <output>
1475
+ <soap:body
1476
+ use="encoded"
1477
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1478
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1479
+ </output>
1480
+ </operation>
1481
+
1482
+ <operation name="set_generation_expiration_time">
1483
+ <documentation>
1484
+ Sets the expiration date and time for a set of DNSSEC key
1485
+ generations.
1486
+
1487
+ This method can be used for any reason, but most likely used to
1488
+ invalidate a possibly compromised key.
1489
+
1490
+ </documentation>
1491
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1492
+ <input>
1493
+ <soap:body
1494
+ use="encoded"
1495
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1496
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1497
+ </input>
1498
+ <output>
1499
+ <soap:body
1500
+ use="encoded"
1501
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1502
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1503
+ </output>
1504
+ </operation>
1505
+
1506
+ <operation name="get_generation_expiration_time">
1507
+ <documentation>
1508
+ Gets the expiration date and time for a set of DNSSEC key
1509
+ generations.
1510
+
1511
+ </documentation>
1512
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1513
+ <input>
1514
+ <soap:body
1515
+ use="encoded"
1516
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1517
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1518
+ </input>
1519
+ <output>
1520
+ <soap:body
1521
+ use="encoded"
1522
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1523
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1524
+ </output>
1525
+ </operation>
1526
+
1527
+ <operation name="get_generation_public_text">
1528
+ <documentation>
1529
+ Gets the public text for a set of DNSSEC key generations.
1530
+
1531
+ </documentation>
1532
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1533
+ <input>
1534
+ <soap:body
1535
+ use="encoded"
1536
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1537
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1538
+ </input>
1539
+ <output>
1540
+ <soap:body
1541
+ use="encoded"
1542
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1543
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1544
+ </output>
1545
+ </operation>
1546
+
1547
+ <operation name="get_generation_creator">
1548
+ <documentation>
1549
+ Gets the creator for a set of DNSSEC key generations, which
1550
+ is the hostname of the BIG-IP that created the generation.
1551
+
1552
+ </documentation>
1553
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1554
+ <input>
1555
+ <soap:body
1556
+ use="encoded"
1557
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1558
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1559
+ </input>
1560
+ <output>
1561
+ <soap:body
1562
+ use="encoded"
1563
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1564
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1565
+ </output>
1566
+ </operation>
1567
+
1568
+ <operation name="get_generation_key_tag">
1569
+ <documentation>
1570
+ Gets the DNSSEC RR hash for a set of DNSSEC key generations.
1571
+
1572
+ </documentation>
1573
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1574
+ <input>
1575
+ <soap:body
1576
+ use="encoded"
1577
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1578
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1579
+ </input>
1580
+ <output>
1581
+ <soap:body
1582
+ use="encoded"
1583
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1584
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1585
+ </output>
1586
+ </operation>
1587
+
1588
+ <operation name="get_version">
1589
+ <documentation>
1590
+ Get the version information for this interface.
1591
+
1592
+ </documentation>
1593
+ <soap:operation soapAction="urn:iControl:GlobalLB/DNSSECKey"/>
1594
+ <input>
1595
+ <soap:body
1596
+ use="encoded"
1597
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1598
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1599
+ </input>
1600
+ <output>
1601
+ <soap:body
1602
+ use="encoded"
1603
+ namespace="urn:iControl:GlobalLB/DNSSECKey"
1604
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1605
+ </output>
1606
+ </operation>
1607
+ </binding>
1608
+
1609
+ <!-- service -->
1610
+
1611
+ <service name="GlobalLB.DNSSECKey">
1612
+ <documentation>
1613
+ The DNSSECKey interface manages the cryptographic keys used for
1614
+ securing DNS information, i.e., DNSSEC. The keys managed by this
1615
+ interface can be used to sign DNS record groups and the keys
1616
+ themselves.
1617
+
1618
+ Technically, there is not a single key for each key object. This key
1619
+ is re-created on a regular schedule, which can be controlled via this
1620
+ interface. Each re-generated key is considered a new "generation" - a
1621
+ term used more in its genealogical sense than a creation sense. A
1622
+ single key generation can have its lifetime changed. Thus when using
1623
+ this interface, be careful to distinguish the attributes which apply
1624
+ to this whole process vs those that apply to a single key generation.
1625
+
1626
+ Once a key generation is created, it is fully active for the "rollover
1627
+ period". At the end of that period, the next generation's key is
1628
+ created and both keys are in use. Once the first key reaches the end
1629
+ of its "expiration period", it is no longer handed out, the generation
1630
+ is deleted, and only the second key is in use. This process continues
1631
+ ad infinitum.
1632
+
1633
+ It is important to note that these keys do not affect the processing by
1634
+ their mere existence. To take effect, they must be assigned to a
1635
+ DNSSEC zone (See the DNSSECZone interface).
1636
+
1637
+ </documentation>
1638
+ <port name="GlobalLB.DNSSECKeyPort" binding="tns:GlobalLB.DNSSECKeyBinding">
1639
+ <soap:address location="https://url_to_service"/>
1640
+ </port>
1641
+ </service>
1642
+ </definitions>