aws-sdk-resiliencehub 1.10.0 → 1.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-resiliencehub/client.rb +230 -155
- data/lib/aws-sdk-resiliencehub/client_api.rb +25 -0
- data/lib/aws-sdk-resiliencehub/types.rb +425 -243
- data/lib/aws-sdk-resiliencehub.rb +1 -1
- metadata +2 -2
@@ -110,6 +110,11 @@ module Aws::ResilienceHub
|
|
110
110
|
DisruptionType = Shapes::StringShape.new(name: 'DisruptionType')
|
111
111
|
DocumentName = Shapes::StringShape.new(name: 'DocumentName')
|
112
112
|
Double = Shapes::FloatShape.new(name: 'Double')
|
113
|
+
EksNamespace = Shapes::StringShape.new(name: 'EksNamespace')
|
114
|
+
EksNamespaceList = Shapes::ListShape.new(name: 'EksNamespaceList')
|
115
|
+
EksSource = Shapes::StructureShape.new(name: 'EksSource')
|
116
|
+
EksSourceClusterNamespace = Shapes::StructureShape.new(name: 'EksSourceClusterNamespace')
|
117
|
+
EksSourceList = Shapes::ListShape.new(name: 'EksSourceList')
|
113
118
|
EntityDescription = Shapes::StringShape.new(name: 'EntityDescription')
|
114
119
|
EntityId = Shapes::StringShape.new(name: 'EntityId')
|
115
120
|
EntityName = Shapes::StringShape.new(name: 'EntityName')
|
@@ -347,6 +352,7 @@ module Aws::ResilienceHub
|
|
347
352
|
|
348
353
|
AppComponentNameList.member = Shapes::ShapeRef.new(shape: String255)
|
349
354
|
|
355
|
+
AppInputSource.add_member(:eks_source_cluster_namespace, Shapes::ShapeRef.new(shape: EksSourceClusterNamespace, location_name: "eksSourceClusterNamespace"))
|
350
356
|
AppInputSource.add_member(:import_type, Shapes::ShapeRef.new(shape: ResourceMappingType, required: true, location_name: "importType"))
|
351
357
|
AppInputSource.add_member(:resource_count, Shapes::ShapeRef.new(shape: Integer, location_name: "resourceCount"))
|
352
358
|
AppInputSource.add_member(:source_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "sourceArn"))
|
@@ -489,6 +495,7 @@ module Aws::ResilienceHub
|
|
489
495
|
|
490
496
|
DeleteAppInputSourceRequest.add_member(:app_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "appArn"))
|
491
497
|
DeleteAppInputSourceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
498
|
+
DeleteAppInputSourceRequest.add_member(:eks_source_cluster_namespace, Shapes::ShapeRef.new(shape: EksSourceClusterNamespace, location_name: "eksSourceClusterNamespace"))
|
492
499
|
DeleteAppInputSourceRequest.add_member(:source_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "sourceArn"))
|
493
500
|
DeleteAppInputSourceRequest.add_member(:terraform_source, Shapes::ShapeRef.new(shape: TerraformSource, location_name: "terraformSource"))
|
494
501
|
DeleteAppInputSourceRequest.struct_class = Types::DeleteAppInputSourceRequest
|
@@ -644,6 +651,18 @@ module Aws::ResilienceHub
|
|
644
651
|
DisruptionResiliencyScore.key = Shapes::ShapeRef.new(shape: DisruptionType)
|
645
652
|
DisruptionResiliencyScore.value = Shapes::ShapeRef.new(shape: Double)
|
646
653
|
|
654
|
+
EksNamespaceList.member = Shapes::ShapeRef.new(shape: EksNamespace)
|
655
|
+
|
656
|
+
EksSource.add_member(:eks_cluster_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "eksClusterArn"))
|
657
|
+
EksSource.add_member(:namespaces, Shapes::ShapeRef.new(shape: EksNamespaceList, required: true, location_name: "namespaces"))
|
658
|
+
EksSource.struct_class = Types::EksSource
|
659
|
+
|
660
|
+
EksSourceClusterNamespace.add_member(:eks_cluster_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "eksClusterArn"))
|
661
|
+
EksSourceClusterNamespace.add_member(:namespace, Shapes::ShapeRef.new(shape: EksNamespace, required: true, location_name: "namespace"))
|
662
|
+
EksSourceClusterNamespace.struct_class = Types::EksSourceClusterNamespace
|
663
|
+
|
664
|
+
EksSourceList.member = Shapes::ShapeRef.new(shape: EksSource)
|
665
|
+
|
647
666
|
EntityNameList.member = Shapes::ShapeRef.new(shape: EntityName)
|
648
667
|
|
649
668
|
FailurePolicy.add_member(:rpo_in_secs, Shapes::ShapeRef.new(shape: Seconds, required: true, location_name: "rpoInSecs"))
|
@@ -651,6 +670,7 @@ module Aws::ResilienceHub
|
|
651
670
|
FailurePolicy.struct_class = Types::FailurePolicy
|
652
671
|
|
653
672
|
ImportResourcesToDraftAppVersionRequest.add_member(:app_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "appArn"))
|
673
|
+
ImportResourcesToDraftAppVersionRequest.add_member(:eks_sources, Shapes::ShapeRef.new(shape: EksSourceList, location_name: "eksSources"))
|
654
674
|
ImportResourcesToDraftAppVersionRequest.add_member(:import_strategy, Shapes::ShapeRef.new(shape: ResourceImportStrategyType, location_name: "importStrategy"))
|
655
675
|
ImportResourcesToDraftAppVersionRequest.add_member(:source_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "sourceArns"))
|
656
676
|
ImportResourcesToDraftAppVersionRequest.add_member(:terraform_sources, Shapes::ShapeRef.new(shape: TerraformSourceList, location_name: "terraformSources"))
|
@@ -658,6 +678,7 @@ module Aws::ResilienceHub
|
|
658
678
|
|
659
679
|
ImportResourcesToDraftAppVersionResponse.add_member(:app_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "appArn"))
|
660
680
|
ImportResourcesToDraftAppVersionResponse.add_member(:app_version, Shapes::ShapeRef.new(shape: EntityVersion, required: true, location_name: "appVersion"))
|
681
|
+
ImportResourcesToDraftAppVersionResponse.add_member(:eks_sources, Shapes::ShapeRef.new(shape: EksSourceList, location_name: "eksSources"))
|
661
682
|
ImportResourcesToDraftAppVersionResponse.add_member(:source_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "sourceArns"))
|
662
683
|
ImportResourcesToDraftAppVersionResponse.add_member(:status, Shapes::ShapeRef.new(shape: ResourceImportStatusType, required: true, location_name: "status"))
|
663
684
|
ImportResourcesToDraftAppVersionResponse.add_member(:terraform_sources, Shapes::ShapeRef.new(shape: TerraformSourceList, location_name: "terraformSources"))
|
@@ -836,6 +857,7 @@ module Aws::ResilienceHub
|
|
836
857
|
ListUnsupportedAppVersionResourcesResponse.add_member(:unsupported_resources, Shapes::ShapeRef.new(shape: UnsupportedResourceList, required: true, location_name: "unsupportedResources"))
|
837
858
|
ListUnsupportedAppVersionResourcesResponse.struct_class = Types::ListUnsupportedAppVersionResourcesResponse
|
838
859
|
|
860
|
+
LogicalResourceId.add_member(:eks_source_name, Shapes::ShapeRef.new(shape: String255, location_name: "eksSourceName"))
|
839
861
|
LogicalResourceId.add_member(:identifier, Shapes::ShapeRef.new(shape: String255, required: true, location_name: "identifier"))
|
840
862
|
LogicalResourceId.add_member(:logical_stack_name, Shapes::ShapeRef.new(shape: String255, location_name: "logicalStackName"))
|
841
863
|
LogicalResourceId.add_member(:resource_group_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "resourceGroupName"))
|
@@ -916,6 +938,7 @@ module Aws::ResilienceHub
|
|
916
938
|
|
917
939
|
RemoveDraftAppVersionResourceMappingsRequest.add_member(:app_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "appArn"))
|
918
940
|
RemoveDraftAppVersionResourceMappingsRequest.add_member(:app_registry_app_names, Shapes::ShapeRef.new(shape: EntityNameList, location_name: "appRegistryAppNames"))
|
941
|
+
RemoveDraftAppVersionResourceMappingsRequest.add_member(:eks_source_names, Shapes::ShapeRef.new(shape: String255List, location_name: "eksSourceNames"))
|
919
942
|
RemoveDraftAppVersionResourceMappingsRequest.add_member(:logical_stack_names, Shapes::ShapeRef.new(shape: String255List, location_name: "logicalStackNames"))
|
920
943
|
RemoveDraftAppVersionResourceMappingsRequest.add_member(:resource_group_names, Shapes::ShapeRef.new(shape: EntityNameList, location_name: "resourceGroupNames"))
|
921
944
|
RemoveDraftAppVersionResourceMappingsRequest.add_member(:resource_names, Shapes::ShapeRef.new(shape: EntityNameList, location_name: "resourceNames"))
|
@@ -967,6 +990,7 @@ module Aws::ResilienceHub
|
|
967
990
|
ResourceErrorsDetails.struct_class = Types::ResourceErrorsDetails
|
968
991
|
|
969
992
|
ResourceMapping.add_member(:app_registry_app_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "appRegistryAppName"))
|
993
|
+
ResourceMapping.add_member(:eks_source_name, Shapes::ShapeRef.new(shape: String255, location_name: "eksSourceName"))
|
970
994
|
ResourceMapping.add_member(:logical_stack_name, Shapes::ShapeRef.new(shape: String255, location_name: "logicalStackName"))
|
971
995
|
ResourceMapping.add_member(:mapping_type, Shapes::ShapeRef.new(shape: ResourceMappingType, required: true, location_name: "mappingType"))
|
972
996
|
ResourceMapping.add_member(:physical_resource_id, Shapes::ShapeRef.new(shape: PhysicalResourceId, required: true, location_name: "physicalResourceId"))
|
@@ -1053,6 +1077,7 @@ module Aws::ResilienceHub
|
|
1053
1077
|
UnsupportedResource.add_member(:logical_resource_id, Shapes::ShapeRef.new(shape: LogicalResourceId, required: true, location_name: "logicalResourceId"))
|
1054
1078
|
UnsupportedResource.add_member(:physical_resource_id, Shapes::ShapeRef.new(shape: PhysicalResourceId, required: true, location_name: "physicalResourceId"))
|
1055
1079
|
UnsupportedResource.add_member(:resource_type, Shapes::ShapeRef.new(shape: String255, required: true, location_name: "resourceType"))
|
1080
|
+
UnsupportedResource.add_member(:unsupported_resource_status, Shapes::ShapeRef.new(shape: String255, location_name: "unsupportedResourceStatus"))
|
1056
1081
|
UnsupportedResource.struct_class = Types::UnsupportedResource
|
1057
1082
|
|
1058
1083
|
UnsupportedResourceList.member = Shapes::ShapeRef.new(shape: UnsupportedResource)
|