aws-sdk-resiliencehub 1.24.0 → 1.26.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,942 @@
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 ResilienceHub
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/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 _AddDraftAppVersionResourceMappingsResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddDraftAppVersionResourceMappingsResponse]
77
+ def app_arn: () -> ::String
78
+ def app_version: () -> ::String
79
+ def resource_mappings: () -> ::Array[Types::ResourceMapping]
80
+ end
81
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#add_draft_app_version_resource_mappings-instance_method
82
+ def add_draft_app_version_resource_mappings: (
83
+ app_arn: ::String,
84
+ resource_mappings: Array[
85
+ {
86
+ app_registry_app_name: ::String?,
87
+ eks_source_name: ::String?,
88
+ logical_stack_name: ::String?,
89
+ mapping_type: ("CfnStack" | "Resource" | "AppRegistryApp" | "ResourceGroup" | "Terraform" | "EKS"),
90
+ physical_resource_id: {
91
+ aws_account_id: ::String?,
92
+ aws_region: ::String?,
93
+ identifier: ::String,
94
+ type: ("Arn" | "Native")
95
+ },
96
+ resource_group_name: ::String?,
97
+ resource_name: ::String?,
98
+ terraform_source_name: ::String?
99
+ },
100
+ ]
101
+ ) -> _AddDraftAppVersionResourceMappingsResponseSuccess
102
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddDraftAppVersionResourceMappingsResponseSuccess
103
+
104
+ interface _BatchUpdateRecommendationStatusResponseSuccess
105
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchUpdateRecommendationStatusResponse]
106
+ def app_arn: () -> ::String
107
+ def failed_entries: () -> ::Array[Types::BatchUpdateRecommendationStatusFailedEntry]
108
+ def successful_entries: () -> ::Array[Types::BatchUpdateRecommendationStatusSuccessfulEntry]
109
+ end
110
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#batch_update_recommendation_status-instance_method
111
+ def batch_update_recommendation_status: (
112
+ app_arn: ::String,
113
+ request_entries: Array[
114
+ {
115
+ entry_id: ::String,
116
+ exclude_reason: ("AlreadyImplemented" | "NotRelevant" | "ComplexityOfImplementation")?,
117
+ excluded: bool,
118
+ item: {
119
+ resource_id: ::String?,
120
+ target_account_id: ::String?,
121
+ target_region: ::String?
122
+ },
123
+ reference_id: ::String
124
+ },
125
+ ]
126
+ ) -> _BatchUpdateRecommendationStatusResponseSuccess
127
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchUpdateRecommendationStatusResponseSuccess
128
+
129
+ interface _CreateAppResponseSuccess
130
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAppResponse]
131
+ def app: () -> Types::App
132
+ end
133
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#create_app-instance_method
134
+ def create_app: (
135
+ ?assessment_schedule: ("Disabled" | "Daily"),
136
+ ?client_token: ::String,
137
+ ?description: ::String,
138
+ ?event_subscriptions: Array[
139
+ {
140
+ event_type: ("ScheduledAssessmentFailure" | "DriftDetected"),
141
+ name: ::String,
142
+ sns_topic_arn: ::String?
143
+ },
144
+ ],
145
+ name: ::String,
146
+ ?permission_model: {
147
+ cross_account_role_arns: Array[::String]?,
148
+ invoker_role_name: ::String?,
149
+ type: ("LegacyIAMUser" | "RoleBased")
150
+ },
151
+ ?policy_arn: ::String,
152
+ ?tags: Hash[::String, ::String]
153
+ ) -> _CreateAppResponseSuccess
154
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAppResponseSuccess
155
+
156
+ interface _CreateAppVersionAppComponentResponseSuccess
157
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAppVersionAppComponentResponse]
158
+ def app_arn: () -> ::String
159
+ def app_component: () -> Types::AppComponent
160
+ def app_version: () -> ::String
161
+ end
162
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#create_app_version_app_component-instance_method
163
+ def create_app_version_app_component: (
164
+ ?additional_info: Hash[::String, Array[::String]],
165
+ app_arn: ::String,
166
+ ?client_token: ::String,
167
+ ?id: ::String,
168
+ name: ::String,
169
+ type: ::String
170
+ ) -> _CreateAppVersionAppComponentResponseSuccess
171
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAppVersionAppComponentResponseSuccess
172
+
173
+ interface _CreateAppVersionResourceResponseSuccess
174
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAppVersionResourceResponse]
175
+ def app_arn: () -> ::String
176
+ def app_version: () -> ::String
177
+ def physical_resource: () -> Types::PhysicalResource
178
+ end
179
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#create_app_version_resource-instance_method
180
+ def create_app_version_resource: (
181
+ ?additional_info: Hash[::String, Array[::String]],
182
+ app_arn: ::String,
183
+ app_components: Array[::String],
184
+ ?aws_account_id: ::String,
185
+ ?aws_region: ::String,
186
+ ?client_token: ::String,
187
+ logical_resource_id: {
188
+ eks_source_name: ::String?,
189
+ identifier: ::String,
190
+ logical_stack_name: ::String?,
191
+ resource_group_name: ::String?,
192
+ terraform_source_name: ::String?
193
+ },
194
+ physical_resource_id: ::String,
195
+ ?resource_name: ::String,
196
+ resource_type: ::String
197
+ ) -> _CreateAppVersionResourceResponseSuccess
198
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAppVersionResourceResponseSuccess
199
+
200
+ interface _CreateRecommendationTemplateResponseSuccess
201
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRecommendationTemplateResponse]
202
+ def recommendation_template: () -> Types::RecommendationTemplate
203
+ end
204
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#create_recommendation_template-instance_method
205
+ def create_recommendation_template: (
206
+ assessment_arn: ::String,
207
+ ?bucket_name: ::String,
208
+ ?client_token: ::String,
209
+ ?format: ("CfnYaml" | "CfnJson"),
210
+ name: ::String,
211
+ ?recommendation_ids: Array[::String],
212
+ ?recommendation_types: Array[("Alarm" | "Sop" | "Test")],
213
+ ?tags: Hash[::String, ::String]
214
+ ) -> _CreateRecommendationTemplateResponseSuccess
215
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRecommendationTemplateResponseSuccess
216
+
217
+ interface _CreateResiliencyPolicyResponseSuccess
218
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateResiliencyPolicyResponse]
219
+ def policy: () -> Types::ResiliencyPolicy
220
+ end
221
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#create_resiliency_policy-instance_method
222
+ def create_resiliency_policy: (
223
+ ?client_token: ::String,
224
+ ?data_location_constraint: ("AnyLocation" | "SameContinent" | "SameCountry"),
225
+ policy: Hash[("Software" | "Hardware" | "AZ" | "Region"), {
226
+ rpo_in_secs: ::Integer,
227
+ rto_in_secs: ::Integer
228
+ }],
229
+ ?policy_description: ::String,
230
+ policy_name: ::String,
231
+ ?tags: Hash[::String, ::String],
232
+ tier: ("MissionCritical" | "Critical" | "Important" | "CoreServices" | "NonCritical" | "NotApplicable")
233
+ ) -> _CreateResiliencyPolicyResponseSuccess
234
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResiliencyPolicyResponseSuccess
235
+
236
+ interface _DeleteAppResponseSuccess
237
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAppResponse]
238
+ def app_arn: () -> ::String
239
+ end
240
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#delete_app-instance_method
241
+ def delete_app: (
242
+ app_arn: ::String,
243
+ ?client_token: ::String,
244
+ ?force_delete: bool
245
+ ) -> _DeleteAppResponseSuccess
246
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAppResponseSuccess
247
+
248
+ interface _DeleteAppAssessmentResponseSuccess
249
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAppAssessmentResponse]
250
+ def assessment_arn: () -> ::String
251
+ def assessment_status: () -> ("Pending" | "InProgress" | "Failed" | "Success")
252
+ end
253
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#delete_app_assessment-instance_method
254
+ def delete_app_assessment: (
255
+ assessment_arn: ::String,
256
+ ?client_token: ::String
257
+ ) -> _DeleteAppAssessmentResponseSuccess
258
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAppAssessmentResponseSuccess
259
+
260
+ interface _DeleteAppInputSourceResponseSuccess
261
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAppInputSourceResponse]
262
+ def app_arn: () -> ::String
263
+ def app_input_source: () -> Types::AppInputSource
264
+ end
265
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#delete_app_input_source-instance_method
266
+ def delete_app_input_source: (
267
+ app_arn: ::String,
268
+ ?client_token: ::String,
269
+ ?eks_source_cluster_namespace: {
270
+ eks_cluster_arn: ::String,
271
+ namespace: ::String
272
+ },
273
+ ?source_arn: ::String,
274
+ ?terraform_source: {
275
+ s3_state_file_url: ::String
276
+ }
277
+ ) -> _DeleteAppInputSourceResponseSuccess
278
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAppInputSourceResponseSuccess
279
+
280
+ interface _DeleteAppVersionAppComponentResponseSuccess
281
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAppVersionAppComponentResponse]
282
+ def app_arn: () -> ::String
283
+ def app_component: () -> Types::AppComponent
284
+ def app_version: () -> ::String
285
+ end
286
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#delete_app_version_app_component-instance_method
287
+ def delete_app_version_app_component: (
288
+ app_arn: ::String,
289
+ ?client_token: ::String,
290
+ id: ::String
291
+ ) -> _DeleteAppVersionAppComponentResponseSuccess
292
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAppVersionAppComponentResponseSuccess
293
+
294
+ interface _DeleteAppVersionResourceResponseSuccess
295
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAppVersionResourceResponse]
296
+ def app_arn: () -> ::String
297
+ def app_version: () -> ::String
298
+ def physical_resource: () -> Types::PhysicalResource
299
+ end
300
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#delete_app_version_resource-instance_method
301
+ def delete_app_version_resource: (
302
+ app_arn: ::String,
303
+ ?aws_account_id: ::String,
304
+ ?aws_region: ::String,
305
+ ?client_token: ::String,
306
+ ?logical_resource_id: {
307
+ eks_source_name: ::String?,
308
+ identifier: ::String,
309
+ logical_stack_name: ::String?,
310
+ resource_group_name: ::String?,
311
+ terraform_source_name: ::String?
312
+ },
313
+ ?physical_resource_id: ::String,
314
+ ?resource_name: ::String
315
+ ) -> _DeleteAppVersionResourceResponseSuccess
316
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAppVersionResourceResponseSuccess
317
+
318
+ interface _DeleteRecommendationTemplateResponseSuccess
319
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRecommendationTemplateResponse]
320
+ def recommendation_template_arn: () -> ::String
321
+ def status: () -> ("Pending" | "InProgress" | "Failed" | "Success")
322
+ end
323
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#delete_recommendation_template-instance_method
324
+ def delete_recommendation_template: (
325
+ ?client_token: ::String,
326
+ recommendation_template_arn: ::String
327
+ ) -> _DeleteRecommendationTemplateResponseSuccess
328
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRecommendationTemplateResponseSuccess
329
+
330
+ interface _DeleteResiliencyPolicyResponseSuccess
331
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResiliencyPolicyResponse]
332
+ def policy_arn: () -> ::String
333
+ end
334
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#delete_resiliency_policy-instance_method
335
+ def delete_resiliency_policy: (
336
+ ?client_token: ::String,
337
+ policy_arn: ::String
338
+ ) -> _DeleteResiliencyPolicyResponseSuccess
339
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteResiliencyPolicyResponseSuccess
340
+
341
+ interface _DescribeAppResponseSuccess
342
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppResponse]
343
+ def app: () -> Types::App
344
+ end
345
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#describe_app-instance_method
346
+ def describe_app: (
347
+ app_arn: ::String
348
+ ) -> _DescribeAppResponseSuccess
349
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppResponseSuccess
350
+
351
+ interface _DescribeAppAssessmentResponseSuccess
352
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppAssessmentResponse]
353
+ def assessment: () -> Types::AppAssessment
354
+ end
355
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#describe_app_assessment-instance_method
356
+ def describe_app_assessment: (
357
+ assessment_arn: ::String
358
+ ) -> _DescribeAppAssessmentResponseSuccess
359
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppAssessmentResponseSuccess
360
+
361
+ interface _DescribeAppVersionResponseSuccess
362
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppVersionResponse]
363
+ def additional_info: () -> ::Hash[::String, ::Array[::String]]
364
+ def app_arn: () -> ::String
365
+ def app_version: () -> ::String
366
+ end
367
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#describe_app_version-instance_method
368
+ def describe_app_version: (
369
+ app_arn: ::String,
370
+ app_version: ::String
371
+ ) -> _DescribeAppVersionResponseSuccess
372
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppVersionResponseSuccess
373
+
374
+ interface _DescribeAppVersionAppComponentResponseSuccess
375
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppVersionAppComponentResponse]
376
+ def app_arn: () -> ::String
377
+ def app_component: () -> Types::AppComponent
378
+ def app_version: () -> ::String
379
+ end
380
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#describe_app_version_app_component-instance_method
381
+ def describe_app_version_app_component: (
382
+ app_arn: ::String,
383
+ app_version: ::String,
384
+ id: ::String
385
+ ) -> _DescribeAppVersionAppComponentResponseSuccess
386
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppVersionAppComponentResponseSuccess
387
+
388
+ interface _DescribeAppVersionResourceResponseSuccess
389
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppVersionResourceResponse]
390
+ def app_arn: () -> ::String
391
+ def app_version: () -> ::String
392
+ def physical_resource: () -> Types::PhysicalResource
393
+ end
394
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#describe_app_version_resource-instance_method
395
+ def describe_app_version_resource: (
396
+ app_arn: ::String,
397
+ app_version: ::String,
398
+ ?aws_account_id: ::String,
399
+ ?aws_region: ::String,
400
+ ?logical_resource_id: {
401
+ eks_source_name: ::String?,
402
+ identifier: ::String,
403
+ logical_stack_name: ::String?,
404
+ resource_group_name: ::String?,
405
+ terraform_source_name: ::String?
406
+ },
407
+ ?physical_resource_id: ::String,
408
+ ?resource_name: ::String
409
+ ) -> _DescribeAppVersionResourceResponseSuccess
410
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppVersionResourceResponseSuccess
411
+
412
+ interface _DescribeAppVersionResourcesResolutionStatusResponseSuccess
413
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppVersionResourcesResolutionStatusResponse]
414
+ def app_arn: () -> ::String
415
+ def app_version: () -> ::String
416
+ def error_message: () -> ::String
417
+ def resolution_id: () -> ::String
418
+ def status: () -> ("Pending" | "InProgress" | "Failed" | "Success")
419
+ end
420
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#describe_app_version_resources_resolution_status-instance_method
421
+ def describe_app_version_resources_resolution_status: (
422
+ app_arn: ::String,
423
+ app_version: ::String,
424
+ ?resolution_id: ::String
425
+ ) -> _DescribeAppVersionResourcesResolutionStatusResponseSuccess
426
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppVersionResourcesResolutionStatusResponseSuccess
427
+
428
+ interface _DescribeAppVersionTemplateResponseSuccess
429
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppVersionTemplateResponse]
430
+ def app_arn: () -> ::String
431
+ def app_template_body: () -> ::String
432
+ def app_version: () -> ::String
433
+ end
434
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#describe_app_version_template-instance_method
435
+ def describe_app_version_template: (
436
+ app_arn: ::String,
437
+ app_version: ::String
438
+ ) -> _DescribeAppVersionTemplateResponseSuccess
439
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppVersionTemplateResponseSuccess
440
+
441
+ interface _DescribeDraftAppVersionResourcesImportStatusResponseSuccess
442
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDraftAppVersionResourcesImportStatusResponse]
443
+ def app_arn: () -> ::String
444
+ def app_version: () -> ::String
445
+ def error_message: () -> ::String
446
+ def status: () -> ("Pending" | "InProgress" | "Failed" | "Success")
447
+ def status_change_time: () -> ::Time
448
+ end
449
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#describe_draft_app_version_resources_import_status-instance_method
450
+ def describe_draft_app_version_resources_import_status: (
451
+ app_arn: ::String
452
+ ) -> _DescribeDraftAppVersionResourcesImportStatusResponseSuccess
453
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDraftAppVersionResourcesImportStatusResponseSuccess
454
+
455
+ interface _DescribeResiliencyPolicyResponseSuccess
456
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeResiliencyPolicyResponse]
457
+ def policy: () -> Types::ResiliencyPolicy
458
+ end
459
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#describe_resiliency_policy-instance_method
460
+ def describe_resiliency_policy: (
461
+ policy_arn: ::String
462
+ ) -> _DescribeResiliencyPolicyResponseSuccess
463
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeResiliencyPolicyResponseSuccess
464
+
465
+ interface _ImportResourcesToDraftAppVersionResponseSuccess
466
+ include ::Seahorse::Client::_ResponseSuccess[Types::ImportResourcesToDraftAppVersionResponse]
467
+ def app_arn: () -> ::String
468
+ def app_version: () -> ::String
469
+ def eks_sources: () -> ::Array[Types::EksSource]
470
+ def source_arns: () -> ::Array[::String]
471
+ def status: () -> ("Pending" | "InProgress" | "Failed" | "Success")
472
+ def terraform_sources: () -> ::Array[Types::TerraformSource]
473
+ end
474
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#import_resources_to_draft_app_version-instance_method
475
+ def import_resources_to_draft_app_version: (
476
+ app_arn: ::String,
477
+ ?eks_sources: Array[
478
+ {
479
+ eks_cluster_arn: ::String,
480
+ namespaces: Array[::String]
481
+ },
482
+ ],
483
+ ?import_strategy: ("AddOnly" | "ReplaceAll"),
484
+ ?source_arns: Array[::String],
485
+ ?terraform_sources: Array[
486
+ {
487
+ s3_state_file_url: ::String
488
+ },
489
+ ]
490
+ ) -> _ImportResourcesToDraftAppVersionResponseSuccess
491
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportResourcesToDraftAppVersionResponseSuccess
492
+
493
+ interface _ListAlarmRecommendationsResponseSuccess
494
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAlarmRecommendationsResponse]
495
+ def alarm_recommendations: () -> ::Array[Types::AlarmRecommendation]
496
+ def next_token: () -> ::String
497
+ end
498
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_alarm_recommendations-instance_method
499
+ def list_alarm_recommendations: (
500
+ assessment_arn: ::String,
501
+ ?max_results: ::Integer,
502
+ ?next_token: ::String
503
+ ) -> _ListAlarmRecommendationsResponseSuccess
504
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAlarmRecommendationsResponseSuccess
505
+
506
+ interface _ListAppAssessmentComplianceDriftsResponseSuccess
507
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAppAssessmentComplianceDriftsResponse]
508
+ def compliance_drifts: () -> ::Array[Types::ComplianceDrift]
509
+ def next_token: () -> ::String
510
+ end
511
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_app_assessment_compliance_drifts-instance_method
512
+ def list_app_assessment_compliance_drifts: (
513
+ assessment_arn: ::String,
514
+ ?max_results: ::Integer,
515
+ ?next_token: ::String
516
+ ) -> _ListAppAssessmentComplianceDriftsResponseSuccess
517
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppAssessmentComplianceDriftsResponseSuccess
518
+
519
+ interface _ListAppAssessmentsResponseSuccess
520
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAppAssessmentsResponse]
521
+ def assessment_summaries: () -> ::Array[Types::AppAssessmentSummary]
522
+ def next_token: () -> ::String
523
+ end
524
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_app_assessments-instance_method
525
+ def list_app_assessments: (
526
+ ?app_arn: ::String,
527
+ ?assessment_name: ::String,
528
+ ?assessment_status: Array[("Pending" | "InProgress" | "Failed" | "Success")],
529
+ ?compliance_status: ("PolicyBreached" | "PolicyMet"),
530
+ ?invoker: ("User" | "System"),
531
+ ?max_results: ::Integer,
532
+ ?next_token: ::String,
533
+ ?reverse_order: bool
534
+ ) -> _ListAppAssessmentsResponseSuccess
535
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppAssessmentsResponseSuccess
536
+
537
+ interface _ListAppComponentCompliancesResponseSuccess
538
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAppComponentCompliancesResponse]
539
+ def component_compliances: () -> ::Array[Types::AppComponentCompliance]
540
+ def next_token: () -> ::String
541
+ end
542
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_app_component_compliances-instance_method
543
+ def list_app_component_compliances: (
544
+ assessment_arn: ::String,
545
+ ?max_results: ::Integer,
546
+ ?next_token: ::String
547
+ ) -> _ListAppComponentCompliancesResponseSuccess
548
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppComponentCompliancesResponseSuccess
549
+
550
+ interface _ListAppComponentRecommendationsResponseSuccess
551
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAppComponentRecommendationsResponse]
552
+ def component_recommendations: () -> ::Array[Types::ComponentRecommendation]
553
+ def next_token: () -> ::String
554
+ end
555
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_app_component_recommendations-instance_method
556
+ def list_app_component_recommendations: (
557
+ assessment_arn: ::String,
558
+ ?max_results: ::Integer,
559
+ ?next_token: ::String
560
+ ) -> _ListAppComponentRecommendationsResponseSuccess
561
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppComponentRecommendationsResponseSuccess
562
+
563
+ interface _ListAppInputSourcesResponseSuccess
564
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAppInputSourcesResponse]
565
+ def app_input_sources: () -> ::Array[Types::AppInputSource]
566
+ def next_token: () -> ::String
567
+ end
568
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_app_input_sources-instance_method
569
+ def list_app_input_sources: (
570
+ app_arn: ::String,
571
+ app_version: ::String,
572
+ ?max_results: ::Integer,
573
+ ?next_token: ::String
574
+ ) -> _ListAppInputSourcesResponseSuccess
575
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppInputSourcesResponseSuccess
576
+
577
+ interface _ListAppVersionAppComponentsResponseSuccess
578
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAppVersionAppComponentsResponse]
579
+ def app_arn: () -> ::String
580
+ def app_components: () -> ::Array[Types::AppComponent]
581
+ def app_version: () -> ::String
582
+ def next_token: () -> ::String
583
+ end
584
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_app_version_app_components-instance_method
585
+ def list_app_version_app_components: (
586
+ app_arn: ::String,
587
+ app_version: ::String,
588
+ ?max_results: ::Integer,
589
+ ?next_token: ::String
590
+ ) -> _ListAppVersionAppComponentsResponseSuccess
591
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppVersionAppComponentsResponseSuccess
592
+
593
+ interface _ListAppVersionResourceMappingsResponseSuccess
594
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAppVersionResourceMappingsResponse]
595
+ def next_token: () -> ::String
596
+ def resource_mappings: () -> ::Array[Types::ResourceMapping]
597
+ end
598
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_app_version_resource_mappings-instance_method
599
+ def list_app_version_resource_mappings: (
600
+ app_arn: ::String,
601
+ app_version: ::String,
602
+ ?max_results: ::Integer,
603
+ ?next_token: ::String
604
+ ) -> _ListAppVersionResourceMappingsResponseSuccess
605
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppVersionResourceMappingsResponseSuccess
606
+
607
+ interface _ListAppVersionResourcesResponseSuccess
608
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAppVersionResourcesResponse]
609
+ def next_token: () -> ::String
610
+ def physical_resources: () -> ::Array[Types::PhysicalResource]
611
+ def resolution_id: () -> ::String
612
+ end
613
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_app_version_resources-instance_method
614
+ def list_app_version_resources: (
615
+ app_arn: ::String,
616
+ app_version: ::String,
617
+ ?max_results: ::Integer,
618
+ ?next_token: ::String,
619
+ ?resolution_id: ::String
620
+ ) -> _ListAppVersionResourcesResponseSuccess
621
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppVersionResourcesResponseSuccess
622
+
623
+ interface _ListAppVersionsResponseSuccess
624
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAppVersionsResponse]
625
+ def app_versions: () -> ::Array[Types::AppVersionSummary]
626
+ def next_token: () -> ::String
627
+ end
628
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_app_versions-instance_method
629
+ def list_app_versions: (
630
+ app_arn: ::String,
631
+ ?end_time: ::Time,
632
+ ?max_results: ::Integer,
633
+ ?next_token: ::String,
634
+ ?start_time: ::Time
635
+ ) -> _ListAppVersionsResponseSuccess
636
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppVersionsResponseSuccess
637
+
638
+ interface _ListAppsResponseSuccess
639
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAppsResponse]
640
+ def app_summaries: () -> ::Array[Types::AppSummary]
641
+ def next_token: () -> ::String
642
+ end
643
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_apps-instance_method
644
+ def list_apps: (
645
+ ?app_arn: ::String,
646
+ ?from_last_assessment_time: ::Time,
647
+ ?max_results: ::Integer,
648
+ ?name: ::String,
649
+ ?next_token: ::String,
650
+ ?reverse_order: bool,
651
+ ?to_last_assessment_time: ::Time
652
+ ) -> _ListAppsResponseSuccess
653
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppsResponseSuccess
654
+
655
+ interface _ListRecommendationTemplatesResponseSuccess
656
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRecommendationTemplatesResponse]
657
+ def next_token: () -> ::String
658
+ def recommendation_templates: () -> ::Array[Types::RecommendationTemplate]
659
+ end
660
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_recommendation_templates-instance_method
661
+ def list_recommendation_templates: (
662
+ assessment_arn: ::String,
663
+ ?max_results: ::Integer,
664
+ ?name: ::String,
665
+ ?next_token: ::String,
666
+ ?recommendation_template_arn: ::String,
667
+ ?reverse_order: bool,
668
+ ?status: Array[("Pending" | "InProgress" | "Failed" | "Success")]
669
+ ) -> _ListRecommendationTemplatesResponseSuccess
670
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecommendationTemplatesResponseSuccess
671
+
672
+ interface _ListResiliencyPoliciesResponseSuccess
673
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListResiliencyPoliciesResponse]
674
+ def next_token: () -> ::String
675
+ def resiliency_policies: () -> ::Array[Types::ResiliencyPolicy]
676
+ end
677
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_resiliency_policies-instance_method
678
+ def list_resiliency_policies: (
679
+ ?max_results: ::Integer,
680
+ ?next_token: ::String,
681
+ ?policy_name: ::String
682
+ ) -> _ListResiliencyPoliciesResponseSuccess
683
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListResiliencyPoliciesResponseSuccess
684
+
685
+ interface _ListSopRecommendationsResponseSuccess
686
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSopRecommendationsResponse]
687
+ def next_token: () -> ::String
688
+ def sop_recommendations: () -> ::Array[Types::SopRecommendation]
689
+ end
690
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_sop_recommendations-instance_method
691
+ def list_sop_recommendations: (
692
+ assessment_arn: ::String,
693
+ ?max_results: ::Integer,
694
+ ?next_token: ::String
695
+ ) -> _ListSopRecommendationsResponseSuccess
696
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSopRecommendationsResponseSuccess
697
+
698
+ interface _ListSuggestedResiliencyPoliciesResponseSuccess
699
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSuggestedResiliencyPoliciesResponse]
700
+ def next_token: () -> ::String
701
+ def resiliency_policies: () -> ::Array[Types::ResiliencyPolicy]
702
+ end
703
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_suggested_resiliency_policies-instance_method
704
+ def list_suggested_resiliency_policies: (
705
+ ?max_results: ::Integer,
706
+ ?next_token: ::String
707
+ ) -> _ListSuggestedResiliencyPoliciesResponseSuccess
708
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSuggestedResiliencyPoliciesResponseSuccess
709
+
710
+ interface _ListTagsForResourceResponseSuccess
711
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
712
+ def tags: () -> ::Hash[::String, ::String]
713
+ end
714
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_tags_for_resource-instance_method
715
+ def list_tags_for_resource: (
716
+ resource_arn: ::String
717
+ ) -> _ListTagsForResourceResponseSuccess
718
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
719
+
720
+ interface _ListTestRecommendationsResponseSuccess
721
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestRecommendationsResponse]
722
+ def next_token: () -> ::String
723
+ def test_recommendations: () -> ::Array[Types::TestRecommendation]
724
+ end
725
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_test_recommendations-instance_method
726
+ def list_test_recommendations: (
727
+ assessment_arn: ::String,
728
+ ?max_results: ::Integer,
729
+ ?next_token: ::String
730
+ ) -> _ListTestRecommendationsResponseSuccess
731
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestRecommendationsResponseSuccess
732
+
733
+ interface _ListUnsupportedAppVersionResourcesResponseSuccess
734
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListUnsupportedAppVersionResourcesResponse]
735
+ def next_token: () -> ::String
736
+ def resolution_id: () -> ::String
737
+ def unsupported_resources: () -> ::Array[Types::UnsupportedResource]
738
+ end
739
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#list_unsupported_app_version_resources-instance_method
740
+ def list_unsupported_app_version_resources: (
741
+ app_arn: ::String,
742
+ app_version: ::String,
743
+ ?max_results: ::Integer,
744
+ ?next_token: ::String,
745
+ ?resolution_id: ::String
746
+ ) -> _ListUnsupportedAppVersionResourcesResponseSuccess
747
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUnsupportedAppVersionResourcesResponseSuccess
748
+
749
+ interface _PublishAppVersionResponseSuccess
750
+ include ::Seahorse::Client::_ResponseSuccess[Types::PublishAppVersionResponse]
751
+ def app_arn: () -> ::String
752
+ def app_version: () -> ::String
753
+ def identifier: () -> ::Integer
754
+ def version_name: () -> ::String
755
+ end
756
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#publish_app_version-instance_method
757
+ def publish_app_version: (
758
+ app_arn: ::String,
759
+ ?version_name: ::String
760
+ ) -> _PublishAppVersionResponseSuccess
761
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PublishAppVersionResponseSuccess
762
+
763
+ interface _PutDraftAppVersionTemplateResponseSuccess
764
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutDraftAppVersionTemplateResponse]
765
+ def app_arn: () -> ::String
766
+ def app_version: () -> ::String
767
+ end
768
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#put_draft_app_version_template-instance_method
769
+ def put_draft_app_version_template: (
770
+ app_arn: ::String,
771
+ app_template_body: ::String
772
+ ) -> _PutDraftAppVersionTemplateResponseSuccess
773
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDraftAppVersionTemplateResponseSuccess
774
+
775
+ interface _RemoveDraftAppVersionResourceMappingsResponseSuccess
776
+ include ::Seahorse::Client::_ResponseSuccess[Types::RemoveDraftAppVersionResourceMappingsResponse]
777
+ def app_arn: () -> ::String
778
+ def app_version: () -> ::String
779
+ end
780
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#remove_draft_app_version_resource_mappings-instance_method
781
+ def remove_draft_app_version_resource_mappings: (
782
+ app_arn: ::String,
783
+ ?app_registry_app_names: Array[::String],
784
+ ?eks_source_names: Array[::String],
785
+ ?logical_stack_names: Array[::String],
786
+ ?resource_group_names: Array[::String],
787
+ ?resource_names: Array[::String],
788
+ ?terraform_source_names: Array[::String]
789
+ ) -> _RemoveDraftAppVersionResourceMappingsResponseSuccess
790
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveDraftAppVersionResourceMappingsResponseSuccess
791
+
792
+ interface _ResolveAppVersionResourcesResponseSuccess
793
+ include ::Seahorse::Client::_ResponseSuccess[Types::ResolveAppVersionResourcesResponse]
794
+ def app_arn: () -> ::String
795
+ def app_version: () -> ::String
796
+ def resolution_id: () -> ::String
797
+ def status: () -> ("Pending" | "InProgress" | "Failed" | "Success")
798
+ end
799
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#resolve_app_version_resources-instance_method
800
+ def resolve_app_version_resources: (
801
+ app_arn: ::String,
802
+ app_version: ::String
803
+ ) -> _ResolveAppVersionResourcesResponseSuccess
804
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResolveAppVersionResourcesResponseSuccess
805
+
806
+ interface _StartAppAssessmentResponseSuccess
807
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartAppAssessmentResponse]
808
+ def assessment: () -> Types::AppAssessment
809
+ end
810
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#start_app_assessment-instance_method
811
+ def start_app_assessment: (
812
+ app_arn: ::String,
813
+ app_version: ::String,
814
+ assessment_name: ::String,
815
+ ?client_token: ::String,
816
+ ?tags: Hash[::String, ::String]
817
+ ) -> _StartAppAssessmentResponseSuccess
818
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAppAssessmentResponseSuccess
819
+
820
+ interface _TagResourceResponseSuccess
821
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
822
+ end
823
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#tag_resource-instance_method
824
+ def tag_resource: (
825
+ resource_arn: ::String,
826
+ tags: Hash[::String, ::String]
827
+ ) -> _TagResourceResponseSuccess
828
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
829
+
830
+ interface _UntagResourceResponseSuccess
831
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
832
+ end
833
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#untag_resource-instance_method
834
+ def untag_resource: (
835
+ resource_arn: ::String,
836
+ tag_keys: Array[::String]
837
+ ) -> _UntagResourceResponseSuccess
838
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
839
+
840
+ interface _UpdateAppResponseSuccess
841
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAppResponse]
842
+ def app: () -> Types::App
843
+ end
844
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#update_app-instance_method
845
+ def update_app: (
846
+ app_arn: ::String,
847
+ ?assessment_schedule: ("Disabled" | "Daily"),
848
+ ?clear_resiliency_policy_arn: bool,
849
+ ?description: ::String,
850
+ ?event_subscriptions: Array[
851
+ {
852
+ event_type: ("ScheduledAssessmentFailure" | "DriftDetected"),
853
+ name: ::String,
854
+ sns_topic_arn: ::String?
855
+ },
856
+ ],
857
+ ?permission_model: {
858
+ cross_account_role_arns: Array[::String]?,
859
+ invoker_role_name: ::String?,
860
+ type: ("LegacyIAMUser" | "RoleBased")
861
+ },
862
+ ?policy_arn: ::String
863
+ ) -> _UpdateAppResponseSuccess
864
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAppResponseSuccess
865
+
866
+ interface _UpdateAppVersionResponseSuccess
867
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAppVersionResponse]
868
+ def additional_info: () -> ::Hash[::String, ::Array[::String]]
869
+ def app_arn: () -> ::String
870
+ def app_version: () -> ::String
871
+ end
872
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#update_app_version-instance_method
873
+ def update_app_version: (
874
+ ?additional_info: Hash[::String, Array[::String]],
875
+ app_arn: ::String
876
+ ) -> _UpdateAppVersionResponseSuccess
877
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAppVersionResponseSuccess
878
+
879
+ interface _UpdateAppVersionAppComponentResponseSuccess
880
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAppVersionAppComponentResponse]
881
+ def app_arn: () -> ::String
882
+ def app_component: () -> Types::AppComponent
883
+ def app_version: () -> ::String
884
+ end
885
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#update_app_version_app_component-instance_method
886
+ def update_app_version_app_component: (
887
+ ?additional_info: Hash[::String, Array[::String]],
888
+ app_arn: ::String,
889
+ id: ::String,
890
+ ?name: ::String,
891
+ ?type: ::String
892
+ ) -> _UpdateAppVersionAppComponentResponseSuccess
893
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAppVersionAppComponentResponseSuccess
894
+
895
+ interface _UpdateAppVersionResourceResponseSuccess
896
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAppVersionResourceResponse]
897
+ def app_arn: () -> ::String
898
+ def app_version: () -> ::String
899
+ def physical_resource: () -> Types::PhysicalResource
900
+ end
901
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#update_app_version_resource-instance_method
902
+ def update_app_version_resource: (
903
+ ?additional_info: Hash[::String, Array[::String]],
904
+ app_arn: ::String,
905
+ ?app_components: Array[::String],
906
+ ?aws_account_id: ::String,
907
+ ?aws_region: ::String,
908
+ ?excluded: bool,
909
+ ?logical_resource_id: {
910
+ eks_source_name: ::String?,
911
+ identifier: ::String,
912
+ logical_stack_name: ::String?,
913
+ resource_group_name: ::String?,
914
+ terraform_source_name: ::String?
915
+ },
916
+ ?physical_resource_id: ::String,
917
+ ?resource_name: ::String,
918
+ ?resource_type: ::String
919
+ ) -> _UpdateAppVersionResourceResponseSuccess
920
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAppVersionResourceResponseSuccess
921
+
922
+ interface _UpdateResiliencyPolicyResponseSuccess
923
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateResiliencyPolicyResponse]
924
+ def policy: () -> Types::ResiliencyPolicy
925
+ end
926
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResilienceHub/Client.html#update_resiliency_policy-instance_method
927
+ def update_resiliency_policy: (
928
+ ?data_location_constraint: ("AnyLocation" | "SameContinent" | "SameCountry"),
929
+ ?policy: Hash[("Software" | "Hardware" | "AZ" | "Region"), {
930
+ rpo_in_secs: ::Integer,
931
+ rto_in_secs: ::Integer
932
+ }],
933
+ policy_arn: ::String,
934
+ ?policy_description: ::String,
935
+ ?policy_name: ::String,
936
+ ?tier: ("MissionCritical" | "Critical" | "Important" | "CoreServices" | "NonCritical" | "NotApplicable")
937
+ ) -> _UpdateResiliencyPolicyResponseSuccess
938
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateResiliencyPolicyResponseSuccess
939
+ end
940
+ end
941
+ end
942
+