icontrol 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (151) hide show
  1. data/lib/icontrol/arx.rb +38 -8
  2. data/lib/icontrol/arx/api.rb +1 -0
  3. data/lib/icontrol/arx/chassis.rb +11 -0
  4. data/lib/icontrol/arx/export.rb +4 -1
  5. data/lib/icontrol/arx/file_change_notification.rb +25 -4
  6. data/lib/icontrol/arx/file_server.rb +2 -0
  7. data/lib/icontrol/arx/namespace.rb +2 -0
  8. data/lib/icontrol/arx/network.rb +3 -0
  9. data/lib/icontrol/arx/policy.rb +3 -0
  10. data/lib/icontrol/arx/share.rb +2 -0
  11. data/lib/icontrol/arx/virtual_service.rb +3 -0
  12. data/lib/icontrol/arx/volume.rb +2 -0
  13. data/lib/icontrol/asm.rb +18 -3
  14. data/lib/icontrol/asm/object_params.rb +12 -6
  15. data/lib/icontrol/asm/policy.rb +118 -79
  16. data/lib/icontrol/asm/system_configuration.rb +27 -19
  17. data/lib/icontrol/asm/web_application.rb +74 -52
  18. data/lib/icontrol/asm/web_application_group.rb +33 -24
  19. data/lib/icontrol/base.rb +1 -0
  20. data/lib/icontrol/base/exception.rb +1 -0
  21. data/lib/icontrol/base/icontrol/local_lb/pool.rb +7 -0
  22. data/lib/icontrol/base/icontrol_overlay.rb +6 -0
  23. data/lib/icontrol/base/predeclarations.rb +5 -4
  24. data/lib/icontrol/base/struct.rb +6 -2
  25. data/lib/icontrol/common.rb +55 -4
  26. data/lib/icontrol/global_lb.rb +22 -3
  27. data/lib/icontrol/global_lb/application.rb +63 -44
  28. data/lib/icontrol/global_lb/data_center.rb +82 -58
  29. data/lib/icontrol/global_lb/dnssec_key.rb +152 -90
  30. data/lib/icontrol/global_lb/dnssec_zone.rb +55 -35
  31. data/lib/icontrol/global_lb/globals.rb +662 -430
  32. data/lib/icontrol/global_lb/link.rb +181 -131
  33. data/lib/icontrol/global_lb/monitor.rb +174 -104
  34. data/lib/icontrol/global_lb/pool.rb +290 -203
  35. data/lib/icontrol/global_lb/pool_member.rb +118 -71
  36. data/lib/icontrol/global_lb/region.rb +37 -25
  37. data/lib/icontrol/global_lb/rule.rb +53 -37
  38. data/lib/icontrol/global_lb/server.rb +176 -124
  39. data/lib/icontrol/global_lb/topology.rb +41 -27
  40. data/lib/icontrol/global_lb/virtual_server.rb +118 -84
  41. data/lib/icontrol/global_lb/wide_ip.rb +168 -117
  42. data/lib/icontrol/local_lb.rb +81 -10
  43. data/lib/icontrol/local_lb/klass.rb +233 -153
  44. data/lib/icontrol/local_lb/monitor.rb +158 -96
  45. data/lib/icontrol/local_lb/nat.rb +74 -52
  46. data/lib/icontrol/local_lb/node_address.rb +123 -86
  47. data/lib/icontrol/local_lb/pool.rb +229 -164
  48. data/lib/icontrol/local_lb/pool_member.rb +134 -76
  49. data/lib/icontrol/local_lb/profile_auth.rb +103 -75
  50. data/lib/icontrol/local_lb/profile_client_ssl.rb +284 -201
  51. data/lib/icontrol/local_lb/profile_diameter.rb +113 -71
  52. data/lib/icontrol/local_lb/profile_dns.rb +65 -46
  53. data/lib/icontrol/local_lb/profile_fast_http.rb +265 -178
  54. data/lib/icontrol/local_lb/profile_fast_l4.rb +283 -194
  55. data/lib/icontrol/local_lb/profile_ftp.rb +81 -58
  56. data/lib/icontrol/local_lb/profile_http.rb +701 -433
  57. data/lib/icontrol/local_lb/profile_http_class.rb +169 -121
  58. data/lib/icontrol/local_lb/profile_iiop.rb +87 -63
  59. data/lib/icontrol/local_lb/profile_one_connect.rb +99 -71
  60. data/lib/icontrol/local_lb/profile_persistence.rb +326 -203
  61. data/lib/icontrol/local_lb/profile_radius.rb +94 -62
  62. data/lib/icontrol/local_lb/profile_rtsp.rb +207 -129
  63. data/lib/icontrol/local_lb/profile_sctp.rb +231 -167
  64. data/lib/icontrol/local_lb/profile_server_ssl.rb +268 -189
  65. data/lib/icontrol/local_lb/profile_sip.rb +145 -99
  66. data/lib/icontrol/local_lb/profile_stream.rb +71 -51
  67. data/lib/icontrol/local_lb/profile_tcp.rb +455 -296
  68. data/lib/icontrol/local_lb/profile_udp.rb +109 -78
  69. data/lib/icontrol/local_lb/profile_user_statistic.rb +77 -46
  70. data/lib/icontrol/local_lb/profile_xml.rb +116 -79
  71. data/lib/icontrol/local_lb/ram_cache_information.rb +43 -20
  72. data/lib/icontrol/local_lb/rate_class.rb +523 -318
  73. data/lib/icontrol/local_lb/rule.rb +53 -37
  74. data/lib/icontrol/local_lb/snat.rb +96 -65
  75. data/lib/icontrol/local_lb/snat_pool.rb +54 -39
  76. data/lib/icontrol/local_lb/snat_pool_member.rb +22 -15
  77. data/lib/icontrol/local_lb/snat_translation_address.rb +94 -69
  78. data/lib/icontrol/local_lb/virtual_address.rb +99 -70
  79. data/lib/icontrol/local_lb/virtual_server.rb +358 -243
  80. data/lib/icontrol/lt_config.rb +8 -1
  81. data/lib/icontrol/lt_config/field.rb +87 -53
  82. data/lib/icontrol/lt_config/klass.rb +59 -43
  83. data/lib/icontrol/management.rb +80 -38
  84. data/lib/icontrol/management/ccldap_configuration.rb +218 -144
  85. data/lib/icontrol/management/change_control.rb +67 -41
  86. data/lib/icontrol/management/crldp_configuration.rb +73 -52
  87. data/lib/icontrol/management/crldp_server.rb +55 -39
  88. data/lib/icontrol/management/db_variable.rb +32 -21
  89. data/lib/icontrol/management/event_notification.rb +19 -8
  90. data/lib/icontrol/management/event_subscription.rb +121 -74
  91. data/lib/icontrol/management/key_certificate.rb +235 -138
  92. data/lib/icontrol/management/ldap_configuration.rb +249 -179
  93. data/lib/icontrol/management/license_administration.rb +97 -56
  94. data/lib/icontrol/management/named.rb +103 -67
  95. data/lib/icontrol/management/ocsp_configuration.rb +33 -24
  96. data/lib/icontrol/management/ocsp_responder.rb +294 -165
  97. data/lib/icontrol/management/partition.rb +42 -23
  98. data/lib/icontrol/management/provision.rb +73 -39
  99. data/lib/icontrol/management/radius_configuration.rb +85 -57
  100. data/lib/icontrol/management/radius_server.rb +51 -37
  101. data/lib/icontrol/management/resource_record.rb +163 -121
  102. data/lib/icontrol/management/snmp_configuration.rb +675 -390
  103. data/lib/icontrol/management/tacacs_configuration.rb +99 -67
  104. data/lib/icontrol/management/tmos_module.rb +20 -8
  105. data/lib/icontrol/management/user_management.rb +198 -124
  106. data/lib/icontrol/management/view.rb +33 -24
  107. data/lib/icontrol/management/zone.rb +49 -34
  108. data/lib/icontrol/management/zone_runner.rb +11 -7
  109. data/lib/icontrol/networking.rb +31 -4
  110. data/lib/icontrol/networking/admin_ip.rb +92 -71
  111. data/lib/icontrol/networking/arp.rb +41 -28
  112. data/lib/icontrol/networking/i_session_advertised_route.rb +47 -32
  113. data/lib/icontrol/networking/i_session_local_interface.rb +72 -52
  114. data/lib/icontrol/networking/i_session_peer_discovery.rb +105 -68
  115. data/lib/icontrol/networking/i_session_remote_interface.rb +105 -76
  116. data/lib/icontrol/networking/interfaces.rb +241 -142
  117. data/lib/icontrol/networking/packet_filter.rb +111 -69
  118. data/lib/icontrol/networking/packet_filter_globals.rb +39 -28
  119. data/lib/icontrol/networking/port_mirror.rb +39 -27
  120. data/lib/icontrol/networking/profile_gre.rb +63 -41
  121. data/lib/icontrol/networking/profile_ipip.rb +38 -25
  122. data/lib/icontrol/networking/profile_wccpgre.rb +85 -55
  123. data/lib/icontrol/networking/route_domain.rb +70 -44
  124. data/lib/icontrol/networking/route_table.rb +128 -91
  125. data/lib/icontrol/networking/self_ip.rb +57 -39
  126. data/lib/icontrol/networking/self_ip_port_lockdown.rb +34 -22
  127. data/lib/icontrol/networking/stp_globals.rb +115 -63
  128. data/lib/icontrol/networking/stp_instance.rb +166 -68
  129. data/lib/icontrol/networking/trunk.rb +165 -101
  130. data/lib/icontrol/networking/tunnel.rb +77 -52
  131. data/lib/icontrol/networking/vlan.rb +140 -98
  132. data/lib/icontrol/networking/vlan_group.rb +145 -101
  133. data/lib/icontrol/system.rb +70 -33
  134. data/lib/icontrol/system/cluster.rb +103 -81
  135. data/lib/icontrol/system/config_sync.rb +128 -72
  136. data/lib/icontrol/system/connections.rb +27 -17
  137. data/lib/icontrol/system/disk.rb +134 -67
  138. data/lib/icontrol/system/failover.rb +44 -27
  139. data/lib/icontrol/system/geo_ip.rb +16 -5
  140. data/lib/icontrol/system/inet.rb +47 -30
  141. data/lib/icontrol/system/internal.rb +13 -9
  142. data/lib/icontrol/system/services.rb +75 -42
  143. data/lib/icontrol/system/software_management.rb +132 -83
  144. data/lib/icontrol/system/statistics.rb +443 -298
  145. data/lib/icontrol/system/system_info.rb +137 -95
  146. data/lib/icontrol/web_accelerator/applications.rb +17 -10
  147. data/lib/icontrol/web_accelerator/policies.rb +13 -9
  148. data/lib/icontrol/web_accelerator/proxy_message.rb +11 -7
  149. data/spec/icontrol/local_lb/pool_member_spec.rb +495 -0
  150. data/spec/icontrol/local_lb/profile_http_class_spec.rb +514 -0
  151. metadata +10 -4
