aws-sdk-route53recoveryreadiness 1.21.0 → 1.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sig/client.rbs ADDED
@@ -0,0 +1,510 @@
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 Route53RecoveryReadiness
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/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 _CreateCellResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCellResponse]
77
+ def cell_arn: () -> ::String
78
+ def cell_name: () -> ::String
79
+ def cells: () -> ::Array[::String]
80
+ def parent_readiness_scopes: () -> ::Array[::String]
81
+ def tags: () -> ::Hash[::String, ::String]
82
+ end
83
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#create_cell-instance_method
84
+ def create_cell: (
85
+ cell_name: ::String,
86
+ ?cells: Array[::String],
87
+ ?tags: Hash[::String, ::String]
88
+ ) -> _CreateCellResponseSuccess
89
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCellResponseSuccess
90
+
91
+ interface _CreateCrossAccountAuthorizationResponseSuccess
92
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCrossAccountAuthorizationResponse]
93
+ def cross_account_authorization: () -> ::String
94
+ end
95
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#create_cross_account_authorization-instance_method
96
+ def create_cross_account_authorization: (
97
+ cross_account_authorization: ::String
98
+ ) -> _CreateCrossAccountAuthorizationResponseSuccess
99
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCrossAccountAuthorizationResponseSuccess
100
+
101
+ interface _CreateReadinessCheckResponseSuccess
102
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateReadinessCheckResponse]
103
+ def readiness_check_arn: () -> ::String
104
+ def readiness_check_name: () -> ::String
105
+ def resource_set: () -> ::String
106
+ def tags: () -> ::Hash[::String, ::String]
107
+ end
108
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#create_readiness_check-instance_method
109
+ def create_readiness_check: (
110
+ readiness_check_name: ::String,
111
+ resource_set_name: ::String,
112
+ ?tags: Hash[::String, ::String]
113
+ ) -> _CreateReadinessCheckResponseSuccess
114
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReadinessCheckResponseSuccess
115
+
116
+ interface _CreateRecoveryGroupResponseSuccess
117
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRecoveryGroupResponse]
118
+ def cells: () -> ::Array[::String]
119
+ def recovery_group_arn: () -> ::String
120
+ def recovery_group_name: () -> ::String
121
+ def tags: () -> ::Hash[::String, ::String]
122
+ end
123
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#create_recovery_group-instance_method
124
+ def create_recovery_group: (
125
+ ?cells: Array[::String],
126
+ recovery_group_name: ::String,
127
+ ?tags: Hash[::String, ::String]
128
+ ) -> _CreateRecoveryGroupResponseSuccess
129
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRecoveryGroupResponseSuccess
130
+
131
+ interface _CreateResourceSetResponseSuccess
132
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateResourceSetResponse]
133
+ def resource_set_arn: () -> ::String
134
+ def resource_set_name: () -> ::String
135
+ def resource_set_type: () -> ::String
136
+ def resources: () -> ::Array[Types::Resource]
137
+ def tags: () -> ::Hash[::String, ::String]
138
+ end
139
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#create_resource_set-instance_method
140
+ def create_resource_set: (
141
+ resource_set_name: ::String,
142
+ resource_set_type: ::String,
143
+ resources: Array[
144
+ {
145
+ component_id: ::String?,
146
+ dns_target_resource: {
147
+ domain_name: ::String?,
148
+ hosted_zone_arn: ::String?,
149
+ record_set_id: ::String?,
150
+ record_type: ::String?,
151
+ target_resource: {
152
+ nlb_resource: {
153
+ arn: ::String?
154
+ }?,
155
+ r53_resource: {
156
+ domain_name: ::String?,
157
+ record_set_id: ::String?
158
+ }?
159
+ }?
160
+ }?,
161
+ readiness_scopes: Array[::String]?,
162
+ resource_arn: ::String?
163
+ },
164
+ ],
165
+ ?tags: Hash[::String, ::String]
166
+ ) -> _CreateResourceSetResponseSuccess
167
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResourceSetResponseSuccess
168
+
169
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#delete_cell-instance_method
170
+ def delete_cell: (
171
+ cell_name: ::String
172
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
173
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
174
+
175
+ interface _DeleteCrossAccountAuthorizationResponseSuccess
176
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCrossAccountAuthorizationResponse]
177
+ end
178
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#delete_cross_account_authorization-instance_method
179
+ def delete_cross_account_authorization: (
180
+ cross_account_authorization: ::String
181
+ ) -> _DeleteCrossAccountAuthorizationResponseSuccess
182
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCrossAccountAuthorizationResponseSuccess
183
+
184
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#delete_readiness_check-instance_method
185
+ def delete_readiness_check: (
186
+ readiness_check_name: ::String
187
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
188
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
189
+
190
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#delete_recovery_group-instance_method
191
+ def delete_recovery_group: (
192
+ recovery_group_name: ::String
193
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
194
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
195
+
196
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#delete_resource_set-instance_method
197
+ def delete_resource_set: (
198
+ resource_set_name: ::String
199
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
200
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
201
+
202
+ interface _GetArchitectureRecommendationsResponseSuccess
203
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetArchitectureRecommendationsResponse]
204
+ def last_audit_timestamp: () -> ::Time
205
+ def next_token: () -> ::String
206
+ def recommendations: () -> ::Array[Types::Recommendation]
207
+ end
208
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#get_architecture_recommendations-instance_method
209
+ def get_architecture_recommendations: (
210
+ ?max_results: ::Integer,
211
+ ?next_token: ::String,
212
+ recovery_group_name: ::String
213
+ ) -> _GetArchitectureRecommendationsResponseSuccess
214
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetArchitectureRecommendationsResponseSuccess
215
+
216
+ interface _GetCellResponseSuccess
217
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCellResponse]
218
+ def cell_arn: () -> ::String
219
+ def cell_name: () -> ::String
220
+ def cells: () -> ::Array[::String]
221
+ def parent_readiness_scopes: () -> ::Array[::String]
222
+ def tags: () -> ::Hash[::String, ::String]
223
+ end
224
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#get_cell-instance_method
225
+ def get_cell: (
226
+ cell_name: ::String
227
+ ) -> _GetCellResponseSuccess
228
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCellResponseSuccess
229
+
230
+ interface _GetCellReadinessSummaryResponseSuccess
231
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCellReadinessSummaryResponse]
232
+ def next_token: () -> ::String
233
+ def readiness: () -> ("READY" | "NOT_READY" | "UNKNOWN" | "NOT_AUTHORIZED")
234
+ def readiness_checks: () -> ::Array[Types::ReadinessCheckSummary]
235
+ end
236
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#get_cell_readiness_summary-instance_method
237
+ def get_cell_readiness_summary: (
238
+ cell_name: ::String,
239
+ ?max_results: ::Integer,
240
+ ?next_token: ::String
241
+ ) -> _GetCellReadinessSummaryResponseSuccess
242
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCellReadinessSummaryResponseSuccess
243
+
244
+ interface _GetReadinessCheckResponseSuccess
245
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadinessCheckResponse]
246
+ def readiness_check_arn: () -> ::String
247
+ def readiness_check_name: () -> ::String
248
+ def resource_set: () -> ::String
249
+ def tags: () -> ::Hash[::String, ::String]
250
+ end
251
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#get_readiness_check-instance_method
252
+ def get_readiness_check: (
253
+ readiness_check_name: ::String
254
+ ) -> _GetReadinessCheckResponseSuccess
255
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReadinessCheckResponseSuccess
256
+
257
+ interface _GetReadinessCheckResourceStatusResponseSuccess
258
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadinessCheckResourceStatusResponse]
259
+ def next_token: () -> ::String
260
+ def readiness: () -> ("READY" | "NOT_READY" | "UNKNOWN" | "NOT_AUTHORIZED")
261
+ def rules: () -> ::Array[Types::RuleResult]
262
+ end
263
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#get_readiness_check_resource_status-instance_method
264
+ def get_readiness_check_resource_status: (
265
+ ?max_results: ::Integer,
266
+ ?next_token: ::String,
267
+ readiness_check_name: ::String,
268
+ resource_identifier: ::String
269
+ ) -> _GetReadinessCheckResourceStatusResponseSuccess
270
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReadinessCheckResourceStatusResponseSuccess
271
+
272
+ interface _GetReadinessCheckStatusResponseSuccess
273
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadinessCheckStatusResponse]
274
+ def messages: () -> ::Array[Types::Message]
275
+ def next_token: () -> ::String
276
+ def readiness: () -> ("READY" | "NOT_READY" | "UNKNOWN" | "NOT_AUTHORIZED")
277
+ def resources: () -> ::Array[Types::ResourceResult]
278
+ end
279
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#get_readiness_check_status-instance_method
280
+ def get_readiness_check_status: (
281
+ ?max_results: ::Integer,
282
+ ?next_token: ::String,
283
+ readiness_check_name: ::String
284
+ ) -> _GetReadinessCheckStatusResponseSuccess
285
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReadinessCheckStatusResponseSuccess
286
+
287
+ interface _GetRecoveryGroupResponseSuccess
288
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRecoveryGroupResponse]
289
+ def cells: () -> ::Array[::String]
290
+ def recovery_group_arn: () -> ::String
291
+ def recovery_group_name: () -> ::String
292
+ def tags: () -> ::Hash[::String, ::String]
293
+ end
294
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#get_recovery_group-instance_method
295
+ def get_recovery_group: (
296
+ recovery_group_name: ::String
297
+ ) -> _GetRecoveryGroupResponseSuccess
298
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRecoveryGroupResponseSuccess
299
+
300
+ interface _GetRecoveryGroupReadinessSummaryResponseSuccess
301
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRecoveryGroupReadinessSummaryResponse]
302
+ def next_token: () -> ::String
303
+ def readiness: () -> ("READY" | "NOT_READY" | "UNKNOWN" | "NOT_AUTHORIZED")
304
+ def readiness_checks: () -> ::Array[Types::ReadinessCheckSummary]
305
+ end
306
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#get_recovery_group_readiness_summary-instance_method
307
+ def get_recovery_group_readiness_summary: (
308
+ ?max_results: ::Integer,
309
+ ?next_token: ::String,
310
+ recovery_group_name: ::String
311
+ ) -> _GetRecoveryGroupReadinessSummaryResponseSuccess
312
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRecoveryGroupReadinessSummaryResponseSuccess
313
+
314
+ interface _GetResourceSetResponseSuccess
315
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetResourceSetResponse]
316
+ def resource_set_arn: () -> ::String
317
+ def resource_set_name: () -> ::String
318
+ def resource_set_type: () -> ::String
319
+ def resources: () -> ::Array[Types::Resource]
320
+ def tags: () -> ::Hash[::String, ::String]
321
+ end
322
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#get_resource_set-instance_method
323
+ def get_resource_set: (
324
+ resource_set_name: ::String
325
+ ) -> _GetResourceSetResponseSuccess
326
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourceSetResponseSuccess
327
+
328
+ interface _ListCellsResponseSuccess
329
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCellsResponse]
330
+ def cells: () -> ::Array[Types::CellOutput]
331
+ def next_token: () -> ::String
332
+ end
333
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#list_cells-instance_method
334
+ def list_cells: (
335
+ ?max_results: ::Integer,
336
+ ?next_token: ::String
337
+ ) -> _ListCellsResponseSuccess
338
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCellsResponseSuccess
339
+
340
+ interface _ListCrossAccountAuthorizationsResponseSuccess
341
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCrossAccountAuthorizationsResponse]
342
+ def cross_account_authorizations: () -> ::Array[::String]
343
+ def next_token: () -> ::String
344
+ end
345
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#list_cross_account_authorizations-instance_method
346
+ def list_cross_account_authorizations: (
347
+ ?max_results: ::Integer,
348
+ ?next_token: ::String
349
+ ) -> _ListCrossAccountAuthorizationsResponseSuccess
350
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCrossAccountAuthorizationsResponseSuccess
351
+
352
+ interface _ListReadinessChecksResponseSuccess
353
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReadinessChecksResponse]
354
+ def next_token: () -> ::String
355
+ def readiness_checks: () -> ::Array[Types::ReadinessCheckOutput]
356
+ end
357
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#list_readiness_checks-instance_method
358
+ def list_readiness_checks: (
359
+ ?max_results: ::Integer,
360
+ ?next_token: ::String
361
+ ) -> _ListReadinessChecksResponseSuccess
362
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReadinessChecksResponseSuccess
363
+
364
+ interface _ListRecoveryGroupsResponseSuccess
365
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRecoveryGroupsResponse]
366
+ def next_token: () -> ::String
367
+ def recovery_groups: () -> ::Array[Types::RecoveryGroupOutput]
368
+ end
369
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#list_recovery_groups-instance_method
370
+ def list_recovery_groups: (
371
+ ?max_results: ::Integer,
372
+ ?next_token: ::String
373
+ ) -> _ListRecoveryGroupsResponseSuccess
374
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecoveryGroupsResponseSuccess
375
+
376
+ interface _ListResourceSetsResponseSuccess
377
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListResourceSetsResponse]
378
+ def next_token: () -> ::String
379
+ def resource_sets: () -> ::Array[Types::ResourceSetOutput]
380
+ end
381
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#list_resource_sets-instance_method
382
+ def list_resource_sets: (
383
+ ?max_results: ::Integer,
384
+ ?next_token: ::String
385
+ ) -> _ListResourceSetsResponseSuccess
386
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListResourceSetsResponseSuccess
387
+
388
+ interface _ListRulesResponseSuccess
389
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRulesResponse]
390
+ def next_token: () -> ::String
391
+ def rules: () -> ::Array[Types::ListRulesOutput]
392
+ end
393
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#list_rules-instance_method
394
+ def list_rules: (
395
+ ?max_results: ::Integer,
396
+ ?next_token: ::String,
397
+ ?resource_type: ::String
398
+ ) -> _ListRulesResponseSuccess
399
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRulesResponseSuccess
400
+
401
+ interface _ListTagsForResourcesResponseSuccess
402
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourcesResponse]
403
+ def tags: () -> ::Hash[::String, ::String]
404
+ end
405
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#list_tags_for_resources-instance_method
406
+ def list_tags_for_resources: (
407
+ resource_arn: ::String
408
+ ) -> _ListTagsForResourcesResponseSuccess
409
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourcesResponseSuccess
410
+
411
+ interface _TagResourceResponseSuccess
412
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
413
+ end
414
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#tag_resource-instance_method
415
+ def tag_resource: (
416
+ resource_arn: ::String,
417
+ tags: Hash[::String, ::String]
418
+ ) -> _TagResourceResponseSuccess
419
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
420
+
421
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#untag_resource-instance_method
422
+ def untag_resource: (
423
+ resource_arn: ::String,
424
+ tag_keys: Array[::String]
425
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
426
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
427
+
428
+ interface _UpdateCellResponseSuccess
429
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCellResponse]
430
+ def cell_arn: () -> ::String
431
+ def cell_name: () -> ::String
432
+ def cells: () -> ::Array[::String]
433
+ def parent_readiness_scopes: () -> ::Array[::String]
434
+ def tags: () -> ::Hash[::String, ::String]
435
+ end
436
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#update_cell-instance_method
437
+ def update_cell: (
438
+ cell_name: ::String,
439
+ cells: Array[::String]
440
+ ) -> _UpdateCellResponseSuccess
441
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCellResponseSuccess
442
+
443
+ interface _UpdateReadinessCheckResponseSuccess
444
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReadinessCheckResponse]
445
+ def readiness_check_arn: () -> ::String
446
+ def readiness_check_name: () -> ::String
447
+ def resource_set: () -> ::String
448
+ def tags: () -> ::Hash[::String, ::String]
449
+ end
450
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#update_readiness_check-instance_method
451
+ def update_readiness_check: (
452
+ readiness_check_name: ::String,
453
+ resource_set_name: ::String
454
+ ) -> _UpdateReadinessCheckResponseSuccess
455
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReadinessCheckResponseSuccess
456
+
457
+ interface _UpdateRecoveryGroupResponseSuccess
458
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRecoveryGroupResponse]
459
+ def cells: () -> ::Array[::String]
460
+ def recovery_group_arn: () -> ::String
461
+ def recovery_group_name: () -> ::String
462
+ def tags: () -> ::Hash[::String, ::String]
463
+ end
464
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#update_recovery_group-instance_method
465
+ def update_recovery_group: (
466
+ cells: Array[::String],
467
+ recovery_group_name: ::String
468
+ ) -> _UpdateRecoveryGroupResponseSuccess
469
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRecoveryGroupResponseSuccess
470
+
471
+ interface _UpdateResourceSetResponseSuccess
472
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateResourceSetResponse]
473
+ def resource_set_arn: () -> ::String
474
+ def resource_set_name: () -> ::String
475
+ def resource_set_type: () -> ::String
476
+ def resources: () -> ::Array[Types::Resource]
477
+ def tags: () -> ::Hash[::String, ::String]
478
+ end
479
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Client.html#update_resource_set-instance_method
480
+ def update_resource_set: (
481
+ resource_set_name: ::String,
482
+ resource_set_type: ::String,
483
+ resources: Array[
484
+ {
485
+ component_id: ::String?,
486
+ dns_target_resource: {
487
+ domain_name: ::String?,
488
+ hosted_zone_arn: ::String?,
489
+ record_set_id: ::String?,
490
+ record_type: ::String?,
491
+ target_resource: {
492
+ nlb_resource: {
493
+ arn: ::String?
494
+ }?,
495
+ r53_resource: {
496
+ domain_name: ::String?,
497
+ record_set_id: ::String?
498
+ }?
499
+ }?
500
+ }?,
501
+ readiness_scopes: Array[::String]?,
502
+ resource_arn: ::String?
503
+ },
504
+ ]
505
+ ) -> _UpdateResourceSetResponseSuccess
506
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateResourceSetResponseSuccess
507
+ end
508
+ end
509
+ end
510
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,34 @@
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 Route53RecoveryReadiness
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 ThrottlingException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ end
29
+ class ValidationException < ::Aws::Errors::ServiceError
30
+ def message: () -> ::String
31
+ end
32
+ end
33
+ end
34
+ 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 Route53RecoveryReadiness
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53RecoveryReadiness/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