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/types.rbs ADDED
@@ -0,0 +1,532 @@
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::Route53RecoveryReadiness
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class CellOutput
17
+ attr_accessor cell_arn: ::String
18
+ attr_accessor cell_name: ::String
19
+ attr_accessor cells: ::Array[::String]
20
+ attr_accessor parent_readiness_scopes: ::Array[::String]
21
+ attr_accessor tags: ::Hash[::String, ::String]
22
+ SENSITIVE: []
23
+ end
24
+
25
+ class ConflictException
26
+ attr_accessor message: ::String
27
+ SENSITIVE: []
28
+ end
29
+
30
+ class CreateCellRequest
31
+ attr_accessor cell_name: ::String
32
+ attr_accessor cells: ::Array[::String]
33
+ attr_accessor tags: ::Hash[::String, ::String]
34
+ SENSITIVE: []
35
+ end
36
+
37
+ class CreateCellResponse
38
+ attr_accessor cell_arn: ::String
39
+ attr_accessor cell_name: ::String
40
+ attr_accessor cells: ::Array[::String]
41
+ attr_accessor parent_readiness_scopes: ::Array[::String]
42
+ attr_accessor tags: ::Hash[::String, ::String]
43
+ SENSITIVE: []
44
+ end
45
+
46
+ class CreateCrossAccountAuthorizationRequest
47
+ attr_accessor cross_account_authorization: ::String
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class CreateCrossAccountAuthorizationResponse
52
+ attr_accessor cross_account_authorization: ::String
53
+ SENSITIVE: []
54
+ end
55
+
56
+ class CreateReadinessCheckRequest
57
+ attr_accessor readiness_check_name: ::String
58
+ attr_accessor resource_set_name: ::String
59
+ attr_accessor tags: ::Hash[::String, ::String]
60
+ SENSITIVE: []
61
+ end
62
+
63
+ class CreateReadinessCheckResponse
64
+ attr_accessor readiness_check_arn: ::String
65
+ attr_accessor readiness_check_name: ::String
66
+ attr_accessor resource_set: ::String
67
+ attr_accessor tags: ::Hash[::String, ::String]
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class CreateRecoveryGroupRequest
72
+ attr_accessor cells: ::Array[::String]
73
+ attr_accessor recovery_group_name: ::String
74
+ attr_accessor tags: ::Hash[::String, ::String]
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class CreateRecoveryGroupResponse
79
+ attr_accessor cells: ::Array[::String]
80
+ attr_accessor recovery_group_arn: ::String
81
+ attr_accessor recovery_group_name: ::String
82
+ attr_accessor tags: ::Hash[::String, ::String]
83
+ SENSITIVE: []
84
+ end
85
+
86
+ class CreateResourceSetRequest
87
+ attr_accessor resource_set_name: ::String
88
+ attr_accessor resource_set_type: ::String
89
+ attr_accessor resources: ::Array[Types::Resource]
90
+ attr_accessor tags: ::Hash[::String, ::String]
91
+ SENSITIVE: []
92
+ end
93
+
94
+ class CreateResourceSetResponse
95
+ attr_accessor resource_set_arn: ::String
96
+ attr_accessor resource_set_name: ::String
97
+ attr_accessor resource_set_type: ::String
98
+ attr_accessor resources: ::Array[Types::Resource]
99
+ attr_accessor tags: ::Hash[::String, ::String]
100
+ SENSITIVE: []
101
+ end
102
+
103
+ class DNSTargetResource
104
+ attr_accessor domain_name: ::String
105
+ attr_accessor hosted_zone_arn: ::String
106
+ attr_accessor record_set_id: ::String
107
+ attr_accessor record_type: ::String
108
+ attr_accessor target_resource: Types::TargetResource
109
+ SENSITIVE: []
110
+ end
111
+
112
+ class DeleteCellRequest
113
+ attr_accessor cell_name: ::String
114
+ SENSITIVE: []
115
+ end
116
+
117
+ class DeleteCrossAccountAuthorizationRequest
118
+ attr_accessor cross_account_authorization: ::String
119
+ SENSITIVE: []
120
+ end
121
+
122
+ class DeleteCrossAccountAuthorizationResponse < Aws::EmptyStructure
123
+ end
124
+
125
+ class DeleteReadinessCheckRequest
126
+ attr_accessor readiness_check_name: ::String
127
+ SENSITIVE: []
128
+ end
129
+
130
+ class DeleteRecoveryGroupRequest
131
+ attr_accessor recovery_group_name: ::String
132
+ SENSITIVE: []
133
+ end
134
+
135
+ class DeleteResourceSetRequest
136
+ attr_accessor resource_set_name: ::String
137
+ SENSITIVE: []
138
+ end
139
+
140
+ class GetArchitectureRecommendationsRequest
141
+ attr_accessor max_results: ::Integer
142
+ attr_accessor next_token: ::String
143
+ attr_accessor recovery_group_name: ::String
144
+ SENSITIVE: []
145
+ end
146
+
147
+ class GetArchitectureRecommendationsResponse
148
+ attr_accessor last_audit_timestamp: ::Time
149
+ attr_accessor next_token: ::String
150
+ attr_accessor recommendations: ::Array[Types::Recommendation]
151
+ SENSITIVE: []
152
+ end
153
+
154
+ class GetCellReadinessSummaryRequest
155
+ attr_accessor cell_name: ::String
156
+ attr_accessor max_results: ::Integer
157
+ attr_accessor next_token: ::String
158
+ SENSITIVE: []
159
+ end
160
+
161
+ class GetCellReadinessSummaryResponse
162
+ attr_accessor next_token: ::String
163
+ attr_accessor readiness: ("READY" | "NOT_READY" | "UNKNOWN" | "NOT_AUTHORIZED")
164
+ attr_accessor readiness_checks: ::Array[Types::ReadinessCheckSummary]
165
+ SENSITIVE: []
166
+ end
167
+
168
+ class GetCellRequest
169
+ attr_accessor cell_name: ::String
170
+ SENSITIVE: []
171
+ end
172
+
173
+ class GetCellResponse
174
+ attr_accessor cell_arn: ::String
175
+ attr_accessor cell_name: ::String
176
+ attr_accessor cells: ::Array[::String]
177
+ attr_accessor parent_readiness_scopes: ::Array[::String]
178
+ attr_accessor tags: ::Hash[::String, ::String]
179
+ SENSITIVE: []
180
+ end
181
+
182
+ class GetReadinessCheckRequest
183
+ attr_accessor readiness_check_name: ::String
184
+ SENSITIVE: []
185
+ end
186
+
187
+ class GetReadinessCheckResourceStatusRequest
188
+ attr_accessor max_results: ::Integer
189
+ attr_accessor next_token: ::String
190
+ attr_accessor readiness_check_name: ::String
191
+ attr_accessor resource_identifier: ::String
192
+ SENSITIVE: []
193
+ end
194
+
195
+ class GetReadinessCheckResourceStatusResponse
196
+ attr_accessor next_token: ::String
197
+ attr_accessor readiness: ("READY" | "NOT_READY" | "UNKNOWN" | "NOT_AUTHORIZED")
198
+ attr_accessor rules: ::Array[Types::RuleResult]
199
+ SENSITIVE: []
200
+ end
201
+
202
+ class GetReadinessCheckResponse
203
+ attr_accessor readiness_check_arn: ::String
204
+ attr_accessor readiness_check_name: ::String
205
+ attr_accessor resource_set: ::String
206
+ attr_accessor tags: ::Hash[::String, ::String]
207
+ SENSITIVE: []
208
+ end
209
+
210
+ class GetReadinessCheckStatusRequest
211
+ attr_accessor max_results: ::Integer
212
+ attr_accessor next_token: ::String
213
+ attr_accessor readiness_check_name: ::String
214
+ SENSITIVE: []
215
+ end
216
+
217
+ class GetReadinessCheckStatusResponse
218
+ attr_accessor messages: ::Array[Types::Message]
219
+ attr_accessor next_token: ::String
220
+ attr_accessor readiness: ("READY" | "NOT_READY" | "UNKNOWN" | "NOT_AUTHORIZED")
221
+ attr_accessor resources: ::Array[Types::ResourceResult]
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class GetRecoveryGroupReadinessSummaryRequest
226
+ attr_accessor max_results: ::Integer
227
+ attr_accessor next_token: ::String
228
+ attr_accessor recovery_group_name: ::String
229
+ SENSITIVE: []
230
+ end
231
+
232
+ class GetRecoveryGroupReadinessSummaryResponse
233
+ attr_accessor next_token: ::String
234
+ attr_accessor readiness: ("READY" | "NOT_READY" | "UNKNOWN" | "NOT_AUTHORIZED")
235
+ attr_accessor readiness_checks: ::Array[Types::ReadinessCheckSummary]
236
+ SENSITIVE: []
237
+ end
238
+
239
+ class GetRecoveryGroupRequest
240
+ attr_accessor recovery_group_name: ::String
241
+ SENSITIVE: []
242
+ end
243
+
244
+ class GetRecoveryGroupResponse
245
+ attr_accessor cells: ::Array[::String]
246
+ attr_accessor recovery_group_arn: ::String
247
+ attr_accessor recovery_group_name: ::String
248
+ attr_accessor tags: ::Hash[::String, ::String]
249
+ SENSITIVE: []
250
+ end
251
+
252
+ class GetResourceSetRequest
253
+ attr_accessor resource_set_name: ::String
254
+ SENSITIVE: []
255
+ end
256
+
257
+ class GetResourceSetResponse
258
+ attr_accessor resource_set_arn: ::String
259
+ attr_accessor resource_set_name: ::String
260
+ attr_accessor resource_set_type: ::String
261
+ attr_accessor resources: ::Array[Types::Resource]
262
+ attr_accessor tags: ::Hash[::String, ::String]
263
+ SENSITIVE: []
264
+ end
265
+
266
+ class InternalServerException
267
+ attr_accessor message: ::String
268
+ SENSITIVE: []
269
+ end
270
+
271
+ class ListCellsRequest
272
+ attr_accessor max_results: ::Integer
273
+ attr_accessor next_token: ::String
274
+ SENSITIVE: []
275
+ end
276
+
277
+ class ListCellsResponse
278
+ attr_accessor cells: ::Array[Types::CellOutput]
279
+ attr_accessor next_token: ::String
280
+ SENSITIVE: []
281
+ end
282
+
283
+ class ListCrossAccountAuthorizationsRequest
284
+ attr_accessor max_results: ::Integer
285
+ attr_accessor next_token: ::String
286
+ SENSITIVE: []
287
+ end
288
+
289
+ class ListCrossAccountAuthorizationsResponse
290
+ attr_accessor cross_account_authorizations: ::Array[::String]
291
+ attr_accessor next_token: ::String
292
+ SENSITIVE: []
293
+ end
294
+
295
+ class ListReadinessChecksRequest
296
+ attr_accessor max_results: ::Integer
297
+ attr_accessor next_token: ::String
298
+ SENSITIVE: []
299
+ end
300
+
301
+ class ListReadinessChecksResponse
302
+ attr_accessor next_token: ::String
303
+ attr_accessor readiness_checks: ::Array[Types::ReadinessCheckOutput]
304
+ SENSITIVE: []
305
+ end
306
+
307
+ class ListRecoveryGroupsRequest
308
+ attr_accessor max_results: ::Integer
309
+ attr_accessor next_token: ::String
310
+ SENSITIVE: []
311
+ end
312
+
313
+ class ListRecoveryGroupsResponse
314
+ attr_accessor next_token: ::String
315
+ attr_accessor recovery_groups: ::Array[Types::RecoveryGroupOutput]
316
+ SENSITIVE: []
317
+ end
318
+
319
+ class ListResourceSetsRequest
320
+ attr_accessor max_results: ::Integer
321
+ attr_accessor next_token: ::String
322
+ SENSITIVE: []
323
+ end
324
+
325
+ class ListResourceSetsResponse
326
+ attr_accessor next_token: ::String
327
+ attr_accessor resource_sets: ::Array[Types::ResourceSetOutput]
328
+ SENSITIVE: []
329
+ end
330
+
331
+ class ListRulesOutput
332
+ attr_accessor resource_type: ::String
333
+ attr_accessor rule_description: ::String
334
+ attr_accessor rule_id: ::String
335
+ SENSITIVE: []
336
+ end
337
+
338
+ class ListRulesRequest
339
+ attr_accessor max_results: ::Integer
340
+ attr_accessor next_token: ::String
341
+ attr_accessor resource_type: ::String
342
+ SENSITIVE: []
343
+ end
344
+
345
+ class ListRulesResponse
346
+ attr_accessor next_token: ::String
347
+ attr_accessor rules: ::Array[Types::ListRulesOutput]
348
+ SENSITIVE: []
349
+ end
350
+
351
+ class ListTagsForResourcesRequest
352
+ attr_accessor resource_arn: ::String
353
+ SENSITIVE: []
354
+ end
355
+
356
+ class ListTagsForResourcesResponse
357
+ attr_accessor tags: ::Hash[::String, ::String]
358
+ SENSITIVE: []
359
+ end
360
+
361
+ class Message
362
+ attr_accessor message_text: ::String
363
+ SENSITIVE: []
364
+ end
365
+
366
+ class NLBResource
367
+ attr_accessor arn: ::String
368
+ SENSITIVE: []
369
+ end
370
+
371
+ class R53ResourceRecord
372
+ attr_accessor domain_name: ::String
373
+ attr_accessor record_set_id: ::String
374
+ SENSITIVE: []
375
+ end
376
+
377
+ class ReadinessCheckOutput
378
+ attr_accessor readiness_check_arn: ::String
379
+ attr_accessor readiness_check_name: ::String
380
+ attr_accessor resource_set: ::String
381
+ attr_accessor tags: ::Hash[::String, ::String]
382
+ SENSITIVE: []
383
+ end
384
+
385
+ class ReadinessCheckSummary
386
+ attr_accessor readiness: ("READY" | "NOT_READY" | "UNKNOWN" | "NOT_AUTHORIZED")
387
+ attr_accessor readiness_check_name: ::String
388
+ SENSITIVE: []
389
+ end
390
+
391
+ class Recommendation
392
+ attr_accessor recommendation_text: ::String
393
+ SENSITIVE: []
394
+ end
395
+
396
+ class RecoveryGroupOutput
397
+ attr_accessor cells: ::Array[::String]
398
+ attr_accessor recovery_group_arn: ::String
399
+ attr_accessor recovery_group_name: ::String
400
+ attr_accessor tags: ::Hash[::String, ::String]
401
+ SENSITIVE: []
402
+ end
403
+
404
+ class Resource
405
+ attr_accessor component_id: ::String
406
+ attr_accessor dns_target_resource: Types::DNSTargetResource
407
+ attr_accessor readiness_scopes: ::Array[::String]
408
+ attr_accessor resource_arn: ::String
409
+ SENSITIVE: []
410
+ end
411
+
412
+ class ResourceNotFoundException
413
+ attr_accessor message: ::String
414
+ SENSITIVE: []
415
+ end
416
+
417
+ class ResourceResult
418
+ attr_accessor component_id: ::String
419
+ attr_accessor last_checked_timestamp: ::Time
420
+ attr_accessor readiness: ("READY" | "NOT_READY" | "UNKNOWN" | "NOT_AUTHORIZED")
421
+ attr_accessor resource_arn: ::String
422
+ SENSITIVE: []
423
+ end
424
+
425
+ class ResourceSetOutput
426
+ attr_accessor resource_set_arn: ::String
427
+ attr_accessor resource_set_name: ::String
428
+ attr_accessor resource_set_type: ::String
429
+ attr_accessor resources: ::Array[Types::Resource]
430
+ attr_accessor tags: ::Hash[::String, ::String]
431
+ SENSITIVE: []
432
+ end
433
+
434
+ class RuleResult
435
+ attr_accessor last_checked_timestamp: ::Time
436
+ attr_accessor messages: ::Array[Types::Message]
437
+ attr_accessor readiness: ("READY" | "NOT_READY" | "UNKNOWN" | "NOT_AUTHORIZED")
438
+ attr_accessor rule_id: ::String
439
+ SENSITIVE: []
440
+ end
441
+
442
+ class TagResourceRequest
443
+ attr_accessor resource_arn: ::String
444
+ attr_accessor tags: ::Hash[::String, ::String]
445
+ SENSITIVE: []
446
+ end
447
+
448
+ class TagResourceResponse < Aws::EmptyStructure
449
+ end
450
+
451
+ class TargetResource
452
+ attr_accessor nlb_resource: Types::NLBResource
453
+ attr_accessor r53_resource: Types::R53ResourceRecord
454
+ SENSITIVE: []
455
+ end
456
+
457
+ class ThrottlingException
458
+ attr_accessor message: ::String
459
+ SENSITIVE: []
460
+ end
461
+
462
+ class UntagResourceRequest
463
+ attr_accessor resource_arn: ::String
464
+ attr_accessor tag_keys: ::Array[::String]
465
+ SENSITIVE: []
466
+ end
467
+
468
+ class UpdateCellRequest
469
+ attr_accessor cell_name: ::String
470
+ attr_accessor cells: ::Array[::String]
471
+ SENSITIVE: []
472
+ end
473
+
474
+ class UpdateCellResponse
475
+ attr_accessor cell_arn: ::String
476
+ attr_accessor cell_name: ::String
477
+ attr_accessor cells: ::Array[::String]
478
+ attr_accessor parent_readiness_scopes: ::Array[::String]
479
+ attr_accessor tags: ::Hash[::String, ::String]
480
+ SENSITIVE: []
481
+ end
482
+
483
+ class UpdateReadinessCheckRequest
484
+ attr_accessor readiness_check_name: ::String
485
+ attr_accessor resource_set_name: ::String
486
+ SENSITIVE: []
487
+ end
488
+
489
+ class UpdateReadinessCheckResponse
490
+ attr_accessor readiness_check_arn: ::String
491
+ attr_accessor readiness_check_name: ::String
492
+ attr_accessor resource_set: ::String
493
+ attr_accessor tags: ::Hash[::String, ::String]
494
+ SENSITIVE: []
495
+ end
496
+
497
+ class UpdateRecoveryGroupRequest
498
+ attr_accessor cells: ::Array[::String]
499
+ attr_accessor recovery_group_name: ::String
500
+ SENSITIVE: []
501
+ end
502
+
503
+ class UpdateRecoveryGroupResponse
504
+ attr_accessor cells: ::Array[::String]
505
+ attr_accessor recovery_group_arn: ::String
506
+ attr_accessor recovery_group_name: ::String
507
+ attr_accessor tags: ::Hash[::String, ::String]
508
+ SENSITIVE: []
509
+ end
510
+
511
+ class UpdateResourceSetRequest
512
+ attr_accessor resource_set_name: ::String
513
+ attr_accessor resource_set_type: ::String
514
+ attr_accessor resources: ::Array[Types::Resource]
515
+ SENSITIVE: []
516
+ end
517
+
518
+ class UpdateResourceSetResponse
519
+ attr_accessor resource_set_arn: ::String
520
+ attr_accessor resource_set_name: ::String
521
+ attr_accessor resource_set_type: ::String
522
+ attr_accessor resources: ::Array[Types::Resource]
523
+ attr_accessor tags: ::Hash[::String, ::String]
524
+ SENSITIVE: []
525
+ end
526
+
527
+ class ValidationException
528
+ attr_accessor message: ::String
529
+ SENSITIVE: []
530
+ end
531
+ end
532
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
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 Waiters
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53recoveryreadiness
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.21.0
4
+ version: 1.23.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: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.188.0
22
+ version: 3.193.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.188.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-route53recoveryreadiness/plugins/endpoints.rb
67
67
  - lib/aws-sdk-route53recoveryreadiness/resource.rb
68
68
  - lib/aws-sdk-route53recoveryreadiness/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-route53recoveryreadiness
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-route53recoveryreadiness/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - AWS Route53 Recovery Readiness
94
99
  test_files: []