@@ -5,85 +5,95 @@ module IControl::Management
5
5
 
6
6
  set_id_name "servers"
7
7
 
8
- class RADIUSServerDefinition < IControl::Base::Struct; end ##
8
+ class RADIUSServerDefinition < IControl::Base::Struct; end
9
+ class RADIUSServerDefinitionSequence < IControl::Base::Sequence ; end ##
9
10
  # Creates this RADIUS server.
10
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
11
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
12
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
11
+ # @rspec_example
12
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
13
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
14
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
13
15
  def create
14
16
  super
15
17
  end
16
18
 
17
19
  ##
18
20
  # Deletes all RADIUS server.
19
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
20
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
21
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
21
+ # @rspec_example
22
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
23
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
24
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
22
25
  def delete_all_servers
23
26
  super
24
27
  end
25
28
 
26
29
  ##
27
30
  # Deletes this RADIUS server.
28
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
29
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
30
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
31
+ # @rspec_example
32
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
33
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
34
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
31
35
  def delete_server
32
36
  super
33
37
  end
34
38
 
35
39
  ##
36
40
  # Gets the IP addresses or hostnames of the RADIUS server.
41
+ # @rspec_example
37
42
  # @return [String]
38
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
39
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
40
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
43
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
44
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
45
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
41
46
  def ip_or_hostname
