aws-sdk-route53recoverycontrolconfig 1.23.0 → 1.24.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53recoverycontrolconfig/client.rb +1 -1
- data/lib/aws-sdk-route53recoverycontrolconfig/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-route53recoverycontrolconfig.rb +1 -1
- data/sig/client.rbs +399 -0
- data/sig/errors.rbs +37 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +413 -0
- data/sig/waiters.rbs +73 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7dc4a568772b03b7f2880ca7c91698f7f2df526da54a80b2a4af8aacac021901
|
4
|
+
data.tar.gz: 909f3b90a331bd6d3e1f25c73501bba3078aeb72898c80e9b604ed6b26d9dfbe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f17669c9e1319384968c776dc35870a273eca2289550c8995dbcec7035d92ea35f13f149b68cb57db493724f027f05fbf4e9aecd186020b74aa57f3c70cdeb80
|
7
|
+
data.tar.gz: 6738aaf2a4a923d0b4846cf233abf3d60adf73eb058a262cda61e11f460bce6911b111f15669147071bc22bf934e09bb947c4374ecb686eb03c27589136dd465
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.24.0
|
@@ -1429,7 +1429,7 @@ module Aws::Route53RecoveryControlConfig
|
|
1429
1429
|
params: params,
|
1430
1430
|
config: config)
|
1431
1431
|
context[:gem_name] = 'aws-sdk-route53recoverycontrolconfig'
|
1432
|
-
context[:gem_version] = '1.
|
1432
|
+
context[:gem_version] = '1.24.0'
|
1433
1433
|
Seahorse::Client::Request.new(handlers, context)
|
1434
1434
|
end
|
1435
1435
|
|
@@ -14,6 +14,7 @@ module Aws::Route53RecoveryControlConfig
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Route53RecoveryControlConfig::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/sig/client.rbs
ADDED
@@ -0,0 +1,399 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Route53RecoveryControlConfig
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _CreateClusterResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateClusterResponse]
|
77
|
+
def cluster: () -> Types::Cluster
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#create_cluster-instance_method
|
80
|
+
def create_cluster: (
|
81
|
+
?client_token: ::String,
|
82
|
+
cluster_name: ::String,
|
83
|
+
?tags: Hash[::String, ::String]
|
84
|
+
) -> _CreateClusterResponseSuccess
|
85
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
|
86
|
+
|
87
|
+
interface _CreateControlPanelResponseSuccess
|
88
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateControlPanelResponse]
|
89
|
+
def control_panel: () -> Types::ControlPanel
|
90
|
+
end
|
91
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#create_control_panel-instance_method
|
92
|
+
def create_control_panel: (
|
93
|
+
?client_token: ::String,
|
94
|
+
cluster_arn: ::String,
|
95
|
+
control_panel_name: ::String,
|
96
|
+
?tags: Hash[::String, ::String]
|
97
|
+
) -> _CreateControlPanelResponseSuccess
|
98
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateControlPanelResponseSuccess
|
99
|
+
|
100
|
+
interface _CreateRoutingControlResponseSuccess
|
101
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateRoutingControlResponse]
|
102
|
+
def routing_control: () -> Types::RoutingControl
|
103
|
+
end
|
104
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#create_routing_control-instance_method
|
105
|
+
def create_routing_control: (
|
106
|
+
?client_token: ::String,
|
107
|
+
cluster_arn: ::String,
|
108
|
+
?control_panel_arn: ::String,
|
109
|
+
routing_control_name: ::String
|
110
|
+
) -> _CreateRoutingControlResponseSuccess
|
111
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRoutingControlResponseSuccess
|
112
|
+
|
113
|
+
interface _CreateSafetyRuleResponseSuccess
|
114
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSafetyRuleResponse]
|
115
|
+
def assertion_rule: () -> Types::AssertionRule
|
116
|
+
def gating_rule: () -> Types::GatingRule
|
117
|
+
end
|
118
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#create_safety_rule-instance_method
|
119
|
+
def create_safety_rule: (
|
120
|
+
?assertion_rule: {
|
121
|
+
asserted_controls: Array[::String],
|
122
|
+
control_panel_arn: ::String,
|
123
|
+
name: ::String,
|
124
|
+
rule_config: {
|
125
|
+
inverted: bool,
|
126
|
+
threshold: ::Integer,
|
127
|
+
type: ("ATLEAST" | "AND" | "OR")
|
128
|
+
},
|
129
|
+
wait_period_ms: ::Integer
|
130
|
+
},
|
131
|
+
?client_token: ::String,
|
132
|
+
?gating_rule: {
|
133
|
+
control_panel_arn: ::String,
|
134
|
+
gating_controls: Array[::String],
|
135
|
+
name: ::String,
|
136
|
+
rule_config: {
|
137
|
+
inverted: bool,
|
138
|
+
threshold: ::Integer,
|
139
|
+
type: ("ATLEAST" | "AND" | "OR")
|
140
|
+
},
|
141
|
+
target_controls: Array[::String],
|
142
|
+
wait_period_ms: ::Integer
|
143
|
+
},
|
144
|
+
?tags: Hash[::String, ::String]
|
145
|
+
) -> _CreateSafetyRuleResponseSuccess
|
146
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSafetyRuleResponseSuccess
|
147
|
+
|
148
|
+
interface _DeleteClusterResponseSuccess
|
149
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteClusterResponse]
|
150
|
+
end
|
151
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#delete_cluster-instance_method
|
152
|
+
def delete_cluster: (
|
153
|
+
cluster_arn: ::String
|
154
|
+
) -> _DeleteClusterResponseSuccess
|
155
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteClusterResponseSuccess
|
156
|
+
|
157
|
+
interface _DeleteControlPanelResponseSuccess
|
158
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteControlPanelResponse]
|
159
|
+
end
|
160
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#delete_control_panel-instance_method
|
161
|
+
def delete_control_panel: (
|
162
|
+
control_panel_arn: ::String
|
163
|
+
) -> _DeleteControlPanelResponseSuccess
|
164
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteControlPanelResponseSuccess
|
165
|
+
|
166
|
+
interface _DeleteRoutingControlResponseSuccess
|
167
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRoutingControlResponse]
|
168
|
+
end
|
169
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#delete_routing_control-instance_method
|
170
|
+
def delete_routing_control: (
|
171
|
+
routing_control_arn: ::String
|
172
|
+
) -> _DeleteRoutingControlResponseSuccess
|
173
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRoutingControlResponseSuccess
|
174
|
+
|
175
|
+
interface _DeleteSafetyRuleResponseSuccess
|
176
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSafetyRuleResponse]
|
177
|
+
end
|
178
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#delete_safety_rule-instance_method
|
179
|
+
def delete_safety_rule: (
|
180
|
+
safety_rule_arn: ::String
|
181
|
+
) -> _DeleteSafetyRuleResponseSuccess
|
182
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSafetyRuleResponseSuccess
|
183
|
+
|
184
|
+
interface _DescribeClusterResponseSuccess
|
185
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterResponse]
|
186
|
+
def cluster: () -> Types::Cluster
|
187
|
+
end
|
188
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#describe_cluster-instance_method
|
189
|
+
def describe_cluster: (
|
190
|
+
cluster_arn: ::String
|
191
|
+
) -> _DescribeClusterResponseSuccess
|
192
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterResponseSuccess
|
193
|
+
|
194
|
+
interface _DescribeControlPanelResponseSuccess
|
195
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeControlPanelResponse]
|
196
|
+
def control_panel: () -> Types::ControlPanel
|
197
|
+
end
|
198
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#describe_control_panel-instance_method
|
199
|
+
def describe_control_panel: (
|
200
|
+
control_panel_arn: ::String
|
201
|
+
) -> _DescribeControlPanelResponseSuccess
|
202
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeControlPanelResponseSuccess
|
203
|
+
|
204
|
+
interface _DescribeRoutingControlResponseSuccess
|
205
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRoutingControlResponse]
|
206
|
+
def routing_control: () -> Types::RoutingControl
|
207
|
+
end
|
208
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#describe_routing_control-instance_method
|
209
|
+
def describe_routing_control: (
|
210
|
+
routing_control_arn: ::String
|
211
|
+
) -> _DescribeRoutingControlResponseSuccess
|
212
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRoutingControlResponseSuccess
|
213
|
+
|
214
|
+
interface _DescribeSafetyRuleResponseSuccess
|
215
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSafetyRuleResponse]
|
216
|
+
def assertion_rule: () -> Types::AssertionRule
|
217
|
+
def gating_rule: () -> Types::GatingRule
|
218
|
+
end
|
219
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#describe_safety_rule-instance_method
|
220
|
+
def describe_safety_rule: (
|
221
|
+
safety_rule_arn: ::String
|
222
|
+
) -> _DescribeSafetyRuleResponseSuccess
|
223
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSafetyRuleResponseSuccess
|
224
|
+
|
225
|
+
interface _GetResourcePolicyResponseSuccess
|
226
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetResourcePolicyResponse]
|
227
|
+
def policy: () -> ::String
|
228
|
+
end
|
229
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#get_resource_policy-instance_method
|
230
|
+
def get_resource_policy: (
|
231
|
+
resource_arn: ::String
|
232
|
+
) -> _GetResourcePolicyResponseSuccess
|
233
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourcePolicyResponseSuccess
|
234
|
+
|
235
|
+
interface _ListAssociatedRoute53HealthChecksResponseSuccess
|
236
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAssociatedRoute53HealthChecksResponse]
|
237
|
+
def health_check_ids: () -> ::Array[::String]
|
238
|
+
def next_token: () -> ::String
|
239
|
+
end
|
240
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#list_associated_route_53_health_checks-instance_method
|
241
|
+
def list_associated_route_53_health_checks: (
|
242
|
+
?max_results: ::Integer,
|
243
|
+
?next_token: ::String,
|
244
|
+
routing_control_arn: ::String
|
245
|
+
) -> _ListAssociatedRoute53HealthChecksResponseSuccess
|
246
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssociatedRoute53HealthChecksResponseSuccess
|
247
|
+
|
248
|
+
interface _ListClustersResponseSuccess
|
249
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListClustersResponse]
|
250
|
+
def clusters: () -> ::Array[Types::Cluster]
|
251
|
+
def next_token: () -> ::String
|
252
|
+
end
|
253
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#list_clusters-instance_method
|
254
|
+
def list_clusters: (
|
255
|
+
?max_results: ::Integer,
|
256
|
+
?next_token: ::String
|
257
|
+
) -> _ListClustersResponseSuccess
|
258
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClustersResponseSuccess
|
259
|
+
|
260
|
+
interface _ListControlPanelsResponseSuccess
|
261
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListControlPanelsResponse]
|
262
|
+
def control_panels: () -> ::Array[Types::ControlPanel]
|
263
|
+
def next_token: () -> ::String
|
264
|
+
end
|
265
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#list_control_panels-instance_method
|
266
|
+
def list_control_panels: (
|
267
|
+
?cluster_arn: ::String,
|
268
|
+
?max_results: ::Integer,
|
269
|
+
?next_token: ::String
|
270
|
+
) -> _ListControlPanelsResponseSuccess
|
271
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListControlPanelsResponseSuccess
|
272
|
+
|
273
|
+
interface _ListRoutingControlsResponseSuccess
|
274
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListRoutingControlsResponse]
|
275
|
+
def next_token: () -> ::String
|
276
|
+
def routing_controls: () -> ::Array[Types::RoutingControl]
|
277
|
+
end
|
278
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#list_routing_controls-instance_method
|
279
|
+
def list_routing_controls: (
|
280
|
+
control_panel_arn: ::String,
|
281
|
+
?max_results: ::Integer,
|
282
|
+
?next_token: ::String
|
283
|
+
) -> _ListRoutingControlsResponseSuccess
|
284
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRoutingControlsResponseSuccess
|
285
|
+
|
286
|
+
interface _ListSafetyRulesResponseSuccess
|
287
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSafetyRulesResponse]
|
288
|
+
def next_token: () -> ::String
|
289
|
+
def safety_rules: () -> ::Array[Types::Rule]
|
290
|
+
end
|
291
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#list_safety_rules-instance_method
|
292
|
+
def list_safety_rules: (
|
293
|
+
control_panel_arn: ::String,
|
294
|
+
?max_results: ::Integer,
|
295
|
+
?next_token: ::String
|
296
|
+
) -> _ListSafetyRulesResponseSuccess
|
297
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSafetyRulesResponseSuccess
|
298
|
+
|
299
|
+
interface _ListTagsForResourceResponseSuccess
|
300
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
301
|
+
def tags: () -> ::Hash[::String, ::String]
|
302
|
+
end
|
303
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#list_tags_for_resource-instance_method
|
304
|
+
def list_tags_for_resource: (
|
305
|
+
resource_arn: ::String
|
306
|
+
) -> _ListTagsForResourceResponseSuccess
|
307
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
308
|
+
|
309
|
+
interface _TagResourceResponseSuccess
|
310
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
311
|
+
end
|
312
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#tag_resource-instance_method
|
313
|
+
def tag_resource: (
|
314
|
+
resource_arn: ::String,
|
315
|
+
tags: Hash[::String, ::String]
|
316
|
+
) -> _TagResourceResponseSuccess
|
317
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
318
|
+
|
319
|
+
interface _UntagResourceResponseSuccess
|
320
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
321
|
+
end
|
322
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#untag_resource-instance_method
|
323
|
+
def untag_resource: (
|
324
|
+
resource_arn: ::String,
|
325
|
+
tag_keys: Array[::String]
|
326
|
+
) -> _UntagResourceResponseSuccess
|
327
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
328
|
+
|
329
|
+
interface _UpdateControlPanelResponseSuccess
|
330
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateControlPanelResponse]
|
331
|
+
def control_panel: () -> Types::ControlPanel
|
332
|
+
end
|
333
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#update_control_panel-instance_method
|
334
|
+
def update_control_panel: (
|
335
|
+
control_panel_arn: ::String,
|
336
|
+
control_panel_name: ::String
|
337
|
+
) -> _UpdateControlPanelResponseSuccess
|
338
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateControlPanelResponseSuccess
|
339
|
+
|
340
|
+
interface _UpdateRoutingControlResponseSuccess
|
341
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRoutingControlResponse]
|
342
|
+
def routing_control: () -> Types::RoutingControl
|
343
|
+
end
|
344
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#update_routing_control-instance_method
|
345
|
+
def update_routing_control: (
|
346
|
+
routing_control_arn: ::String,
|
347
|
+
routing_control_name: ::String
|
348
|
+
) -> _UpdateRoutingControlResponseSuccess
|
349
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRoutingControlResponseSuccess
|
350
|
+
|
351
|
+
interface _UpdateSafetyRuleResponseSuccess
|
352
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSafetyRuleResponse]
|
353
|
+
def assertion_rule: () -> Types::AssertionRule
|
354
|
+
def gating_rule: () -> Types::GatingRule
|
355
|
+
end
|
356
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#update_safety_rule-instance_method
|
357
|
+
def update_safety_rule: (
|
358
|
+
?assertion_rule_update: {
|
359
|
+
name: ::String,
|
360
|
+
safety_rule_arn: ::String,
|
361
|
+
wait_period_ms: ::Integer
|
362
|
+
},
|
363
|
+
?gating_rule_update: {
|
364
|
+
name: ::String,
|
365
|
+
safety_rule_arn: ::String,
|
366
|
+
wait_period_ms: ::Integer
|
367
|
+
}
|
368
|
+
) -> _UpdateSafetyRuleResponseSuccess
|
369
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSafetyRuleResponseSuccess
|
370
|
+
|
371
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Client.html#wait_until-instance_method
|
372
|
+
def wait_until: (:cluster_created waiter_name,
|
373
|
+
cluster_arn: ::String
|
374
|
+
) -> Client::_DescribeClusterResponseSuccess
|
375
|
+
| (:cluster_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeClusterResponseSuccess
|
376
|
+
| (:cluster_deleted waiter_name,
|
377
|
+
cluster_arn: ::String
|
378
|
+
) -> Client::_DescribeClusterResponseSuccess
|
379
|
+
| (:cluster_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeClusterResponseSuccess
|
380
|
+
| (:control_panel_created waiter_name,
|
381
|
+
control_panel_arn: ::String
|
382
|
+
) -> Client::_DescribeControlPanelResponseSuccess
|
383
|
+
| (:control_panel_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeControlPanelResponseSuccess
|
384
|
+
| (:control_panel_deleted waiter_name,
|
385
|
+
control_panel_arn: ::String
|
386
|
+
) -> Client::_DescribeControlPanelResponseSuccess
|
387
|
+
| (:control_panel_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeControlPanelResponseSuccess
|
388
|
+
| (:routing_control_created waiter_name,
|
389
|
+
routing_control_arn: ::String
|
390
|
+
) -> Client::_DescribeRoutingControlResponseSuccess
|
391
|
+
| (:routing_control_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeRoutingControlResponseSuccess
|
392
|
+
| (:routing_control_deleted waiter_name,
|
393
|
+
routing_control_arn: ::String
|
394
|
+
) -> Client::_DescribeRoutingControlResponseSuccess
|
395
|
+
| (:routing_control_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeRoutingControlResponseSuccess
|
396
|
+
end
|
397
|
+
end
|
398
|
+
end
|
399
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Route53RecoveryControlConfig
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Route53RecoveryControlConfig
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryControlConfig/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,413 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::Route53RecoveryControlConfig
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AssertionRule
|
17
|
+
attr_accessor asserted_controls: ::Array[::String]
|
18
|
+
attr_accessor control_panel_arn: ::String
|
19
|
+
attr_accessor name: ::String
|
20
|
+
attr_accessor rule_config: Types::RuleConfig
|
21
|
+
attr_accessor safety_rule_arn: ::String
|
22
|
+
attr_accessor status: ("PENDING" | "DEPLOYED" | "PENDING_DELETION")
|
23
|
+
attr_accessor wait_period_ms: ::Integer
|
24
|
+
attr_accessor owner: ::String
|
25
|
+
SENSITIVE: []
|
26
|
+
end
|
27
|
+
|
28
|
+
class AssertionRuleUpdate
|
29
|
+
attr_accessor name: ::String
|
30
|
+
attr_accessor safety_rule_arn: ::String
|
31
|
+
attr_accessor wait_period_ms: ::Integer
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class Cluster
|
36
|
+
attr_accessor cluster_arn: ::String
|
37
|
+
attr_accessor cluster_endpoints: ::Array[Types::ClusterEndpoint]
|
38
|
+
attr_accessor name: ::String
|
39
|
+
attr_accessor status: ("PENDING" | "DEPLOYED" | "PENDING_DELETION")
|
40
|
+
attr_accessor owner: ::String
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class ClusterEndpoint
|
45
|
+
attr_accessor endpoint: ::String
|
46
|
+
attr_accessor region: ::String
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class ConflictException
|
51
|
+
attr_accessor message: ::String
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
55
|
+
class ControlPanel
|
56
|
+
attr_accessor cluster_arn: ::String
|
57
|
+
attr_accessor control_panel_arn: ::String
|
58
|
+
attr_accessor default_control_panel: bool
|
59
|
+
attr_accessor name: ::String
|
60
|
+
attr_accessor routing_control_count: ::Integer
|
61
|
+
attr_accessor status: ("PENDING" | "DEPLOYED" | "PENDING_DELETION")
|
62
|
+
attr_accessor owner: ::String
|
63
|
+
SENSITIVE: []
|
64
|
+
end
|
65
|
+
|
66
|
+
class CreateClusterRequest
|
67
|
+
attr_accessor client_token: ::String
|
68
|
+
attr_accessor cluster_name: ::String
|
69
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
70
|
+
SENSITIVE: []
|
71
|
+
end
|
72
|
+
|
73
|
+
class CreateClusterResponse
|
74
|
+
attr_accessor cluster: Types::Cluster
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class CreateControlPanelRequest
|
79
|
+
attr_accessor client_token: ::String
|
80
|
+
attr_accessor cluster_arn: ::String
|
81
|
+
attr_accessor control_panel_name: ::String
|
82
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
83
|
+
SENSITIVE: []
|
84
|
+
end
|
85
|
+
|
86
|
+
class CreateControlPanelResponse
|
87
|
+
attr_accessor control_panel: Types::ControlPanel
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class CreateRoutingControlRequest
|
92
|
+
attr_accessor client_token: ::String
|
93
|
+
attr_accessor cluster_arn: ::String
|
94
|
+
attr_accessor control_panel_arn: ::String
|
95
|
+
attr_accessor routing_control_name: ::String
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class CreateRoutingControlResponse
|
100
|
+
attr_accessor routing_control: Types::RoutingControl
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class CreateSafetyRuleRequest
|
105
|
+
attr_accessor assertion_rule: Types::NewAssertionRule
|
106
|
+
attr_accessor client_token: ::String
|
107
|
+
attr_accessor gating_rule: Types::NewGatingRule
|
108
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class CreateSafetyRuleResponse
|
113
|
+
attr_accessor assertion_rule: Types::AssertionRule
|
114
|
+
attr_accessor gating_rule: Types::GatingRule
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class DeleteClusterRequest
|
119
|
+
attr_accessor cluster_arn: ::String
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class DeleteClusterResponse < Aws::EmptyStructure
|
124
|
+
end
|
125
|
+
|
126
|
+
class DeleteControlPanelRequest
|
127
|
+
attr_accessor control_panel_arn: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class DeleteControlPanelResponse < Aws::EmptyStructure
|
132
|
+
end
|
133
|
+
|
134
|
+
class DeleteRoutingControlRequest
|
135
|
+
attr_accessor routing_control_arn: ::String
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class DeleteRoutingControlResponse < Aws::EmptyStructure
|
140
|
+
end
|
141
|
+
|
142
|
+
class DeleteSafetyRuleRequest
|
143
|
+
attr_accessor safety_rule_arn: ::String
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class DeleteSafetyRuleResponse < Aws::EmptyStructure
|
148
|
+
end
|
149
|
+
|
150
|
+
class DescribeClusterRequest
|
151
|
+
attr_accessor cluster_arn: ::String
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class DescribeClusterResponse
|
156
|
+
attr_accessor cluster: Types::Cluster
|
157
|
+
SENSITIVE: []
|
158
|
+
end
|
159
|
+
|
160
|
+
class DescribeControlPanelRequest
|
161
|
+
attr_accessor control_panel_arn: ::String
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class DescribeControlPanelResponse
|
166
|
+
attr_accessor control_panel: Types::ControlPanel
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class DescribeRoutingControlRequest
|
171
|
+
attr_accessor routing_control_arn: ::String
|
172
|
+
SENSITIVE: []
|
173
|
+
end
|
174
|
+
|
175
|
+
class DescribeRoutingControlResponse
|
176
|
+
attr_accessor routing_control: Types::RoutingControl
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class DescribeSafetyRuleRequest
|
181
|
+
attr_accessor safety_rule_arn: ::String
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class DescribeSafetyRuleResponse
|
186
|
+
attr_accessor assertion_rule: Types::AssertionRule
|
187
|
+
attr_accessor gating_rule: Types::GatingRule
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class GatingRule
|
192
|
+
attr_accessor control_panel_arn: ::String
|
193
|
+
attr_accessor gating_controls: ::Array[::String]
|
194
|
+
attr_accessor name: ::String
|
195
|
+
attr_accessor rule_config: Types::RuleConfig
|
196
|
+
attr_accessor safety_rule_arn: ::String
|
197
|
+
attr_accessor status: ("PENDING" | "DEPLOYED" | "PENDING_DELETION")
|
198
|
+
attr_accessor target_controls: ::Array[::String]
|
199
|
+
attr_accessor wait_period_ms: ::Integer
|
200
|
+
attr_accessor owner: ::String
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class GatingRuleUpdate
|
205
|
+
attr_accessor name: ::String
|
206
|
+
attr_accessor safety_rule_arn: ::String
|
207
|
+
attr_accessor wait_period_ms: ::Integer
|
208
|
+
SENSITIVE: []
|
209
|
+
end
|
210
|
+
|
211
|
+
class GetResourcePolicyRequest
|
212
|
+
attr_accessor resource_arn: ::String
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class GetResourcePolicyResponse
|
217
|
+
attr_accessor policy: ::String
|
218
|
+
SENSITIVE: []
|
219
|
+
end
|
220
|
+
|
221
|
+
class InternalServerException
|
222
|
+
attr_accessor message: ::String
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class ListAssociatedRoute53HealthChecksRequest
|
227
|
+
attr_accessor max_results: ::Integer
|
228
|
+
attr_accessor next_token: ::String
|
229
|
+
attr_accessor routing_control_arn: ::String
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class ListAssociatedRoute53HealthChecksResponse
|
234
|
+
attr_accessor health_check_ids: ::Array[::String]
|
235
|
+
attr_accessor next_token: ::String
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class ListClustersRequest
|
240
|
+
attr_accessor max_results: ::Integer
|
241
|
+
attr_accessor next_token: ::String
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class ListClustersResponse
|
246
|
+
attr_accessor clusters: ::Array[Types::Cluster]
|
247
|
+
attr_accessor next_token: ::String
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class ListControlPanelsRequest
|
252
|
+
attr_accessor cluster_arn: ::String
|
253
|
+
attr_accessor max_results: ::Integer
|
254
|
+
attr_accessor next_token: ::String
|
255
|
+
SENSITIVE: []
|
256
|
+
end
|
257
|
+
|
258
|
+
class ListControlPanelsResponse
|
259
|
+
attr_accessor control_panels: ::Array[Types::ControlPanel]
|
260
|
+
attr_accessor next_token: ::String
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class ListRoutingControlsRequest
|
265
|
+
attr_accessor control_panel_arn: ::String
|
266
|
+
attr_accessor max_results: ::Integer
|
267
|
+
attr_accessor next_token: ::String
|
268
|
+
SENSITIVE: []
|
269
|
+
end
|
270
|
+
|
271
|
+
class ListRoutingControlsResponse
|
272
|
+
attr_accessor next_token: ::String
|
273
|
+
attr_accessor routing_controls: ::Array[Types::RoutingControl]
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class ListSafetyRulesRequest
|
278
|
+
attr_accessor control_panel_arn: ::String
|
279
|
+
attr_accessor max_results: ::Integer
|
280
|
+
attr_accessor next_token: ::String
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class ListSafetyRulesResponse
|
285
|
+
attr_accessor next_token: ::String
|
286
|
+
attr_accessor safety_rules: ::Array[Types::Rule]
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class ListTagsForResourceRequest
|
291
|
+
attr_accessor resource_arn: ::String
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class ListTagsForResourceResponse
|
296
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class NewAssertionRule
|
301
|
+
attr_accessor asserted_controls: ::Array[::String]
|
302
|
+
attr_accessor control_panel_arn: ::String
|
303
|
+
attr_accessor name: ::String
|
304
|
+
attr_accessor rule_config: Types::RuleConfig
|
305
|
+
attr_accessor wait_period_ms: ::Integer
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class NewGatingRule
|
310
|
+
attr_accessor control_panel_arn: ::String
|
311
|
+
attr_accessor gating_controls: ::Array[::String]
|
312
|
+
attr_accessor name: ::String
|
313
|
+
attr_accessor rule_config: Types::RuleConfig
|
314
|
+
attr_accessor target_controls: ::Array[::String]
|
315
|
+
attr_accessor wait_period_ms: ::Integer
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class ResourceNotFoundException
|
320
|
+
attr_accessor message: ::String
|
321
|
+
SENSITIVE: []
|
322
|
+
end
|
323
|
+
|
324
|
+
class RoutingControl
|
325
|
+
attr_accessor control_panel_arn: ::String
|
326
|
+
attr_accessor name: ::String
|
327
|
+
attr_accessor routing_control_arn: ::String
|
328
|
+
attr_accessor status: ("PENDING" | "DEPLOYED" | "PENDING_DELETION")
|
329
|
+
attr_accessor owner: ::String
|
330
|
+
SENSITIVE: []
|
331
|
+
end
|
332
|
+
|
333
|
+
class Rule
|
334
|
+
attr_accessor assertion: Types::AssertionRule
|
335
|
+
attr_accessor gating: Types::GatingRule
|
336
|
+
SENSITIVE: []
|
337
|
+
end
|
338
|
+
|
339
|
+
class RuleConfig
|
340
|
+
attr_accessor inverted: bool
|
341
|
+
attr_accessor threshold: ::Integer
|
342
|
+
attr_accessor type: ("ATLEAST" | "AND" | "OR")
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class ServiceQuotaExceededException
|
347
|
+
attr_accessor message: ::String
|
348
|
+
SENSITIVE: []
|
349
|
+
end
|
350
|
+
|
351
|
+
class TagResourceRequest
|
352
|
+
attr_accessor resource_arn: ::String
|
353
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
357
|
+
class TagResourceResponse < Aws::EmptyStructure
|
358
|
+
end
|
359
|
+
|
360
|
+
class ThrottlingException
|
361
|
+
attr_accessor message: ::String
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
365
|
+
class UntagResourceRequest
|
366
|
+
attr_accessor resource_arn: ::String
|
367
|
+
attr_accessor tag_keys: ::Array[::String]
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
372
|
+
end
|
373
|
+
|
374
|
+
class UpdateControlPanelRequest
|
375
|
+
attr_accessor control_panel_arn: ::String
|
376
|
+
attr_accessor control_panel_name: ::String
|
377
|
+
SENSITIVE: []
|
378
|
+
end
|
379
|
+
|
380
|
+
class UpdateControlPanelResponse
|
381
|
+
attr_accessor control_panel: Types::ControlPanel
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class UpdateRoutingControlRequest
|
386
|
+
attr_accessor routing_control_arn: ::String
|
387
|
+
attr_accessor routing_control_name: ::String
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class UpdateRoutingControlResponse
|
392
|
+
attr_accessor routing_control: Types::RoutingControl
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class UpdateSafetyRuleRequest
|
397
|
+
attr_accessor assertion_rule_update: Types::AssertionRuleUpdate
|
398
|
+
attr_accessor gating_rule_update: Types::GatingRuleUpdate
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class UpdateSafetyRuleResponse
|
403
|
+
attr_accessor assertion_rule: Types::AssertionRule
|
404
|
+
attr_accessor gating_rule: Types::GatingRule
|
405
|
+
SENSITIVE: []
|
406
|
+
end
|
407
|
+
|
408
|
+
class ValidationException
|
409
|
+
attr_accessor message: ::String
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
end
|
413
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Route53RecoveryControlConfig
|
10
|
+
module Waiters
|
11
|
+
|
12
|
+
class ClusterCreated
|
13
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
14
|
+
| (?Hash[Symbol, untyped]) -> void
|
15
|
+
|
16
|
+
def wait: (
|
17
|
+
cluster_arn: ::String
|
18
|
+
) -> Client::_DescribeClusterResponseSuccess
|
19
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeClusterResponseSuccess
|
20
|
+
end
|
21
|
+
|
22
|
+
class ClusterDeleted
|
23
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
24
|
+
| (?Hash[Symbol, untyped]) -> void
|
25
|
+
|
26
|
+
def wait: (
|
27
|
+
cluster_arn: ::String
|
28
|
+
) -> Client::_DescribeClusterResponseSuccess
|
29
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeClusterResponseSuccess
|
30
|
+
end
|
31
|
+
|
32
|
+
class ControlPanelCreated
|
33
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
34
|
+
| (?Hash[Symbol, untyped]) -> void
|
35
|
+
|
36
|
+
def wait: (
|
37
|
+
control_panel_arn: ::String
|
38
|
+
) -> Client::_DescribeControlPanelResponseSuccess
|
39
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeControlPanelResponseSuccess
|
40
|
+
end
|
41
|
+
|
42
|
+
class ControlPanelDeleted
|
43
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
44
|
+
| (?Hash[Symbol, untyped]) -> void
|
45
|
+
|
46
|
+
def wait: (
|
47
|
+
control_panel_arn: ::String
|
48
|
+
) -> Client::_DescribeControlPanelResponseSuccess
|
49
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeControlPanelResponseSuccess
|
50
|
+
end
|
51
|
+
|
52
|
+
class RoutingControlCreated
|
53
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
54
|
+
| (?Hash[Symbol, untyped]) -> void
|
55
|
+
|
56
|
+
def wait: (
|
57
|
+
routing_control_arn: ::String
|
58
|
+
) -> Client::_DescribeRoutingControlResponseSuccess
|
59
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeRoutingControlResponseSuccess
|
60
|
+
end
|
61
|
+
|
62
|
+
class RoutingControlDeleted
|
63
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
64
|
+
| (?Hash[Symbol, untyped]) -> void
|
65
|
+
|
66
|
+
def wait: (
|
67
|
+
routing_control_arn: ::String
|
68
|
+
) -> Client::_DescribeRoutingControlResponseSuccess
|
69
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeRoutingControlResponseSuccess
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-route53recoverycontrolconfig
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.24.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.191.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,13 +67,18 @@ files:
|
|
67
67
|
- lib/aws-sdk-route53recoverycontrolconfig/resource.rb
|
68
68
|
- lib/aws-sdk-route53recoverycontrolconfig/types.rb
|
69
69
|
- lib/aws-sdk-route53recoverycontrolconfig/waiters.rb
|
70
|
+
- sig/client.rbs
|
71
|
+
- sig/errors.rbs
|
72
|
+
- sig/resource.rbs
|
73
|
+
- sig/types.rbs
|
74
|
+
- sig/waiters.rbs
|
70
75
|
homepage: https://github.com/aws/aws-sdk-ruby
|
71
76
|
licenses:
|
72
77
|
- Apache-2.0
|
73
78
|
metadata:
|
74
79
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-route53recoverycontrolconfig
|
75
80
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-route53recoverycontrolconfig/CHANGELOG.md
|
76
|
-
post_install_message:
|
81
|
+
post_install_message:
|
77
82
|
rdoc_options: []
|
78
83
|
require_paths:
|
79
84
|
- lib
|
@@ -88,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
93
|
- !ruby/object:Gem::Version
|
89
94
|
version: '0'
|
90
95
|
requirements: []
|
91
|
-
rubygems_version: 3.
|
92
|
-
signing_key:
|
96
|
+
rubygems_version: 3.4.10
|
97
|
+
signing_key:
|
93
98
|
specification_version: 4
|
94
99
|
summary: AWS SDK for Ruby - AWS Route53 Recovery Control Config
|
95
100
|
test_files: []
|