aws-sdk-resiliencehub 1.10.0 → 1.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-resiliencehub/client.rb +348 -234
- data/lib/aws-sdk-resiliencehub/client_api.rb +25 -0
- data/lib/aws-sdk-resiliencehub/types.rb +679 -401
- data/lib/aws-sdk-resiliencehub.rb +1 -1
- metadata +2 -2
@@ -372,9 +372,9 @@ module Aws::ResilienceHub
|
|
372
372
|
# also update an existing resource mapping to a new physical resource.
|
373
373
|
#
|
374
374
|
# @option params [required, String] :app_arn
|
375
|
-
# The Amazon Resource Name (ARN) of the
|
376
|
-
#
|
377
|
-
# arn:`partition
|
375
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
376
|
+
# format for this ARN is:
|
377
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
378
378
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
379
379
|
# the *AWS General Reference* guide.
|
380
380
|
#
|
@@ -403,8 +403,9 @@ module Aws::ResilienceHub
|
|
403
403
|
# resource_mappings: [ # required
|
404
404
|
# {
|
405
405
|
# app_registry_app_name: "EntityName",
|
406
|
+
# eks_source_name: "String255",
|
406
407
|
# logical_stack_name: "String255",
|
407
|
-
# mapping_type: "CfnStack", # required, accepts CfnStack, Resource, AppRegistryApp, ResourceGroup, Terraform
|
408
|
+
# mapping_type: "CfnStack", # required, accepts CfnStack, Resource, AppRegistryApp, ResourceGroup, Terraform, EKS
|
408
409
|
# physical_resource_id: { # required
|
409
410
|
# aws_account_id: "CustomerId",
|
410
411
|
# aws_region: "AwsRegion",
|
@@ -424,8 +425,9 @@ module Aws::ResilienceHub
|
|
424
425
|
# resp.app_version #=> String
|
425
426
|
# resp.resource_mappings #=> Array
|
426
427
|
# resp.resource_mappings[0].app_registry_app_name #=> String
|
428
|
+
# resp.resource_mappings[0].eks_source_name #=> String
|
427
429
|
# resp.resource_mappings[0].logical_stack_name #=> String
|
428
|
-
# resp.resource_mappings[0].mapping_type #=> String, one of "CfnStack", "Resource", "AppRegistryApp", "ResourceGroup", "Terraform"
|
430
|
+
# resp.resource_mappings[0].mapping_type #=> String, one of "CfnStack", "Resource", "AppRegistryApp", "ResourceGroup", "Terraform", "EKS"
|
429
431
|
# resp.resource_mappings[0].physical_resource_id.aws_account_id #=> String
|
430
432
|
# resp.resource_mappings[0].physical_resource_id.aws_region #=> String
|
431
433
|
# resp.resource_mappings[0].physical_resource_id.identifier #=> String
|
@@ -443,15 +445,15 @@ module Aws::ResilienceHub
|
|
443
445
|
req.send_request(options)
|
444
446
|
end
|
445
447
|
|
446
|
-
# Creates an
|
447
|
-
#
|
448
|
-
#
|
449
|
-
#
|
450
|
-
#
|
451
|
-
#
|
452
|
-
#
|
453
|
-
# After you create an
|
454
|
-
#
|
448
|
+
# Creates an Resilience Hub application. An Resilience Hub application
|
449
|
+
# is a collection of Amazon Web Services resources structured to prevent
|
450
|
+
# and recover Amazon Web Services application disruptions. To describe a
|
451
|
+
# Resilience Hub application, you provide an application name, resources
|
452
|
+
# from one or more–up to 20–CloudFormation stacks, and an appropriate
|
453
|
+
# resiliency policy.
|
454
|
+
#
|
455
|
+
# After you create an Resilience Hub application, you publish it so that
|
456
|
+
# you can run a resiliency assessment on it. You can then use
|
455
457
|
# recommendations from the assessment to improve resiliency by running
|
456
458
|
# another assessment, comparing results, and then iterating the process
|
457
459
|
# until you achieve your goals for recovery time objective (RTO) and
|
@@ -477,7 +479,7 @@ module Aws::ResilienceHub
|
|
477
479
|
# @option params [String] :policy_arn
|
478
480
|
# The Amazon Resource Name (ARN) of the resiliency policy. The format
|
479
481
|
# for this ARN is:
|
480
|
-
# arn:`partition
|
482
|
+
# arn:`partition`:resiliencehub:`region`:`account`:resiliency-policy/`policy-id`.
|
481
483
|
# For more information about ARNs, see [ Amazon Resource Names
|
482
484
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
483
485
|
#
|
@@ -532,13 +534,11 @@ module Aws::ResilienceHub
|
|
532
534
|
req.send_request(options)
|
533
535
|
end
|
534
536
|
|
535
|
-
# Creates a new Application Component in the
|
536
|
-
# application.
|
537
|
+
# Creates a new Application Component in the Resilience Hub application.
|
537
538
|
#
|
538
|
-
# <note markdown="1"> This API updates the
|
539
|
-
#
|
540
|
-
#
|
541
|
-
# `PublishAppVersion` API.
|
539
|
+
# <note markdown="1"> This API updates the Resilience Hub application draft version. To use
|
540
|
+
# this Application Component for running assessments, you must publish
|
541
|
+
# the Resilience Hub application using the `PublishAppVersion` API.
|
542
542
|
#
|
543
543
|
# </note>
|
544
544
|
#
|
@@ -547,9 +547,9 @@ module Aws::ResilienceHub
|
|
547
547
|
# Application Components.
|
548
548
|
#
|
549
549
|
# @option params [required, String] :app_arn
|
550
|
-
# The Amazon Resource Name (ARN) of the
|
551
|
-
#
|
552
|
-
# arn:`partition
|
550
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
551
|
+
# format for this ARN is:
|
552
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
553
553
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
554
554
|
# the *AWS General Reference* guide.
|
555
555
|
#
|
@@ -619,17 +619,17 @@ module Aws::ResilienceHub
|
|
619
619
|
req.send_request(options)
|
620
620
|
end
|
621
621
|
|
622
|
-
# Adds a resource to the
|
622
|
+
# Adds a resource to the Resilience Hub application and assigns it to
|
623
623
|
# the specified Application Components. If you specify a new Application
|
624
|
-
# Component,
|
625
|
-
#
|
624
|
+
# Component, Resilience Hub will automatically create the Application
|
625
|
+
# Component.
|
626
626
|
#
|
627
|
-
# <note markdown="1"> * This action has no effect outside
|
627
|
+
# <note markdown="1"> * This action has no effect outside Resilience Hub.
|
628
628
|
#
|
629
|
-
# * This API updates the
|
630
|
-
#
|
631
|
-
# publish the
|
632
|
-
#
|
629
|
+
# * This API updates the Resilience Hub application draft version. To
|
630
|
+
# use this resource for running resiliency assessments, you must
|
631
|
+
# publish the Resilience Hub application using the `PublishAppVersion`
|
632
|
+
# API.
|
633
633
|
#
|
634
634
|
# * To update application version with new `physicalResourceID`, you
|
635
635
|
# must call `ResolveAppVersionResources` API.
|
@@ -640,9 +640,9 @@ module Aws::ResilienceHub
|
|
640
640
|
# Currently, there is no supported additional information for resources.
|
641
641
|
#
|
642
642
|
# @option params [required, String] :app_arn
|
643
|
-
# The Amazon Resource Name (ARN) of the
|
644
|
-
#
|
645
|
-
# arn:`partition
|
643
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
644
|
+
# format for this ARN is:
|
645
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
646
646
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
647
647
|
# the *AWS General Reference* guide.
|
648
648
|
#
|
@@ -652,7 +652,7 @@ module Aws::ResilienceHub
|
|
652
652
|
#
|
653
653
|
# @option params [required, Array<String>] :app_components
|
654
654
|
# The list of Application Components that this resource belongs to. If
|
655
|
-
# an Application Component is not part of the
|
655
|
+
# an Application Component is not part of the Resilience Hub
|
656
656
|
# application, it will be added.
|
657
657
|
#
|
658
658
|
# @option params [String] :aws_account_id
|
@@ -699,6 +699,7 @@ module Aws::ResilienceHub
|
|
699
699
|
# aws_region: "AwsRegion",
|
700
700
|
# client_token: "ClientToken",
|
701
701
|
# logical_resource_id: { # required
|
702
|
+
# eks_source_name: "String255",
|
702
703
|
# identifier: "String255", # required
|
703
704
|
# logical_stack_name: "String255",
|
704
705
|
# resource_group_name: "EntityName",
|
@@ -724,6 +725,7 @@ module Aws::ResilienceHub
|
|
724
725
|
# resp.physical_resource.app_components[0].name #=> String
|
725
726
|
# resp.physical_resource.app_components[0].type #=> String
|
726
727
|
# resp.physical_resource.excluded #=> Boolean
|
728
|
+
# resp.physical_resource.logical_resource_id.eks_source_name #=> String
|
727
729
|
# resp.physical_resource.logical_resource_id.identifier #=> String
|
728
730
|
# resp.physical_resource.logical_resource_id.logical_stack_name #=> String
|
729
731
|
# resp.physical_resource.logical_resource_id.resource_group_name #=> String
|
@@ -744,13 +746,13 @@ module Aws::ResilienceHub
|
|
744
746
|
req.send_request(options)
|
745
747
|
end
|
746
748
|
|
747
|
-
# Creates a new recommendation template for the
|
749
|
+
# Creates a new recommendation template for the Resilience Hub
|
748
750
|
# application.
|
749
751
|
#
|
750
752
|
# @option params [required, String] :assessment_arn
|
751
753
|
# The Amazon Resource Name (ARN) of the assessment. The format for this
|
752
754
|
# ARN is:
|
753
|
-
# arn:`partition
|
755
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app-assessment/`app-id`.
|
754
756
|
# For more information about ARNs, see [ Amazon Resource Names
|
755
757
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
756
758
|
#
|
@@ -938,13 +940,13 @@ module Aws::ResilienceHub
|
|
938
940
|
req.send_request(options)
|
939
941
|
end
|
940
942
|
|
941
|
-
# Deletes an
|
942
|
-
#
|
943
|
+
# Deletes an Resilience Hub application. This is a destructive action
|
944
|
+
# that can't be undone.
|
943
945
|
#
|
944
946
|
# @option params [required, String] :app_arn
|
945
|
-
# The Amazon Resource Name (ARN) of the
|
946
|
-
#
|
947
|
-
# arn:`partition
|
947
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
948
|
+
# format for this ARN is:
|
949
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
948
950
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
949
951
|
# the *AWS General Reference* guide.
|
950
952
|
#
|
@@ -961,7 +963,7 @@ module Aws::ResilienceHub
|
|
961
963
|
# not need to pass this option.**
|
962
964
|
#
|
963
965
|
# @option params [Boolean] :force_delete
|
964
|
-
# A boolean option to force the deletion of an
|
966
|
+
# A boolean option to force the deletion of an Resilience Hub
|
965
967
|
# application.
|
966
968
|
#
|
967
969
|
# @return [Types::DeleteAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -989,13 +991,13 @@ module Aws::ResilienceHub
|
|
989
991
|
req.send_request(options)
|
990
992
|
end
|
991
993
|
|
992
|
-
# Deletes an
|
994
|
+
# Deletes an Resilience Hub application assessment. This is a
|
993
995
|
# destructive action that can't be undone.
|
994
996
|
#
|
995
997
|
# @option params [required, String] :assessment_arn
|
996
998
|
# The Amazon Resource Name (ARN) of the assessment. The format for this
|
997
999
|
# ARN is:
|
998
|
-
# arn:`partition
|
1000
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app-assessment/`app-id`.
|
999
1001
|
# For more information about ARNs, see [ Amazon Resource Names
|
1000
1002
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
1001
1003
|
#
|
@@ -1038,12 +1040,12 @@ module Aws::ResilienceHub
|
|
1038
1040
|
end
|
1039
1041
|
|
1040
1042
|
# Deletes the input source and all of its imported resources from the
|
1041
|
-
#
|
1043
|
+
# Resilience Hub application.
|
1042
1044
|
#
|
1043
1045
|
# @option params [required, String] :app_arn
|
1044
|
-
# The Amazon Resource Name (ARN) of the
|
1045
|
-
#
|
1046
|
-
# arn:`partition
|
1046
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
1047
|
+
# format for this ARN is:
|
1048
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
1047
1049
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
1048
1050
|
# the *AWS General Reference* guide.
|
1049
1051
|
#
|
@@ -1059,10 +1061,14 @@ module Aws::ResilienceHub
|
|
1059
1061
|
# **A suitable default value is auto-generated.** You should normally
|
1060
1062
|
# not need to pass this option.**
|
1061
1063
|
#
|
1064
|
+
# @option params [Types::EksSourceClusterNamespace] :eks_source_cluster_namespace
|
1065
|
+
# The namespace on your Amazon Elastic Kubernetes Service cluster that
|
1066
|
+
# you want to delete from the Resilience Hub application.
|
1067
|
+
#
|
1062
1068
|
# @option params [String] :source_arn
|
1063
1069
|
# The Amazon Resource Name (ARN) of the imported resource you want to
|
1064
|
-
# remove from the
|
1065
|
-
#
|
1070
|
+
# remove from the Resilience Hub application. For more information about
|
1071
|
+
# ARNs, see [ Amazon Resource Names (ARNs)][1] in the *AWS General
|
1066
1072
|
# Reference* guide.
|
1067
1073
|
#
|
1068
1074
|
#
|
@@ -1070,7 +1076,7 @@ module Aws::ResilienceHub
|
|
1070
1076
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1071
1077
|
#
|
1072
1078
|
# @option params [Types::TerraformSource] :terraform_source
|
1073
|
-
# The imported Terraform s3 state file you want to remove from the
|
1079
|
+
# The imported Terraform s3 state file you want to remove from the
|
1074
1080
|
# Resilience Hub application.
|
1075
1081
|
#
|
1076
1082
|
# @return [Types::DeleteAppInputSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1083,6 +1089,10 @@ module Aws::ResilienceHub
|
|
1083
1089
|
# resp = client.delete_app_input_source({
|
1084
1090
|
# app_arn: "Arn", # required
|
1085
1091
|
# client_token: "ClientToken",
|
1092
|
+
# eks_source_cluster_namespace: {
|
1093
|
+
# eks_cluster_arn: "Arn", # required
|
1094
|
+
# namespace: "EksNamespace", # required
|
1095
|
+
# },
|
1086
1096
|
# source_arn: "Arn",
|
1087
1097
|
# terraform_source: {
|
1088
1098
|
# s3_state_file_url: "S3Url", # required
|
@@ -1092,7 +1102,9 @@ module Aws::ResilienceHub
|
|
1092
1102
|
# @example Response structure
|
1093
1103
|
#
|
1094
1104
|
# resp.app_arn #=> String
|
1095
|
-
# resp.app_input_source.
|
1105
|
+
# resp.app_input_source.eks_source_cluster_namespace.eks_cluster_arn #=> String
|
1106
|
+
# resp.app_input_source.eks_source_cluster_namespace.namespace #=> String
|
1107
|
+
# resp.app_input_source.import_type #=> String, one of "CfnStack", "Resource", "AppRegistryApp", "ResourceGroup", "Terraform", "EKS"
|
1096
1108
|
# resp.app_input_source.resource_count #=> Integer
|
1097
1109
|
# resp.app_input_source.source_arn #=> String
|
1098
1110
|
# resp.app_input_source.source_name #=> String
|
@@ -1107,13 +1119,12 @@ module Aws::ResilienceHub
|
|
1107
1119
|
req.send_request(options)
|
1108
1120
|
end
|
1109
1121
|
|
1110
|
-
# Deletes an Application Component from the
|
1111
|
-
# application.
|
1122
|
+
# Deletes an Application Component from the Resilience Hub application.
|
1112
1123
|
#
|
1113
|
-
# <note markdown="1"> * This API updates the
|
1114
|
-
#
|
1115
|
-
# publish the
|
1116
|
-
#
|
1124
|
+
# <note markdown="1"> * This API updates the Resilience Hub application draft version. To
|
1125
|
+
# use this Application Component for running assessments, you must
|
1126
|
+
# publish the Resilience Hub application using the `PublishAppVersion`
|
1127
|
+
# API.
|
1117
1128
|
#
|
1118
1129
|
# * You will not be able to delete an Application Component if it has
|
1119
1130
|
# resources associated with it.
|
@@ -1121,9 +1132,9 @@ module Aws::ResilienceHub
|
|
1121
1132
|
# </note>
|
1122
1133
|
#
|
1123
1134
|
# @option params [required, String] :app_arn
|
1124
|
-
# The Amazon Resource Name (ARN) of the
|
1125
|
-
#
|
1126
|
-
# arn:`partition
|
1135
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
1136
|
+
# format for this ARN is:
|
1137
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
1127
1138
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
1128
1139
|
# the *AWS General Reference* guide.
|
1129
1140
|
#
|
@@ -1176,25 +1187,25 @@ module Aws::ResilienceHub
|
|
1176
1187
|
req.send_request(options)
|
1177
1188
|
end
|
1178
1189
|
|
1179
|
-
# Deletes a resource from the
|
1190
|
+
# Deletes a resource from the Resilience Hub application.
|
1180
1191
|
#
|
1181
1192
|
# <note markdown="1"> * You can only delete a manually added resource. To exclude
|
1182
1193
|
# non-manually added resources, use the `UpdateAppVersionResource`
|
1183
1194
|
# API.
|
1184
1195
|
#
|
1185
|
-
# * This action has no effect outside
|
1196
|
+
# * This action has no effect outside Resilience Hub.
|
1186
1197
|
#
|
1187
|
-
# * This API updates the
|
1188
|
-
#
|
1189
|
-
# publish the
|
1190
|
-
#
|
1198
|
+
# * This API updates the Resilience Hub application draft version. To
|
1199
|
+
# use this resource for running resiliency assessments, you must
|
1200
|
+
# publish the Resilience Hub application using the `PublishAppVersion`
|
1201
|
+
# API.
|
1191
1202
|
#
|
1192
1203
|
# </note>
|
1193
1204
|
#
|
1194
1205
|
# @option params [required, String] :app_arn
|
1195
|
-
# The Amazon Resource Name (ARN) of the
|
1196
|
-
#
|
1197
|
-
# arn:`partition
|
1206
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
1207
|
+
# format for this ARN is:
|
1208
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
1198
1209
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
1199
1210
|
# the *AWS General Reference* guide.
|
1200
1211
|
#
|
@@ -1239,6 +1250,7 @@ module Aws::ResilienceHub
|
|
1239
1250
|
# aws_region: "AwsRegion",
|
1240
1251
|
# client_token: "ClientToken",
|
1241
1252
|
# logical_resource_id: {
|
1253
|
+
# eks_source_name: "String255",
|
1242
1254
|
# identifier: "String255", # required
|
1243
1255
|
# logical_stack_name: "String255",
|
1244
1256
|
# resource_group_name: "EntityName",
|
@@ -1263,6 +1275,7 @@ module Aws::ResilienceHub
|
|
1263
1275
|
# resp.physical_resource.app_components[0].name #=> String
|
1264
1276
|
# resp.physical_resource.app_components[0].type #=> String
|
1265
1277
|
# resp.physical_resource.excluded #=> Boolean
|
1278
|
+
# resp.physical_resource.logical_resource_id.eks_source_name #=> String
|
1266
1279
|
# resp.physical_resource.logical_resource_id.identifier #=> String
|
1267
1280
|
# resp.physical_resource.logical_resource_id.logical_stack_name #=> String
|
1268
1281
|
# resp.physical_resource.logical_resource_id.resource_group_name #=> String
|
@@ -1337,7 +1350,7 @@ module Aws::ResilienceHub
|
|
1337
1350
|
# @option params [required, String] :policy_arn
|
1338
1351
|
# The Amazon Resource Name (ARN) of the resiliency policy. The format
|
1339
1352
|
# for this ARN is:
|
1340
|
-
# arn:`partition
|
1353
|
+
# arn:`partition`:resiliencehub:`region`:`account`:resiliency-policy/`policy-id`.
|
1341
1354
|
# For more information about ARNs, see [ Amazon Resource Names
|
1342
1355
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
1343
1356
|
#
|
@@ -1369,12 +1382,12 @@ module Aws::ResilienceHub
|
|
1369
1382
|
req.send_request(options)
|
1370
1383
|
end
|
1371
1384
|
|
1372
|
-
# Describes an
|
1385
|
+
# Describes an Resilience Hub application.
|
1373
1386
|
#
|
1374
1387
|
# @option params [required, String] :app_arn
|
1375
|
-
# The Amazon Resource Name (ARN) of the
|
1376
|
-
#
|
1377
|
-
# arn:`partition
|
1388
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
1389
|
+
# format for this ARN is:
|
1390
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
1378
1391
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
1379
1392
|
# the *AWS General Reference* guide.
|
1380
1393
|
#
|
@@ -1417,12 +1430,12 @@ module Aws::ResilienceHub
|
|
1417
1430
|
req.send_request(options)
|
1418
1431
|
end
|
1419
1432
|
|
1420
|
-
# Describes an assessment for an
|
1433
|
+
# Describes an assessment for an Resilience Hub application.
|
1421
1434
|
#
|
1422
1435
|
# @option params [required, String] :assessment_arn
|
1423
1436
|
# The Amazon Resource Name (ARN) of the assessment. The format for this
|
1424
1437
|
# ARN is:
|
1425
|
-
# arn:`partition
|
1438
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app-assessment/`app-id`.
|
1426
1439
|
# For more information about ARNs, see [ Amazon Resource Names
|
1427
1440
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
1428
1441
|
#
|
@@ -1498,12 +1511,12 @@ module Aws::ResilienceHub
|
|
1498
1511
|
req.send_request(options)
|
1499
1512
|
end
|
1500
1513
|
|
1501
|
-
# Describes the
|
1514
|
+
# Describes the Resilience Hub application version.
|
1502
1515
|
#
|
1503
1516
|
# @option params [required, String] :app_arn
|
1504
|
-
# The Amazon Resource Name (ARN) of the
|
1505
|
-
#
|
1506
|
-
# arn:`partition
|
1517
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
1518
|
+
# format for this ARN is:
|
1519
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
1507
1520
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
1508
1521
|
# the *AWS General Reference* guide.
|
1509
1522
|
#
|
@@ -1512,7 +1525,7 @@ module Aws::ResilienceHub
|
|
1512
1525
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1513
1526
|
#
|
1514
1527
|
# @option params [required, String] :app_version
|
1515
|
-
# The
|
1528
|
+
# The Resilience Hub application version.
|
1516
1529
|
#
|
1517
1530
|
# @return [Types::DescribeAppVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1518
1531
|
#
|
@@ -1544,13 +1557,12 @@ module Aws::ResilienceHub
|
|
1544
1557
|
req.send_request(options)
|
1545
1558
|
end
|
1546
1559
|
|
1547
|
-
# Describes an Application Component in the
|
1548
|
-
# application.
|
1560
|
+
# Describes an Application Component in the Resilience Hub application.
|
1549
1561
|
#
|
1550
1562
|
# @option params [required, String] :app_arn
|
1551
|
-
# The Amazon Resource Name (ARN) of the
|
1552
|
-
#
|
1553
|
-
# arn:`partition
|
1563
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
1564
|
+
# format for this ARN is:
|
1565
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
1554
1566
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
1555
1567
|
# the *AWS General Reference* guide.
|
1556
1568
|
#
|
@@ -1559,7 +1571,7 @@ module Aws::ResilienceHub
|
|
1559
1571
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1560
1572
|
#
|
1561
1573
|
# @option params [required, String] :app_version
|
1562
|
-
# The
|
1574
|
+
# The Resilience Hub application version.
|
1563
1575
|
#
|
1564
1576
|
# @option params [required, String] :id
|
1565
1577
|
# The identifier of the Application Component.
|
@@ -1598,7 +1610,7 @@ module Aws::ResilienceHub
|
|
1598
1610
|
req.send_request(options)
|
1599
1611
|
end
|
1600
1612
|
|
1601
|
-
# Describes a resource of the
|
1613
|
+
# Describes a resource of the Resilience Hub application.
|
1602
1614
|
#
|
1603
1615
|
# <note markdown="1"> This API accepts only one of the following parameters to descibe the
|
1604
1616
|
# resource:
|
@@ -1613,9 +1625,9 @@ module Aws::ResilienceHub
|
|
1613
1625
|
# </note>
|
1614
1626
|
#
|
1615
1627
|
# @option params [required, String] :app_arn
|
1616
|
-
# The Amazon Resource Name (ARN) of the
|
1617
|
-
#
|
1618
|
-
# arn:`partition
|
1628
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
1629
|
+
# format for this ARN is:
|
1630
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
1619
1631
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
1620
1632
|
# the *AWS General Reference* guide.
|
1621
1633
|
#
|
@@ -1624,7 +1636,7 @@ module Aws::ResilienceHub
|
|
1624
1636
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1625
1637
|
#
|
1626
1638
|
# @option params [required, String] :app_version
|
1627
|
-
# The
|
1639
|
+
# The Resilience Hub application version.
|
1628
1640
|
#
|
1629
1641
|
# @option params [String] :aws_account_id
|
1630
1642
|
# The Amazon Web Services account that owns the physical resource.
|
@@ -1655,6 +1667,7 @@ module Aws::ResilienceHub
|
|
1655
1667
|
# aws_account_id: "CustomerId",
|
1656
1668
|
# aws_region: "AwsRegion",
|
1657
1669
|
# logical_resource_id: {
|
1670
|
+
# eks_source_name: "String255",
|
1658
1671
|
# identifier: "String255", # required
|
1659
1672
|
# logical_stack_name: "String255",
|
1660
1673
|
# resource_group_name: "EntityName",
|
@@ -1679,6 +1692,7 @@ module Aws::ResilienceHub
|
|
1679
1692
|
# resp.physical_resource.app_components[0].name #=> String
|
1680
1693
|
# resp.physical_resource.app_components[0].type #=> String
|
1681
1694
|
# resp.physical_resource.excluded #=> Boolean
|
1695
|
+
# resp.physical_resource.logical_resource_id.eks_source_name #=> String
|
1682
1696
|
# resp.physical_resource.logical_resource_id.identifier #=> String
|
1683
1697
|
# resp.physical_resource.logical_resource_id.logical_stack_name #=> String
|
1684
1698
|
# resp.physical_resource.logical_resource_id.resource_group_name #=> String
|
@@ -1704,9 +1718,9 @@ module Aws::ResilienceHub
|
|
1704
1718
|
# current resolution status is returned.
|
1705
1719
|
#
|
1706
1720
|
# @option params [required, String] :app_arn
|
1707
|
-
# The Amazon Resource Name (ARN) of the
|
1708
|
-
#
|
1709
|
-
# arn:`partition
|
1721
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
1722
|
+
# format for this ARN is:
|
1723
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
1710
1724
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
1711
1725
|
# the *AWS General Reference* guide.
|
1712
1726
|
#
|
@@ -1753,12 +1767,12 @@ module Aws::ResilienceHub
|
|
1753
1767
|
req.send_request(options)
|
1754
1768
|
end
|
1755
1769
|
|
1756
|
-
# Describes details about an
|
1770
|
+
# Describes details about an Resilience Hub application.
|
1757
1771
|
#
|
1758
1772
|
# @option params [required, String] :app_arn
|
1759
|
-
# The Amazon Resource Name (ARN) of the
|
1760
|
-
#
|
1761
|
-
# arn:`partition
|
1773
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
1774
|
+
# format for this ARN is:
|
1775
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
1762
1776
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
1763
1777
|
# the *AWS General Reference* guide.
|
1764
1778
|
#
|
@@ -1808,9 +1822,9 @@ module Aws::ResilienceHub
|
|
1808
1822
|
# </note>
|
1809
1823
|
#
|
1810
1824
|
# @option params [required, String] :app_arn
|
1811
|
-
# The Amazon Resource Name (ARN) of the
|
1812
|
-
#
|
1813
|
-
# arn:`partition
|
1825
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
1826
|
+
# format for this ARN is:
|
1827
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
1814
1828
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
1815
1829
|
# the *AWS General Reference* guide.
|
1816
1830
|
#
|
@@ -1849,7 +1863,7 @@ module Aws::ResilienceHub
|
|
1849
1863
|
req.send_request(options)
|
1850
1864
|
end
|
1851
1865
|
|
1852
|
-
# Describes a specified resiliency policy for an
|
1866
|
+
# Describes a specified resiliency policy for an Resilience Hub
|
1853
1867
|
# application. The returned policy object includes creation time, data
|
1854
1868
|
# location constraints, the Amazon Resource Name (ARN) for the policy,
|
1855
1869
|
# tags, tier, and more.
|
@@ -1857,7 +1871,7 @@ module Aws::ResilienceHub
|
|
1857
1871
|
# @option params [required, String] :policy_arn
|
1858
1872
|
# The Amazon Resource Name (ARN) of the resiliency policy. The format
|
1859
1873
|
# for this ARN is:
|
1860
|
-
# arn:`partition
|
1874
|
+
# arn:`partition`:resiliencehub:`region`:`account`:resiliency-policy/`policy-id`.
|
1861
1875
|
# For more information about ARNs, see [ Amazon Resource Names
|
1862
1876
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
1863
1877
|
#
|
@@ -1899,19 +1913,19 @@ module Aws::ResilienceHub
|
|
1899
1913
|
req.send_request(options)
|
1900
1914
|
end
|
1901
1915
|
|
1902
|
-
# Imports resources to
|
1916
|
+
# Imports resources to Resilience Hub application draft version from
|
1903
1917
|
# different input sources. For more information about the input sources
|
1904
|
-
# supported by
|
1905
|
-
#
|
1918
|
+
# supported by Resilience Hub, see [Discover the structure and describe
|
1919
|
+
# your Resilience Hub application][1].
|
1906
1920
|
#
|
1907
1921
|
#
|
1908
1922
|
#
|
1909
1923
|
# [1]: https://docs.aws.amazon.com/resilience-hub/latest/userguide/discover-structure.html
|
1910
1924
|
#
|
1911
1925
|
# @option params [required, String] :app_arn
|
1912
|
-
# The Amazon Resource Name (ARN) of the
|
1913
|
-
#
|
1914
|
-
# arn:`partition
|
1926
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
1927
|
+
# format for this ARN is:
|
1928
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
1915
1929
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
1916
1930
|
# the *AWS General Reference* guide.
|
1917
1931
|
#
|
@@ -1919,13 +1933,16 @@ module Aws::ResilienceHub
|
|
1919
1933
|
#
|
1920
1934
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1921
1935
|
#
|
1936
|
+
# @option params [Array<Types::EksSource>] :eks_sources
|
1937
|
+
# The input sources of the Amazon Elastic Kubernetes Service resources
|
1938
|
+
# you need to import.
|
1939
|
+
#
|
1922
1940
|
# @option params [String] :import_strategy
|
1923
|
-
# The import strategy you would like to set to import resources into
|
1941
|
+
# The import strategy you would like to set to import resources into
|
1924
1942
|
# Resilience Hub application.
|
1925
1943
|
#
|
1926
1944
|
# @option params [Array<String>] :source_arns
|
1927
|
-
# The Amazon Resource Names (ARNs) for the resources
|
1928
|
-
# import.
|
1945
|
+
# The Amazon Resource Names (ARNs) for the resources.
|
1929
1946
|
#
|
1930
1947
|
# @option params [Array<Types::TerraformSource>] :terraform_sources
|
1931
1948
|
# A list of terraform file s3 URLs you need to import.
|
@@ -1934,6 +1951,7 @@ module Aws::ResilienceHub
|
|
1934
1951
|
#
|
1935
1952
|
# * {Types::ImportResourcesToDraftAppVersionResponse#app_arn #app_arn} => String
|
1936
1953
|
# * {Types::ImportResourcesToDraftAppVersionResponse#app_version #app_version} => String
|
1954
|
+
# * {Types::ImportResourcesToDraftAppVersionResponse#eks_sources #eks_sources} => Array<Types::EksSource>
|
1937
1955
|
# * {Types::ImportResourcesToDraftAppVersionResponse#source_arns #source_arns} => Array<String>
|
1938
1956
|
# * {Types::ImportResourcesToDraftAppVersionResponse#status #status} => String
|
1939
1957
|
# * {Types::ImportResourcesToDraftAppVersionResponse#terraform_sources #terraform_sources} => Array<Types::TerraformSource>
|
@@ -1942,6 +1960,12 @@ module Aws::ResilienceHub
|
|
1942
1960
|
#
|
1943
1961
|
# resp = client.import_resources_to_draft_app_version({
|
1944
1962
|
# app_arn: "Arn", # required
|
1963
|
+
# eks_sources: [
|
1964
|
+
# {
|
1965
|
+
# eks_cluster_arn: "Arn", # required
|
1966
|
+
# namespaces: ["EksNamespace"], # required
|
1967
|
+
# },
|
1968
|
+
# ],
|
1945
1969
|
# import_strategy: "AddOnly", # accepts AddOnly, ReplaceAll
|
1946
1970
|
# source_arns: ["Arn"],
|
1947
1971
|
# terraform_sources: [
|
@@ -1955,6 +1979,10 @@ module Aws::ResilienceHub
|
|
1955
1979
|
#
|
1956
1980
|
# resp.app_arn #=> String
|
1957
1981
|
# resp.app_version #=> String
|
1982
|
+
# resp.eks_sources #=> Array
|
1983
|
+
# resp.eks_sources[0].eks_cluster_arn #=> String
|
1984
|
+
# resp.eks_sources[0].namespaces #=> Array
|
1985
|
+
# resp.eks_sources[0].namespaces[0] #=> String
|
1958
1986
|
# resp.source_arns #=> Array
|
1959
1987
|
# resp.source_arns[0] #=> String
|
1960
1988
|
# resp.status #=> String, one of "Pending", "InProgress", "Failed", "Success"
|
@@ -1970,12 +1998,12 @@ module Aws::ResilienceHub
|
|
1970
1998
|
req.send_request(options)
|
1971
1999
|
end
|
1972
2000
|
|
1973
|
-
# Lists the alarm recommendations for an
|
2001
|
+
# Lists the alarm recommendations for an Resilience Hub application.
|
1974
2002
|
#
|
1975
2003
|
# @option params [required, String] :assessment_arn
|
1976
2004
|
# The Amazon Resource Name (ARN) of the assessment. The format for this
|
1977
2005
|
# ARN is:
|
1978
|
-
# arn:`partition
|
2006
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app-assessment/`app-id`.
|
1979
2007
|
# For more information about ARNs, see [ Amazon Resource Names
|
1980
2008
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
1981
2009
|
#
|
@@ -2034,13 +2062,13 @@ module Aws::ResilienceHub
|
|
2034
2062
|
req.send_request(options)
|
2035
2063
|
end
|
2036
2064
|
|
2037
|
-
# Lists the assessments for an
|
2038
|
-
#
|
2065
|
+
# Lists the assessments for an Resilience Hub application. You can use
|
2066
|
+
# request parameters to refine the results for the response object.
|
2039
2067
|
#
|
2040
2068
|
# @option params [String] :app_arn
|
2041
|
-
# The Amazon Resource Name (ARN) of the
|
2042
|
-
#
|
2043
|
-
# arn:`partition
|
2069
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
2070
|
+
# format for this ARN is:
|
2071
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
2044
2072
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
2045
2073
|
# the *AWS General Reference* guide.
|
2046
2074
|
#
|
@@ -2123,12 +2151,12 @@ module Aws::ResilienceHub
|
|
2123
2151
|
req.send_request(options)
|
2124
2152
|
end
|
2125
2153
|
|
2126
|
-
# Lists the compliances for an
|
2154
|
+
# Lists the compliances for an Resilience Hub Application Component.
|
2127
2155
|
#
|
2128
2156
|
# @option params [required, String] :assessment_arn
|
2129
2157
|
# The Amazon Resource Name (ARN) of the assessment. The format for this
|
2130
2158
|
# ARN is:
|
2131
|
-
# arn:`partition
|
2159
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app-assessment/`app-id`.
|
2132
2160
|
# For more information about ARNs, see [ Amazon Resource Names
|
2133
2161
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
2134
2162
|
#
|
@@ -2195,13 +2223,12 @@ module Aws::ResilienceHub
|
|
2195
2223
|
req.send_request(options)
|
2196
2224
|
end
|
2197
2225
|
|
2198
|
-
# Lists the recommendations for an
|
2199
|
-
# Component.
|
2226
|
+
# Lists the recommendations for an Resilience Hub Application Component.
|
2200
2227
|
#
|
2201
2228
|
# @option params [required, String] :assessment_arn
|
2202
2229
|
# The Amazon Resource Name (ARN) of the assessment. The format for this
|
2203
2230
|
# ARN is:
|
2204
|
-
# arn:`partition
|
2231
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app-assessment/`app-id`.
|
2205
2232
|
# For more information about ARNs, see [ Amazon Resource Names
|
2206
2233
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
2207
2234
|
#
|
@@ -2279,9 +2306,9 @@ module Aws::ResilienceHub
|
|
2279
2306
|
req.send_request(options)
|
2280
2307
|
end
|
2281
2308
|
|
2282
|
-
# Lists all the input sources of the
|
2283
|
-
# more information about the input sources supported by
|
2284
|
-
#
|
2309
|
+
# Lists all the input sources of the Resilience Hub application. For
|
2310
|
+
# more information about the input sources supported by Resilience Hub,
|
2311
|
+
# see [Discover the structure and describe your Resilience Hub
|
2285
2312
|
# application][1].
|
2286
2313
|
#
|
2287
2314
|
#
|
@@ -2289,9 +2316,9 @@ module Aws::ResilienceHub
|
|
2289
2316
|
# [1]: https://docs.aws.amazon.com/resilience-hub/latest/userguide/discover-structure.html
|
2290
2317
|
#
|
2291
2318
|
# @option params [required, String] :app_arn
|
2292
|
-
# The Amazon Resource Name (ARN) of the
|
2293
|
-
#
|
2294
|
-
# arn:`partition
|
2319
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
2320
|
+
# format for this ARN is:
|
2321
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
2295
2322
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
2296
2323
|
# the *AWS General Reference* guide.
|
2297
2324
|
#
|
@@ -2300,10 +2327,10 @@ module Aws::ResilienceHub
|
|
2300
2327
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2301
2328
|
#
|
2302
2329
|
# @option params [required, String] :app_version
|
2303
|
-
# The
|
2330
|
+
# The Resilience Hub application version.
|
2304
2331
|
#
|
2305
2332
|
# @option params [Integer] :max_results
|
2306
|
-
# Maximum number of input sources to be displayed per
|
2333
|
+
# Maximum number of input sources to be displayed per Resilience Hub
|
2307
2334
|
# application.
|
2308
2335
|
#
|
2309
2336
|
# @option params [String] :next_token
|
@@ -2329,7 +2356,9 @@ module Aws::ResilienceHub
|
|
2329
2356
|
# @example Response structure
|
2330
2357
|
#
|
2331
2358
|
# resp.app_input_sources #=> Array
|
2332
|
-
# resp.app_input_sources[0].
|
2359
|
+
# resp.app_input_sources[0].eks_source_cluster_namespace.eks_cluster_arn #=> String
|
2360
|
+
# resp.app_input_sources[0].eks_source_cluster_namespace.namespace #=> String
|
2361
|
+
# resp.app_input_sources[0].import_type #=> String, one of "CfnStack", "Resource", "AppRegistryApp", "ResourceGroup", "Terraform", "EKS"
|
2333
2362
|
# resp.app_input_sources[0].resource_count #=> Integer
|
2334
2363
|
# resp.app_input_sources[0].source_arn #=> String
|
2335
2364
|
# resp.app_input_sources[0].source_name #=> String
|
@@ -2345,13 +2374,13 @@ module Aws::ResilienceHub
|
|
2345
2374
|
req.send_request(options)
|
2346
2375
|
end
|
2347
2376
|
|
2348
|
-
# Lists all the Application Components in the
|
2377
|
+
# Lists all the Application Components in the Resilience Hub
|
2349
2378
|
# application.
|
2350
2379
|
#
|
2351
2380
|
# @option params [required, String] :app_arn
|
2352
|
-
# The Amazon Resource Name (ARN) of the
|
2353
|
-
#
|
2354
|
-
# arn:`partition
|
2381
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
2382
|
+
# format for this ARN is:
|
2383
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
2355
2384
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
2356
2385
|
# the *AWS General Reference* guide.
|
2357
2386
|
#
|
@@ -2363,7 +2392,7 @@ module Aws::ResilienceHub
|
|
2363
2392
|
# The version of the Application Component.
|
2364
2393
|
#
|
2365
2394
|
# @option params [Integer] :max_results
|
2366
|
-
# Maximum number of Application Components to be displayed per
|
2395
|
+
# Maximum number of Application Components to be displayed per
|
2367
2396
|
# Resilience Hub application version.
|
2368
2397
|
#
|
2369
2398
|
# @option params [String] :next_token
|
@@ -2415,9 +2444,9 @@ module Aws::ResilienceHub
|
|
2415
2444
|
# stacks, resource-groups, or an application registry app.
|
2416
2445
|
#
|
2417
2446
|
# @option params [required, String] :app_arn
|
2418
|
-
# The Amazon Resource Name (ARN) of the
|
2419
|
-
#
|
2420
|
-
# arn:`partition
|
2447
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
2448
|
+
# format for this ARN is:
|
2449
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
2421
2450
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
2422
2451
|
# the *AWS General Reference* guide.
|
2423
2452
|
#
|
@@ -2459,8 +2488,9 @@ module Aws::ResilienceHub
|
|
2459
2488
|
# resp.next_token #=> String
|
2460
2489
|
# resp.resource_mappings #=> Array
|
2461
2490
|
# resp.resource_mappings[0].app_registry_app_name #=> String
|
2491
|
+
# resp.resource_mappings[0].eks_source_name #=> String
|
2462
2492
|
# resp.resource_mappings[0].logical_stack_name #=> String
|
2463
|
-
# resp.resource_mappings[0].mapping_type #=> String, one of "CfnStack", "Resource", "AppRegistryApp", "ResourceGroup", "Terraform"
|
2493
|
+
# resp.resource_mappings[0].mapping_type #=> String, one of "CfnStack", "Resource", "AppRegistryApp", "ResourceGroup", "Terraform", "EKS"
|
2464
2494
|
# resp.resource_mappings[0].physical_resource_id.aws_account_id #=> String
|
2465
2495
|
# resp.resource_mappings[0].physical_resource_id.aws_region #=> String
|
2466
2496
|
# resp.resource_mappings[0].physical_resource_id.identifier #=> String
|
@@ -2478,12 +2508,12 @@ module Aws::ResilienceHub
|
|
2478
2508
|
req.send_request(options)
|
2479
2509
|
end
|
2480
2510
|
|
2481
|
-
# Lists all the resources in an
|
2511
|
+
# Lists all the resources in an Resilience Hub application.
|
2482
2512
|
#
|
2483
2513
|
# @option params [required, String] :app_arn
|
2484
|
-
# The Amazon Resource Name (ARN) of the
|
2485
|
-
#
|
2486
|
-
# arn:`partition
|
2514
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
2515
|
+
# format for this ARN is:
|
2516
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
2487
2517
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
2488
2518
|
# the *AWS General Reference* guide.
|
2489
2519
|
#
|
@@ -2540,6 +2570,7 @@ module Aws::ResilienceHub
|
|
2540
2570
|
# resp.physical_resources[0].app_components[0].name #=> String
|
2541
2571
|
# resp.physical_resources[0].app_components[0].type #=> String
|
2542
2572
|
# resp.physical_resources[0].excluded #=> Boolean
|
2573
|
+
# resp.physical_resources[0].logical_resource_id.eks_source_name #=> String
|
2543
2574
|
# resp.physical_resources[0].logical_resource_id.identifier #=> String
|
2544
2575
|
# resp.physical_resources[0].logical_resource_id.logical_stack_name #=> String
|
2545
2576
|
# resp.physical_resources[0].logical_resource_id.resource_group_name #=> String
|
@@ -2561,12 +2592,12 @@ module Aws::ResilienceHub
|
|
2561
2592
|
req.send_request(options)
|
2562
2593
|
end
|
2563
2594
|
|
2564
|
-
# Lists the different versions for the
|
2595
|
+
# Lists the different versions for the Resilience Hub applications.
|
2565
2596
|
#
|
2566
2597
|
# @option params [required, String] :app_arn
|
2567
|
-
# The Amazon Resource Name (ARN) of the
|
2568
|
-
#
|
2569
|
-
# arn:`partition
|
2598
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
2599
|
+
# format for this ARN is:
|
2600
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
2570
2601
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
2571
2602
|
# the *AWS General Reference* guide.
|
2572
2603
|
#
|
@@ -2614,7 +2645,7 @@ module Aws::ResilienceHub
|
|
2614
2645
|
req.send_request(options)
|
2615
2646
|
end
|
2616
2647
|
|
2617
|
-
# Lists your
|
2648
|
+
# Lists your Resilience Hub applications.
|
2618
2649
|
#
|
2619
2650
|
# <note markdown="1"> You can filter applications using only one filter at a time or without
|
2620
2651
|
# using any filter. If you try to filter applications using multiple
|
@@ -2626,9 +2657,9 @@ module Aws::ResilienceHub
|
|
2626
2657
|
# </note>
|
2627
2658
|
#
|
2628
2659
|
# @option params [String] :app_arn
|
2629
|
-
# The Amazon Resource Name (ARN) of the
|
2630
|
-
#
|
2631
|
-
# arn:`partition
|
2660
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
2661
|
+
# format for this ARN is:
|
2662
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
2632
2663
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
2633
2664
|
# the *AWS General Reference* guide.
|
2634
2665
|
#
|
@@ -2687,13 +2718,13 @@ module Aws::ResilienceHub
|
|
2687
2718
|
req.send_request(options)
|
2688
2719
|
end
|
2689
2720
|
|
2690
|
-
# Lists the recommendation templates for the
|
2721
|
+
# Lists the recommendation templates for the Resilience Hub
|
2691
2722
|
# applications.
|
2692
2723
|
#
|
2693
2724
|
# @option params [required, String] :assessment_arn
|
2694
2725
|
# The Amazon Resource Name (ARN) of the assessment. The format for this
|
2695
2726
|
# ARN is:
|
2696
|
-
# arn:`partition
|
2727
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app-assessment/`app-id`.
|
2697
2728
|
# For more information about ARNs, see [ Amazon Resource Names
|
2698
2729
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
2699
2730
|
#
|
@@ -2775,7 +2806,7 @@ module Aws::ResilienceHub
|
|
2775
2806
|
req.send_request(options)
|
2776
2807
|
end
|
2777
2808
|
|
2778
|
-
# Lists the resiliency policies for the
|
2809
|
+
# Lists the resiliency policies for the Resilience Hub applications.
|
2779
2810
|
#
|
2780
2811
|
# @option params [Integer] :max_results
|
2781
2812
|
# The maximum number of results to include in the response. If more
|
@@ -2832,12 +2863,12 @@ module Aws::ResilienceHub
|
|
2832
2863
|
end
|
2833
2864
|
|
2834
2865
|
# Lists the standard operating procedure (SOP) recommendations for the
|
2835
|
-
#
|
2866
|
+
# Resilience Hub applications.
|
2836
2867
|
#
|
2837
2868
|
# @option params [required, String] :assessment_arn
|
2838
2869
|
# The Amazon Resource Name (ARN) of the assessment. The format for this
|
2839
2870
|
# ARN is:
|
2840
|
-
# arn:`partition
|
2871
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app-assessment/`app-id`.
|
2841
2872
|
# For more information about ARNs, see [ Amazon Resource Names
|
2842
2873
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
2843
2874
|
#
|
@@ -2896,7 +2927,7 @@ module Aws::ResilienceHub
|
|
2896
2927
|
req.send_request(options)
|
2897
2928
|
end
|
2898
2929
|
|
2899
|
-
# Lists the suggested resiliency policies for the
|
2930
|
+
# Lists the suggested resiliency policies for the Resilience Hub
|
2900
2931
|
# applications.
|
2901
2932
|
#
|
2902
2933
|
# @option params [Integer] :max_results
|
@@ -2949,11 +2980,10 @@ module Aws::ResilienceHub
|
|
2949
2980
|
req.send_request(options)
|
2950
2981
|
end
|
2951
2982
|
|
2952
|
-
# Lists the tags for your resources in your
|
2953
|
-
# applications.
|
2983
|
+
# Lists the tags for your resources in your Resilience Hub applications.
|
2954
2984
|
#
|
2955
2985
|
# @option params [required, String] :resource_arn
|
2956
|
-
# The Amazon Resource Name (ARN) for a specific resource in your
|
2986
|
+
# The Amazon Resource Name (ARN) for a specific resource in your
|
2957
2987
|
# Resilience Hub application.
|
2958
2988
|
#
|
2959
2989
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -2980,12 +3010,12 @@ module Aws::ResilienceHub
|
|
2980
3010
|
req.send_request(options)
|
2981
3011
|
end
|
2982
3012
|
|
2983
|
-
# Lists the test recommendations for the
|
3013
|
+
# Lists the test recommendations for the Resilience Hub application.
|
2984
3014
|
#
|
2985
3015
|
# @option params [required, String] :assessment_arn
|
2986
3016
|
# The Amazon Resource Name (ARN) of the assessment. The format for this
|
2987
3017
|
# ARN is:
|
2988
|
-
# arn:`partition
|
3018
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app-assessment/`app-id`.
|
2989
3019
|
# For more information about ARNs, see [ Amazon Resource Names
|
2990
3020
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
2991
3021
|
#
|
@@ -3048,15 +3078,15 @@ module Aws::ResilienceHub
|
|
3048
3078
|
req.send_request(options)
|
3049
3079
|
end
|
3050
3080
|
|
3051
|
-
# Lists the resources that are not currently supported in
|
3081
|
+
# Lists the resources that are not currently supported in Resilience
|
3052
3082
|
# Hub. An unsupported resource is a resource that exists in the object
|
3053
|
-
# that was used to create an app, but is not supported by
|
3083
|
+
# that was used to create an app, but is not supported by Resilience
|
3054
3084
|
# Hub.
|
3055
3085
|
#
|
3056
3086
|
# @option params [required, String] :app_arn
|
3057
|
-
# The Amazon Resource Name (ARN) of the
|
3058
|
-
#
|
3059
|
-
# arn:`partition
|
3087
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
3088
|
+
# format for this ARN is:
|
3089
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
3060
3090
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
3061
3091
|
# the *AWS General Reference* guide.
|
3062
3092
|
#
|
@@ -3103,6 +3133,7 @@ module Aws::ResilienceHub
|
|
3103
3133
|
# resp.next_token #=> String
|
3104
3134
|
# resp.resolution_id #=> String
|
3105
3135
|
# resp.unsupported_resources #=> Array
|
3136
|
+
# resp.unsupported_resources[0].logical_resource_id.eks_source_name #=> String
|
3106
3137
|
# resp.unsupported_resources[0].logical_resource_id.identifier #=> String
|
3107
3138
|
# resp.unsupported_resources[0].logical_resource_id.logical_stack_name #=> String
|
3108
3139
|
# resp.unsupported_resources[0].logical_resource_id.resource_group_name #=> String
|
@@ -3112,6 +3143,7 @@ module Aws::ResilienceHub
|
|
3112
3143
|
# resp.unsupported_resources[0].physical_resource_id.identifier #=> String
|
3113
3144
|
# resp.unsupported_resources[0].physical_resource_id.type #=> String, one of "Arn", "Native"
|
3114
3145
|
# resp.unsupported_resources[0].resource_type #=> String
|
3146
|
+
# resp.unsupported_resources[0].unsupported_resource_status #=> String
|
3115
3147
|
#
|
3116
3148
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/ListUnsupportedAppVersionResources AWS API Documentation
|
3117
3149
|
#
|
@@ -3122,12 +3154,12 @@ module Aws::ResilienceHub
|
|
3122
3154
|
req.send_request(options)
|
3123
3155
|
end
|
3124
3156
|
|
3125
|
-
# Publishes a new version of a specific
|
3157
|
+
# Publishes a new version of a specific Resilience Hub application.
|
3126
3158
|
#
|
3127
3159
|
# @option params [required, String] :app_arn
|
3128
|
-
# The Amazon Resource Name (ARN) of the
|
3129
|
-
#
|
3130
|
-
# arn:`partition
|
3160
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
3161
|
+
# format for this ARN is:
|
3162
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
3131
3163
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
3132
3164
|
# the *AWS General Reference* guide.
|
3133
3165
|
#
|
@@ -3160,13 +3192,13 @@ module Aws::ResilienceHub
|
|
3160
3192
|
req.send_request(options)
|
3161
3193
|
end
|
3162
3194
|
|
3163
|
-
# Adds or updates the app template for an
|
3195
|
+
# Adds or updates the app template for an Resilience Hub application
|
3164
3196
|
# draft version.
|
3165
3197
|
#
|
3166
3198
|
# @option params [required, String] :app_arn
|
3167
|
-
# The Amazon Resource Name (ARN) of the
|
3168
|
-
#
|
3169
|
-
# arn:`partition
|
3199
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
3200
|
+
# format for this ARN is:
|
3201
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
3170
3202
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
3171
3203
|
# the *AWS General Reference* guide.
|
3172
3204
|
#
|
@@ -3183,8 +3215,8 @@ module Aws::ResilienceHub
|
|
3183
3215
|
#
|
3184
3216
|
# * <b> <code>resources</code> </b>
|
3185
3217
|
#
|
3186
|
-
# The list of logical resources that
|
3187
|
-
# application.
|
3218
|
+
# The list of logical resources that must be included in the
|
3219
|
+
# Resilience Hub application.
|
3188
3220
|
#
|
3189
3221
|
# Type: Array
|
3190
3222
|
#
|
@@ -3227,6 +3259,18 @@ module Aws::ResilienceHub
|
|
3227
3259
|
#
|
3228
3260
|
# Type: String
|
3229
3261
|
#
|
3262
|
+
# * `eksSourceName`
|
3263
|
+
#
|
3264
|
+
# The name of the Amazon Elastic Kubernetes Service cluster and
|
3265
|
+
# namespace this resource belongs to.
|
3266
|
+
#
|
3267
|
+
# <note markdown="1"> This parameter accepts values in "eks-cluster/namespace"
|
3268
|
+
# format.
|
3269
|
+
#
|
3270
|
+
# </note>
|
3271
|
+
#
|
3272
|
+
# Type: String
|
3273
|
+
#
|
3230
3274
|
# * <i> <code>type</code> </i>
|
3231
3275
|
#
|
3232
3276
|
# The type of resource.
|
@@ -3239,10 +3283,27 @@ module Aws::ResilienceHub
|
|
3239
3283
|
#
|
3240
3284
|
# Type: String
|
3241
3285
|
#
|
3286
|
+
# * `additionalInfo`
|
3287
|
+
#
|
3288
|
+
# Additional configuration parameters for an Resilience Hub
|
3289
|
+
# application. If you want to implement `additionalInfo` through the
|
3290
|
+
# Resilience Hub console rather than using an API call, see
|
3291
|
+
# [Configure the application configuration parameters][1].
|
3292
|
+
#
|
3293
|
+
# <note markdown="1"> Currently, this parameter accepts a key-value mapping (in a string
|
3294
|
+
# format) of only one failover region and one associated account.
|
3295
|
+
#
|
3296
|
+
# Key: `"failover-regions"`
|
3297
|
+
#
|
3298
|
+
# Value: `"[\{"region":"<REGION>",
|
3299
|
+
# "accounts":[\{"id":"<ACCOUNT_ID>"\}]\}]"`
|
3300
|
+
#
|
3301
|
+
# </note>
|
3302
|
+
#
|
3242
3303
|
# * <b> <code>appComponents</code> </b>
|
3243
3304
|
#
|
3244
3305
|
# The list of Application Components that this resource belongs to. If
|
3245
|
-
# an Application Component is not part of the
|
3306
|
+
# an Application Component is not part of the Resilience Hub
|
3246
3307
|
# application, it will be added.
|
3247
3308
|
#
|
3248
3309
|
# Type: Array
|
@@ -3259,7 +3320,7 @@ module Aws::ResilienceHub
|
|
3259
3320
|
#
|
3260
3321
|
# The type of Application Component. For more information about the
|
3261
3322
|
# types of Application Component, see [Grouping resources in an
|
3262
|
-
# AppComponent][
|
3323
|
+
# AppComponent][2].
|
3263
3324
|
#
|
3264
3325
|
# Type: String
|
3265
3326
|
#
|
@@ -3272,8 +3333,10 @@ module Aws::ResilienceHub
|
|
3272
3333
|
#
|
3273
3334
|
# * `additionalInfo`
|
3274
3335
|
#
|
3275
|
-
# Additional configuration parameters for an
|
3276
|
-
# application.
|
3336
|
+
# Additional configuration parameters for an Resilience Hub
|
3337
|
+
# application. If you want to implement `additionalInfo` through the
|
3338
|
+
# Resilience Hub console rather than using an API call, see
|
3339
|
+
# [Configure the application configuration parameters][1].
|
3277
3340
|
#
|
3278
3341
|
# <note markdown="1"> Currently, this parameter accepts a key-value mapping (in a string
|
3279
3342
|
# format) of only one failover region and one associated account.
|
@@ -3312,6 +3375,8 @@ module Aws::ResilienceHub
|
|
3312
3375
|
#
|
3313
3376
|
# * `terraformSourceName`
|
3314
3377
|
#
|
3378
|
+
# * `eksSourceName`
|
3379
|
+
#
|
3315
3380
|
# </note>
|
3316
3381
|
#
|
3317
3382
|
# Each `logicalResourceIds` object includes the following fields:
|
@@ -3341,9 +3406,43 @@ module Aws::ResilienceHub
|
|
3341
3406
|
#
|
3342
3407
|
# Type: String
|
3343
3408
|
#
|
3409
|
+
# * `eksSourceName`
|
3344
3410
|
#
|
3411
|
+
# The name of the Amazon Elastic Kubernetes Service cluster and
|
3412
|
+
# namespace this resource belongs to.
|
3345
3413
|
#
|
3346
|
-
#
|
3414
|
+
# <note markdown="1"> This parameter accepts values in "eks-cluster/namespace"
|
3415
|
+
# format.
|
3416
|
+
#
|
3417
|
+
# </note>
|
3418
|
+
#
|
3419
|
+
# Type: String
|
3420
|
+
#
|
3421
|
+
# * <b> <code>version</code> </b>
|
3422
|
+
#
|
3423
|
+
# The Resilience Hub application version.
|
3424
|
+
#
|
3425
|
+
# * `additionalInfo`
|
3426
|
+
#
|
3427
|
+
# Additional configuration parameters for an Resilience Hub
|
3428
|
+
# application. If you want to implement `additionalInfo` through the
|
3429
|
+
# Resilience Hub console rather than using an API call, see [Configure
|
3430
|
+
# the application configuration parameters][1].
|
3431
|
+
#
|
3432
|
+
# <note markdown="1"> Currently, this parameter accepts a key-value mapping (in a string
|
3433
|
+
# format) of only one failover region and one associated account.
|
3434
|
+
#
|
3435
|
+
# Key: `"failover-regions"`
|
3436
|
+
#
|
3437
|
+
# Value: `"[\{"region":"<REGION>",
|
3438
|
+
# "accounts":[\{"id":"<ACCOUNT_ID>"\}]\}]"`
|
3439
|
+
#
|
3440
|
+
# </note>
|
3441
|
+
#
|
3442
|
+
#
|
3443
|
+
#
|
3444
|
+
# [1]: https://docs.aws.amazon.com/resilience-hub/latest/userguide/app-config-param.html
|
3445
|
+
# [2]: https://docs.aws.amazon.com/resilience-hub/latest/userguide/AppComponent.grouping.html
|
3347
3446
|
#
|
3348
3447
|
# @return [Types::PutDraftAppVersionTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3349
3448
|
#
|
@@ -3374,9 +3473,9 @@ module Aws::ResilienceHub
|
|
3374
3473
|
# Removes resource mappings from a draft application version.
|
3375
3474
|
#
|
3376
3475
|
# @option params [required, String] :app_arn
|
3377
|
-
# The Amazon Resource Name (ARN) of the
|
3378
|
-
#
|
3379
|
-
# arn:`partition
|
3476
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
3477
|
+
# format for this ARN is:
|
3478
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
3380
3479
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
3381
3480
|
# the *AWS General Reference* guide.
|
3382
3481
|
#
|
@@ -3388,6 +3487,14 @@ module Aws::ResilienceHub
|
|
3388
3487
|
# The names of the registered applications you want to remove from the
|
3389
3488
|
# resource mappings.
|
3390
3489
|
#
|
3490
|
+
# @option params [Array<String>] :eks_source_names
|
3491
|
+
# The names of the Amazon Elastic Kubernetes Service clusters and
|
3492
|
+
# namespaces you want to remove from the resource mappings.
|
3493
|
+
#
|
3494
|
+
# <note markdown="1"> This parameter accepts values in "eks-cluster/namespace" format.
|
3495
|
+
#
|
3496
|
+
# </note>
|
3497
|
+
#
|
3391
3498
|
# @option params [Array<String>] :logical_stack_names
|
3392
3499
|
# The names of the CloudFormation stacks you want to remove from the
|
3393
3500
|
# resource mappings.
|
@@ -3414,6 +3521,7 @@ module Aws::ResilienceHub
|
|
3414
3521
|
# resp = client.remove_draft_app_version_resource_mappings({
|
3415
3522
|
# app_arn: "Arn", # required
|
3416
3523
|
# app_registry_app_names: ["EntityName"],
|
3524
|
+
# eks_source_names: ["String255"],
|
3417
3525
|
# logical_stack_names: ["String255"],
|
3418
3526
|
# resource_group_names: ["EntityName"],
|
3419
3527
|
# resource_names: ["EntityName"],
|
@@ -3437,9 +3545,9 @@ module Aws::ResilienceHub
|
|
3437
3545
|
# Resolves the resources for an application version.
|
3438
3546
|
#
|
3439
3547
|
# @option params [required, String] :app_arn
|
3440
|
-
# The Amazon Resource Name (ARN) of the
|
3441
|
-
#
|
3442
|
-
# arn:`partition
|
3548
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
3549
|
+
# format for this ARN is:
|
3550
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
3443
3551
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
3444
3552
|
# the *AWS General Reference* guide.
|
3445
3553
|
#
|
@@ -3483,9 +3591,9 @@ module Aws::ResilienceHub
|
|
3483
3591
|
# Creates a new application assessment for an application.
|
3484
3592
|
#
|
3485
3593
|
# @option params [required, String] :app_arn
|
3486
|
-
# The Amazon Resource Name (ARN) of the
|
3487
|
-
#
|
3488
|
-
# arn:`partition
|
3594
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
3595
|
+
# format for this ARN is:
|
3596
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
3489
3597
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
3490
3598
|
# the *AWS General Reference* guide.
|
3491
3599
|
#
|
@@ -3644,9 +3752,9 @@ module Aws::ResilienceHub
|
|
3644
3752
|
# Updates an application.
|
3645
3753
|
#
|
3646
3754
|
# @option params [required, String] :app_arn
|
3647
|
-
# The Amazon Resource Name (ARN) of the
|
3648
|
-
#
|
3649
|
-
# arn:`partition
|
3755
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
3756
|
+
# format for this ARN is:
|
3757
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
3650
3758
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
3651
3759
|
# the *AWS General Reference* guide.
|
3652
3760
|
#
|
@@ -3666,7 +3774,7 @@ module Aws::ResilienceHub
|
|
3666
3774
|
# @option params [String] :policy_arn
|
3667
3775
|
# The Amazon Resource Name (ARN) of the resiliency policy. The format
|
3668
3776
|
# for this ARN is:
|
3669
|
-
# arn:`partition
|
3777
|
+
# arn:`partition`:resiliencehub:`region`:`account`:resiliency-policy/`policy-id`.
|
3670
3778
|
# For more information about ARNs, see [ Amazon Resource Names
|
3671
3779
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
3672
3780
|
#
|
@@ -3713,18 +3821,19 @@ module Aws::ResilienceHub
|
|
3713
3821
|
req.send_request(options)
|
3714
3822
|
end
|
3715
3823
|
|
3716
|
-
# Updates the
|
3824
|
+
# Updates the Resilience Hub application version.
|
3717
3825
|
#
|
3718
|
-
# <note markdown="1"> This API updates the
|
3719
|
-
#
|
3720
|
-
#
|
3721
|
-
# `PublishAppVersion` API.
|
3826
|
+
# <note markdown="1"> This API updates the Resilience Hub application draft version. To use
|
3827
|
+
# this information for running resiliency assessments, you must publish
|
3828
|
+
# the Resilience Hub application using the `PublishAppVersion` API.
|
3722
3829
|
#
|
3723
3830
|
# </note>
|
3724
3831
|
#
|
3725
3832
|
# @option params [Hash<String,Array>] :additional_info
|
3726
|
-
# Additional configuration parameters for an
|
3727
|
-
#
|
3833
|
+
# Additional configuration parameters for an Resilience Hub application.
|
3834
|
+
# If you want to implement `additionalInfo` through the Resilience Hub
|
3835
|
+
# console rather than using an API call, see [Configure the application
|
3836
|
+
# configuration parameters][1].
|
3728
3837
|
#
|
3729
3838
|
# <note markdown="1"> Currently, this parameter accepts a key-value mapping (in a string
|
3730
3839
|
# format) of only one failover region and one associated account.
|
@@ -3736,10 +3845,14 @@ module Aws::ResilienceHub
|
|
3736
3845
|
#
|
3737
3846
|
# </note>
|
3738
3847
|
#
|
3848
|
+
#
|
3849
|
+
#
|
3850
|
+
# [1]: https://docs.aws.amazon.com/resilience-hub/latest/userguide/app-config-param.html
|
3851
|
+
#
|
3739
3852
|
# @option params [required, String] :app_arn
|
3740
|
-
# The Amazon Resource Name (ARN) of the
|
3741
|
-
#
|
3742
|
-
# arn:`partition
|
3853
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
3854
|
+
# format for this ARN is:
|
3855
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
3743
3856
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
3744
3857
|
# the *AWS General Reference* guide.
|
3745
3858
|
#
|
@@ -3779,13 +3892,12 @@ module Aws::ResilienceHub
|
|
3779
3892
|
req.send_request(options)
|
3780
3893
|
end
|
3781
3894
|
|
3782
|
-
# Updates an existing Application Component in the
|
3895
|
+
# Updates an existing Application Component in the Resilience Hub
|
3783
3896
|
# application.
|
3784
3897
|
#
|
3785
|
-
# <note markdown="1"> This API updates the
|
3786
|
-
#
|
3787
|
-
#
|
3788
|
-
# `PublishAppVersion` API.
|
3898
|
+
# <note markdown="1"> This API updates the Resilience Hub application draft version. To use
|
3899
|
+
# this Application Component for running assessments, you must publish
|
3900
|
+
# the Resilience Hub application using the `PublishAppVersion` API.
|
3789
3901
|
#
|
3790
3902
|
# </note>
|
3791
3903
|
#
|
@@ -3794,9 +3906,9 @@ module Aws::ResilienceHub
|
|
3794
3906
|
# Application Components.
|
3795
3907
|
#
|
3796
3908
|
# @option params [required, String] :app_arn
|
3797
|
-
# The Amazon Resource Name (ARN) of the
|
3798
|
-
#
|
3799
|
-
# arn:`partition
|
3909
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
3910
|
+
# format for this ARN is:
|
3911
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
3800
3912
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
3801
3913
|
# the *AWS General Reference* guide.
|
3802
3914
|
#
|
@@ -3857,14 +3969,14 @@ module Aws::ResilienceHub
|
|
3857
3969
|
req.send_request(options)
|
3858
3970
|
end
|
3859
3971
|
|
3860
|
-
# Updates the resource details in the
|
3972
|
+
# Updates the resource details in the Resilience Hub application.
|
3861
3973
|
#
|
3862
|
-
# <note markdown="1"> * This action has no effect outside
|
3974
|
+
# <note markdown="1"> * This action has no effect outside Resilience Hub.
|
3863
3975
|
#
|
3864
|
-
# * This API updates the
|
3865
|
-
#
|
3866
|
-
# publish the
|
3867
|
-
#
|
3976
|
+
# * This API updates the Resilience Hub application draft version. To
|
3977
|
+
# use this resource for running resiliency assessments, you must
|
3978
|
+
# publish the Resilience Hub application using the `PublishAppVersion`
|
3979
|
+
# API.
|
3868
3980
|
#
|
3869
3981
|
# * To update application version with new `physicalResourceID`, you
|
3870
3982
|
# must call `ResolveAppVersionResources` API.
|
@@ -3875,9 +3987,9 @@ module Aws::ResilienceHub
|
|
3875
3987
|
# Currently, there is no supported additional information for resources.
|
3876
3988
|
#
|
3877
3989
|
# @option params [required, String] :app_arn
|
3878
|
-
# The Amazon Resource Name (ARN) of the
|
3879
|
-
#
|
3880
|
-
# arn:`partition
|
3990
|
+
# The Amazon Resource Name (ARN) of the Resilience Hub application. The
|
3991
|
+
# format for this ARN is:
|
3992
|
+
# arn:`partition`:resiliencehub:`region`:`account`:app/`app-id`. For
|
3881
3993
|
# more information about ARNs, see [ Amazon Resource Names (ARNs)][1] in
|
3882
3994
|
# the *AWS General Reference* guide.
|
3883
3995
|
#
|
@@ -3887,7 +3999,7 @@ module Aws::ResilienceHub
|
|
3887
3999
|
#
|
3888
4000
|
# @option params [Array<String>] :app_components
|
3889
4001
|
# The list of Application Components that this resource belongs to. If
|
3890
|
-
# an Application Component is not part of the
|
4002
|
+
# an Application Component is not part of the Resilience Hub
|
3891
4003
|
# application, it will be added.
|
3892
4004
|
#
|
3893
4005
|
# @option params [String] :aws_account_id
|
@@ -3897,10 +4009,10 @@ module Aws::ResilienceHub
|
|
3897
4009
|
# The Amazon Web Services region that owns the physical resource.
|
3898
4010
|
#
|
3899
4011
|
# @option params [Boolean] :excluded
|
3900
|
-
# Indicates if a resource is excluded from an
|
4012
|
+
# Indicates if a resource is excluded from an Resilience Hub
|
3901
4013
|
# application.
|
3902
4014
|
#
|
3903
|
-
# <note markdown="1"> You can exclude only imported resources from an
|
4015
|
+
# <note markdown="1"> You can exclude only imported resources from an Resilience Hub
|
3904
4016
|
# application.
|
3905
4017
|
#
|
3906
4018
|
# </note>
|
@@ -3935,6 +4047,7 @@ module Aws::ResilienceHub
|
|
3935
4047
|
# aws_region: "AwsRegion",
|
3936
4048
|
# excluded: false,
|
3937
4049
|
# logical_resource_id: {
|
4050
|
+
# eks_source_name: "String255",
|
3938
4051
|
# identifier: "String255", # required
|
3939
4052
|
# logical_stack_name: "String255",
|
3940
4053
|
# resource_group_name: "EntityName",
|
@@ -3960,6 +4073,7 @@ module Aws::ResilienceHub
|
|
3960
4073
|
# resp.physical_resource.app_components[0].name #=> String
|
3961
4074
|
# resp.physical_resource.app_components[0].type #=> String
|
3962
4075
|
# resp.physical_resource.excluded #=> Boolean
|
4076
|
+
# resp.physical_resource.logical_resource_id.eks_source_name #=> String
|
3963
4077
|
# resp.physical_resource.logical_resource_id.identifier #=> String
|
3964
4078
|
# resp.physical_resource.logical_resource_id.logical_stack_name #=> String
|
3965
4079
|
# resp.physical_resource.logical_resource_id.resource_group_name #=> String
|
@@ -3993,7 +4107,7 @@ module Aws::ResilienceHub
|
|
3993
4107
|
# @option params [required, String] :policy_arn
|
3994
4108
|
# The Amazon Resource Name (ARN) of the resiliency policy. The format
|
3995
4109
|
# for this ARN is:
|
3996
|
-
# arn:`partition
|
4110
|
+
# arn:`partition`:resiliencehub:`region`:`account`:resiliency-policy/`policy-id`.
|
3997
4111
|
# For more information about ARNs, see [ Amazon Resource Names
|
3998
4112
|
# (ARNs)][1] in the *AWS General Reference* guide.
|
3999
4113
|
#
|
@@ -4068,7 +4182,7 @@ module Aws::ResilienceHub
|
|
4068
4182
|
params: params,
|
4069
4183
|
config: config)
|
4070
4184
|
context[:gem_name] = 'aws-sdk-resiliencehub'
|
4071
|
-
context[:gem_version] = '1.
|
4185
|
+
context[:gem_version] = '1.12.0'
|
4072
4186
|
Seahorse::Client::Request.new(handlers, context)
|
4073
4187
|
end
|
4074
4188
|
|