42
47
  super
43
48
  end
44
49
 
45
50
  ##
46
51
  # Gets a list of all RADIUS server.
52
+ # @rspec_example
47
53
  # @return [String]
48
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
49
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
50
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
54
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
55
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
56
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
51
57
  def list
52
58
  super
53
59
  end
54
60
 
55
61
  ##
56
62
  # Gets the ports of the RADIUS server.
63
+ # @rspec_example
57
64
  # @return [long]
58
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
59
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
60
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
65
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
66
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
67
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
61
68
  def port
62
69
  super
63
70
  end
64
71
 
65
72
  ##
66
73
  # Gets the secrets of the RADIUS server.
74
+ # @rspec_example
67
75
  # @return [String]
68
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
69
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
70
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
76
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
77
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
78
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
71
79
  def secret
72
80
  super
73
81
  end
74
82
 
75
83
  ##
76
84
  # Gets the timeouts of the RADIUS server.
85
+ # @rspec_example
77
86
  # @return [long]
78
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
79
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
80
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
87
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
88
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
89
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
81
90
  def timeout
82
91
  super
83
92
  end
84
93
 
85
94
  ##
86
95
  # Gets the version information for this interface.
96
+ # @rspec_example
87
97
  # @return [String]
88
98
  def version
89
99
  super
@@ -91,9 +101,10 @@ module IControl::Management
91
101
 
92
102
  ##
93
103
  # Sets the IP addresses or hostnames of the RADIUS server.
94
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
95
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
96
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
104
+ # @rspec_example
105
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
106
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
107
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
97
108
  # @param [Hash] opts
98
109
  # @option opts [String] :ip_or_hostnames The IP addresses or hostnames used by the servers.
99
110
  def set_ip_or_hostname(opts)
@@ -103,9 +114,10 @@ module IControl::Management
103
114
 
104
115
  ##
105
116
  # Sets the ports of the RADIUS server.
106
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
107
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
108
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
117
+ # @rspec_example
118
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
119
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
120
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
109
121
  # @param [Hash] opts
110
122
  # @option opts [long] :ports The ports used by the servers.
111
123
  def set_port(opts)
@@ -115,9 +127,10 @@ module IControl::Management
115
127
 
116
128
  ##
117
129
  # Sets the secrets of the RADIUS server.
118
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
119
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
120
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
130
+ # @rspec_example
131
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
132
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
133
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
121
134
  # @param [Hash] opts
122
135
  # @option opts [String] :secrets The secrets used by the servers.
123
136
  def set_secret(opts)
@@ -127,9 +140,10 @@ module IControl::Management
127
140
 
128
141
  ##
129
142
  # Sets the timeouts of the RADIUS server.
130
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
131
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
132
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
143
+ # @rspec_example
144
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
145
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
146
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
133
147
  # @param [Hash] opts
134
148
  # @option opts [long] :timeouts The timeouts used by the servers.
135
149
  def set_timeout(opts)
@@ -1,15 +1,17 @@
1
1
  module IControl::Management
2
2
  ##
3
- # The ResourceRecord interface contains all the calls necessary for manipulating Resource Records: adding/deleting/updating
3
+ # The ResourceRecord interface contains all the calls necessary for manipulating Resource
4
+ # Records: adding/deleting/updating
4
5
  class ResourceRecord < IControl::Base
5
6
 
6
7
  set_id_name "view_zones"
7
8
 
8
9
  ##
9
10
  # Adds DNS &amp;quot;A" Records.
10
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
11
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
12
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
11
+ # @rspec_example
12
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
13
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
14
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
13
15
  # @param [Hash] opts
14
16
  # @option opts [IControl::Management::ARecord[]] :a_records The list of A Records.
15
17
  # @option opts [boolean] :sync_ptrs Boolean sequence to indicate if PTR records should be automatically generated from these A Records. This is one per VIEW_ZONE, not one per a_record
@@ -20,9 +22,10 @@ module IControl::Management
20
22
 
21
23
  ##
22
24
  # Adds DNS &amp;quot;AAAA" Records.
23
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
24
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
25
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
25
+ # @rspec_example
26
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
27
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
28
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
26
29
  # @param [Hash] opts
27
30
  # @option opts [IControl::Management::AAAARecord[]] :aaaa_records The list of AAAA records.
28
31
  # @option opts [boolean] :sync_ptrs A list containing sequences of states indicating whether PTR records should automatically be generated.
@@ -33,9 +36,10 @@ module IControl::Management
33
36
 
34
37
  ##
35
38
  # Adds DNS &amp;quot;CNAME" Records.
36
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
37
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
38
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
39
+ # @rspec_example
40
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
41
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
42
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
39
43
  # @param [Hash] opts
40
44
  # @option opts [IControl::Management::CNAMERecord[]] :cname_records The list of CNAME records.
41
45
  def add_cname(opts)
@@ -45,9 +49,10 @@ module IControl::Management
45
49
 
46
50
  ##
47
51
  # Adds DNS &amp;quot;DNAME" Records.
48
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
49
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
50
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
52
+ # @rspec_example
53
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
54
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
55
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
51
56
  # @param [Hash] opts
52
57
  # @option opts [IControl::Management::DNAMERecord[]] :dname_records The list of DNAME records.
53
58
  def add_dname(opts)
@@ -57,9 +62,10 @@ module IControl::Management
57
62
 
58
63
  ##
59
64
  # Adds DNS &amp;quot;HINFO" Records.
60
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
61
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
62
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
65
+ # @rspec_example
66
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
67
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
68
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
63
69
  # @param [Hash] opts
64
70
  # @option opts [IControl::Management::HINFORecord[]] :hinfo_records The list of HINFO records.
65
71
  def add_hinfo(opts)
@@ -69,9 +75,10 @@ module IControl::Management
69
75
 
70
76
  ##
71
77
  # Adds DNS &amp;quot;MX" Records.
72
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
73
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
74
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
78
+ # @rspec_example
79
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
80
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
81
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
75
82
  # @param [Hash] opts
76
83
  # @option opts [IControl::Management::MXRecord[]] :mx_records The list of MX records.
77
84
  def add_mx(opts)
@@ -81,9 +88,10 @@ module IControl::Management
81
88
 
82
89
  ##
83
90
  # Adds DNS &amp;quot;NS" Records.
84
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
85
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
86
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
91
+ # @rspec_example
92
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
93
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
94
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
87
95
  # @param [Hash] opts
88
96
  # @option opts [IControl::Management::NSRecord[]] :ns_records The list of NS records.
89
97
  def add_ns(opts)
@@ -93,9 +101,10 @@ module IControl::Management
93
101
 
94
102
  ##
95
103
  # Adds DNS &amp;quot;PTR" Records.
96
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
97
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
98
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
104
+ # @rspec_example
105
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
106
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
107
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
99
108
  # @param [Hash] opts
100
109
  # @option opts [IControl::Management::PTRRecord[]] :ptr_records The list of PTF records.
101
110
  def add_ptr(opts)
@@ -105,9 +114,10 @@ module IControl::Management
105
114
 
106
115
  ##
107
116
  # Adds a list of RRS to a view/zone
108
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
109
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
110
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
117
+ # @rspec_example
118
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
119
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
120
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
111
121
  # @param [Hash] opts
112
122
  # @option opts [IControl::Management::RRList] :rr_lists A list containing sequences of all the RR types to add.
113
123
  # @option opts [boolean] :sync_ptrs A list containing sequences of states indicating whether PTR records should automatically be generated.
@@ -118,9 +128,10 @@ module IControl::Management
118
128
 
119
129
  ##
120
130
  # Adds DNS &amp;quot;SOA" Records.
121
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
122
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
123
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
131
+ # @rspec_example
132
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
133
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
134
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
124
135
  # @param [Hash] opts
125
136
  # @option opts [IControl::Management::SOARecord[]] :soa_records The list of SOA records.
126
137
  def add_soa(opts)
@@ -130,9 +141,10 @@ module IControl::Management
130
141
 
131
142
  ##
132
143
  # Adds DNS &amp;quot;SRV" Records.
133
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
134
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
135
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
144
+ # @rspec_example
145
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
146
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
147
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
136
148
  # @param [Hash] opts
137
149
  # @option opts [IControl::Management::SRVRecord[]] :srv_records The list of SRV records.
138
150
  def add_srv(opts)
@@ -142,9 +154,10 @@ module IControl::Management
142
154
 
143
155
  ##
144
156
  # Adds DNS &amp;quot;TXT" Records.
145
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
146
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
147
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
157
+ # @rspec_example
158
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
159
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
160
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
148
161
  # @param [Hash] opts
149
162
  # @option opts [IControl::Management::TXTRecord[]] :txt_records The list of TXT records.
150
163
  def add_txt(opts)
@@ -154,9 +167,10 @@ module IControl::Management
154
167
 
155
168
  ##
156
169
  # Deletes DNS &amp;quot;A" Records.
157
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
158
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
159
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
170
+ # @rspec_example
171
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
172
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
173
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
160
174
  # @param [Hash] opts
161
175
  # @option opts [IControl::Management::ARecord[]] :a_records The list of A records.
162
176
  # @option opts [boolean] :sync_ptrs A list containing sequences of states indicating whether PTR records should automatically be generated.
@@ -167,9 +181,10 @@ module IControl::Management
167
181
 
168
182
  ##
169
183
  # deletes DNS &amp;quot;A6" Records.
170
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
171
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
172
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
184
+ # @rspec_example
185
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
186
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
187
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
173
188
  # @param [Hash] opts
174
189
  # @option opts [IControl::Management::A6Record[]] :a6_records The list of A6 records.
175
190
  # @option opts [boolean] :sync_ptrs A list containing sequences of states indicating whether PTR records should automatically be generated.
@@ -180,9 +195,10 @@ module IControl::Management
180
195
 
181
196
  ##
182
197
  # Deletes DNS &amp;quot;AAAA" Records.
183
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
184
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
185
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
198
+ # @rspec_example
199
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
200
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
201
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
186
202
  # @param [Hash] opts
187
203
  # @option opts [IControl::Management::AAAARecord[]] :aaaa_records The list of AAAA records.
188
204
  # @option opts [boolean] :sync_ptrs A list containing sequences of states indicating whether PTR records should automatically be generated.
@@ -193,9 +209,10 @@ module IControl::Management
193
209
 
194
210
  ##
195
211
  # Deletes DNS &amp;quot;CNAME" Records.
196
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
197
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
198
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
212
+ # @rspec_example
213
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
214
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
215
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
199
216
  # @param [Hash] opts
200
217
  # @option opts [IControl::Management::CNAMERecord[]] :cname_records The list of CNAME records.
201
218
  def delete_cname(opts)
@@ -205,9 +222,10 @@ module IControl::Management
205
222
 
206
223
  ##
207
224
  # Deletes DNS &amp;quot;DNAME" Records.
208
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
209
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
210
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
225
+ # @rspec_example
226
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
227
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
228
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
211
229
  # @param [Hash] opts
212
230
  # @option opts [IControl::Management::DNAMERecord[]] :dname_records The list of DNAME records.
213
231
  def delete_dname(opts)
@@ -217,9 +235,10 @@ module IControl::Management
217
235
 
218
236
  ##
219
237
  # Deletes DNS &amp;quot;HINFO" Records.
220
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
221
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
222
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
238
+ # @rspec_example
239
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
240
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
241
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
223
242
  # @param [Hash] opts
224
243
  # @option opts [IControl::Management::HINFORecord[]] :hinfo_records The list of HINFO records.
225
244
  def delete_hinfo(opts)
@@ -229,9 +248,10 @@ module IControl::Management
229
248
 
230
249
  ##
231
250
  # Deletes DNS &amp;quot;KEY" Records.
232
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
233
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
234
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
251
+ # @rspec_example
252
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
253
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
254
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
235
255
  # @param [Hash] opts
236
256
  # @option opts [IControl::Management::KEYRecord[]] :key_records The list of KEY records.
237
257
  def delete_key(opts)
@@ -241,9 +261,10 @@ module IControl::Management
241
261
 
242
262
  ##
243
263
  # Deletes DNS &amp;quot;MX" Records.
244
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
245
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
246
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
264
+ # @rspec_example
265
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
266
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
267
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
247
268
  # @param [Hash] opts
248
269
  # @option opts [IControl::Management::MXRecord[]] :mx_records The list of MX records.
249
270
  def delete_mx(opts)
@@ -253,9 +274,10 @@ module IControl::Management
253
274
 
254
275
  ##
255
276
  # Deletes DNS &amp;quot;NS" Records.
256
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
257
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
258
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
277
+ # @rspec_example
278
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
279
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
280
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
259
281
  # @param [Hash] opts
260
282
  # @option opts [IControl::Management::NSRecord[]] :ns_records The list of NS records.
261
283
  def delete_ns(opts)
@@ -265,9 +287,10 @@ module IControl::Management
265
287
 
266
288
  ##
267
289
  # deletes DNS &amp;quot;NXT" Records.
268
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
269
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
270
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
290
+ # @rspec_example
291
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
292
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
293
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
271
294
  # @param [Hash] opts
272
295
  # @option opts [IControl::Management::NXTRecord[]] :nxt_records The list of NXT records.
273
296
  def delete_nxt(opts)
@@ -277,9 +300,10 @@ module IControl::Management
277
300
 
278
301
  ##
279
302
  # Deletes DNS &amp;quot;PTR" Records.
280
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
281
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
282
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
303
+ # @rspec_example
304
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
305
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
306
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
283
307
  # @param [Hash] opts
284
308
  # @option opts [IControl::Management::PTRRecord[]] :ptr_records The list of PTR records.
285
309
  def delete_ptr(opts)
@@ -289,9 +313,10 @@ module IControl::Management
289
313
 
290
314
  ##
291
315
  # deletes DNS &amp;quot;SIG" Records.
292
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
293
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
294
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
316
+ # @rspec_example
317
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
318
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
319
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
295
320
  # @param [Hash] opts
296
321
  # @option opts [IControl::Management::SIGRecord[]] :sig_records The list of SIG records.
297
322
  def delete_sig(opts)
@@ -301,9 +326,10 @@ module IControl::Management
301
326
 
302
327
  ##
303
328
  # Deletes DNS &amp;quot;SOA" Records.
304
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
305
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
306
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
329
+ # @rspec_example
330
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
331
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
332
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
307
333
  # @param [Hash] opts
308
334
  # @option opts [IControl::Management::SOARecord[]] :soa_records The list of SOA records.
309
335
  def delete_soa(opts)
@@ -313,9 +339,10 @@ module IControl::Management
313
339
 
314
340
  ##
315
341
  # Deletes DNS &amp;quot;SRV" Records.
316
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
317
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
318
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
342
+ # @rspec_example
343
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
344
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
345
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
319
346
  # @param [Hash] opts
320
347
  # @option opts [IControl::Management::SRVRecord[]] :srv_records The list of SRV records.
321
348
  def delete_srv(opts)
@@ -325,9 +352,10 @@ module IControl::Management
325
352
 
326
353
  ##
327
354
  # Deletes DNS &amp;quot;TXT" Records.
328
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
329
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
330
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
355
+ # @rspec_example
356
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
357
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
358
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
331
359
  # @param [Hash] opts
332
360
  # @option opts [IControl::Management::TXTRecord[]] :txt_records The list of TXT records.
333
361
  def delete_txt(opts)
@@ -337,26 +365,29 @@ module IControl::Management
337
365
 
338
366
  ##
339
367
  # Gets a list of resource records for a specified view/zone
368
+ # @rspec_example
340
369
  # @return [String[]]
341
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
342
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
343
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
370
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
371
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
372
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
344
373
  def rrs
345
374
  super
346
375
  end
347
376
 
348
377
  ##
349
378
  # Gets a list of resource records for this view/zone information.
379
+ # @rspec_example
350
380
  # @return [RRList]
351
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
352
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
353
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
381
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
382
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
383
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
354
384
  def rrs_detailed
355
385
  super
356
386
  end
357
387
 
358
388
  ##
359
389
  # Gets the version information for this interface.
390
+ # @rspec_example
360
391
  # @return [String]
361
392
  def version
362
393
  super
@@ -364,9 +395,10 @@ module IControl::Management
364
395
 
365
396
  ##
366
397
  # Updates or changes DNS &amp;quot;A" Records.
367
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
368
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
369
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
398
+ # @rspec_example
399
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
400
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
401
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
370
402
  # @param [Hash] opts
371
403
  # @option opts [IControl::Management::ARecord[]] :old_records The list of old records to be replaced.
372
404
  # @option opts [IControl::Management::ARecord[]] :new_records The list of new records to update with.
@@ -378,9 +410,10 @@ module IControl::Management
378
410
 
379
411
  ##
380
412
  # Updates or changes DNS &amp;quot;AAAA" Records.
381
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
382
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
383
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
413
+ # @rspec_example
414
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
415
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
416
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
384
417
  # @param [Hash] opts
385
418
  # @option opts [IControl::Management::AAAARecord[]] :old_records The list of old records to be replaced.
386
419
  # @option opts [IControl::Management::AAAARecord[]] :new_records The list of new records to update with.
@@ -392,9 +425,10 @@ module IControl::Management
392
425
 
393
426
  ##
394
427
  # Updates or changes DNS &amp;quot;CNAME" Records.
395
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
396
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
397
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
428
+ # @rspec_example
429
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
430
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
431
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
398
432
  # @param [Hash] opts
399
433
  # @option opts [IControl::Management::CNAMERecord[]] :old_records The list of old records to be replaced.
400
434
  # @option opts [IControl::Management::CNAMERecord[]] :new_records The list of new records to update with.
@@ -405,9 +439,10 @@ module IControl::Management
405
439
 
406
440
  ##
407
441
  # Updates or changes DNS &amp;quot;DNAME" Records.
408
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
409
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
410
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
442
+ # @rspec_example
443
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
444
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
445
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
411
446
  # @param [Hash] opts
412
447
  # @option opts [IControl::Management::DNAMERecord[]] :old_records The list of old records to be replaced.
413
448
  # @option opts [IControl::Management::DNAMERecord[]] :new_records The list of new records to update with.
@@ -418,9 +453,10 @@ module IControl::Management
418
453
 
419
454
  ##
420
455
  # Updates or changes DNS &amp;quot;HINFO" Records.
421
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
422
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
423
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
456
+ # @rspec_example
457
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
458
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
459
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
424
460
  # @param [Hash] opts
425
461
  # @option opts [IControl::Management::HINFORecord[]] :old_records The list of old records to be replaced.
426
462
  # @option opts [IControl::Management::HINFORecord[]] :new_records The list of new records to update with.
@@ -431,9 +467,10 @@ module IControl::Management
431
467
 
432
468
  ##
433
469
  # Updates or changes DNS &amp;quot;MX" Records.
434
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
435
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
436
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
470
+ # @rspec_example
471
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
472
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
473
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
437
474
  # @param [Hash] opts
438
475
  # @option opts [IControl::Management::MXRecord[]] :old_records The list of old records to be replaced.
439
476
  # @option opts [IControl::Management::MXRecord[]] :new_records The list of new records to update with.
@@ -444,9 +481,10 @@ module IControl::Management
444
481
 
445
482
  ##
446
483
  # Updates or changes DNS &amp;quot;NS" Records.
447
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
448
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
449
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
484
+ # @rspec_example
485
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
486
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
487
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
450
488
  # @param [Hash] opts
451
489
  # @option opts [IControl::Management::NSRecord[]] :old_records The list of old records to be replaced.
452
490
  # @option opts [IControl::Management::NSRecord[]] :new_records The list of new records to update with.
@@ -457,9 +495,10 @@ module IControl::Management
457
495
 
458
496
  ##
459
497
  # Updates or changes DNS &amp;quot;PTR" Records.
460
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
461
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
462
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
498
+ # @rspec_example
499
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
500
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
501
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
463
502
  # @param [Hash] opts
464
503
  # @option opts [IControl::Management::PTRRecord[]] :old_records The list of old records to be replaced.
465
504
  # @option opts [IControl::Management::PTRRecord[]] :new_records The list of new records to update with.
@@ -470,9 +509,10 @@ module IControl::Management
470
509
 
471
510
  ##
472
511
  # Updates or changes DNS &amp;quot;SOA" Records.
473
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
474
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
475
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
512
+ # @rspec_example
513
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
514
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
515
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
476
516
  # @param [Hash] opts
477
517
  # @option opts [IControl::Management::SOARecord[]] :old_records The list of old records to be replaced.
478
518
  # @option opts [IControl::Management::SOARecord[]] :new_records The list of new records to update with.
@@ -483,9 +523,10 @@ module IControl::Management
483
523
 
484
524
  ##
485
525
  # Updates or changes DNS &amp;quot;SRV" Records.
486
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
487
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
488
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
526
+ # @rspec_example
527
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
528
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
529
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
489
530
  # @param [Hash] opts
490
531
  # @option opts [IControl::Management::SRVRecord[]] :old_records The list of old records to be replaced.
491
532
  # @option opts [IControl::Management::SRVRecord[]] :new_records The list of new records to update with.
@@ -496,9 +537,10 @@ module IControl::Management
496
537
 
497
538
  ##
498
539
  # Updates or changes DNS &amp;quot;TXT" Records.
499
- # @raise [IControl::Common::AccessDenied] raised if the client credentials are not valid.
500
- # @raise [IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
501
- # @raise [IControl::Common::OperationFailed] raised if an operation error occurs.
540
+ # @rspec_example
541
+ # @raise [IControl::IControl::Common::AccessDenied] raised if the client credentials are not valid.
542
+ # @raise [IControl::IControl::Common::InvalidArgument] raised if one of the arguments is invalid.
543
+ # @raise [IControl::IControl::Common::OperationFailed] raised if an operation error occurs.
502
544
  # @param [Hash] opts
503
545
  # @option opts [IControl::Management::TXTRecord[]] :old_records The list of old records to be replaced.
504
546
  # @option opts [IControl::Management::TXTRecord[]] :new_records The list of new records to update with.