aws-sdk-resiliencehub 1.12.0 → 1.14.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 616bcb07f4a7ef60b94894a5319ff75352e852efbd6555d5b2250ef71cb41002
4
- data.tar.gz: d9a4243de737a3e76c936a6daf734533a66f162ef7bc00c8dcf1c36e77706148
3
+ metadata.gz: 42ee182d0e9f624be0dbd9f0e7ecab61a46a3c64a2284ab45dc06af2dfd64451
4
+ data.tar.gz: 57474c823e544305cd2bed75d395e08c888dfa1b491a2878611f4b34a1ace335
5
5
  SHA512:
6
- metadata.gz: a1eb0740c6c49d320133be9dbf67cecba825c96a28c80cf6e9428bcbe5621950097fd71d3a04d29219bdb2aca06621c7989e65b5c6dbc41849f2496f6f869de4
7
- data.tar.gz: 21e50cb14a08df5dce6a0bc95197c08d009798af0bbc3a30e00de2d0d37d7df366b618804b44fd71620c5e2fffb918b159dd08ab9e917861b80e46dc510869c1
6
+ metadata.gz: 0d2168217faf9b314035a8e3a96956123d68c7cdb4c176fa647116ad78801d9a9e2d8f6a84e8d3ce1c83d3d07c580bf26d398da8a14be267bdbdfec06c0c0c02
7
+ data.tar.gz: 2890b8ca88c64768c9cf9b70db9ada724ead2f502be739a82fac592b29406ec1906c344ffedfa54efeee73a43d63cd1a380fae3b282df675f6e20afa0b53be1b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.14.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.13.0 (2023-05-02)
10
+ ------------------
11
+
12
+ * Feature - This release will improve resource level transparency in applications by discovering previously hidden resources.
13
+
4
14
  1.12.0 (2023-03-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.14.0
@@ -275,6 +275,11 @@ module Aws::ResilienceHub
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -447,10 +452,12 @@ module Aws::ResilienceHub
447
452
 
448
453
  # Creates an Resilience Hub application. An Resilience Hub application
449
454
  # 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.
455
+ # and recover Amazon Web Services application disruptions. To describe
456
+ # an Resilience Hub application, you provide an application name,
457
+ # resources from one or more CloudFormation stacks, Resource Groups,
458
+ # Terraform state files, AppRegistry applications, and an appropriate
459
+ # resiliency policy. For more information about the number of resources
460
+ # supported per application, see [Service Quotas][1].
454
461
  #
455
462
  # After you create an Resilience Hub application, you publish it so that
456
463
  # you can run a resiliency assessment on it. You can then use
@@ -459,6 +466,10 @@ module Aws::ResilienceHub
459
466
  # until you achieve your goals for recovery time objective (RTO) and
460
467
  # recovery point objective (RPO).
461
468
  #
469
+ #
470
+ #
471
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/resiliencehub.html#limits_resiliencehub
472
+ #
462
473
  # @option params [String] :assessment_schedule
463
474
  # Assessment execution schedule with 'Daily' or 'Disabled' values.
464
475
  #
@@ -675,7 +686,7 @@ module Aws::ResilienceHub
675
686
  # @option params [required, String] :physical_resource_id
676
687
  # The physical identifier of the resource.
677
688
  #
678
- # @option params [required, String] :resource_name
689
+ # @option params [String] :resource_name
679
690
  # The name of the resource.
680
691
  #
681
692
  # @option params [required, String] :resource_type
@@ -706,7 +717,7 @@ module Aws::ResilienceHub
706
717
  # terraform_source_name: "String255",
707
718
  # },
708
719
  # physical_resource_id: "String2048", # required
709
- # resource_name: "EntityName", # required
720
+ # resource_name: "EntityName",
710
721
  # resource_type: "String255", # required
711
722
  # })
712
723
  #
@@ -730,12 +741,14 @@ module Aws::ResilienceHub
730
741
  # resp.physical_resource.logical_resource_id.logical_stack_name #=> String
731
742
  # resp.physical_resource.logical_resource_id.resource_group_name #=> String
732
743
  # resp.physical_resource.logical_resource_id.terraform_source_name #=> String
744
+ # resp.physical_resource.parent_resource_name #=> String
733
745
  # resp.physical_resource.physical_resource_id.aws_account_id #=> String
734
746
  # resp.physical_resource.physical_resource_id.aws_region #=> String
735
747
  # resp.physical_resource.physical_resource_id.identifier #=> String
736
748
  # resp.physical_resource.physical_resource_id.type #=> String, one of "Arn", "Native"
737
749
  # resp.physical_resource.resource_name #=> String
738
750
  # resp.physical_resource.resource_type #=> String
751
+ # resp.physical_resource.source_type #=> String, one of "AppTemplate", "Discovered"
739
752
  #
740
753
  # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/CreateAppVersionResource AWS API Documentation
741
754
  #
@@ -1280,12 +1293,14 @@ module Aws::ResilienceHub
1280
1293
  # resp.physical_resource.logical_resource_id.logical_stack_name #=> String
1281
1294
  # resp.physical_resource.logical_resource_id.resource_group_name #=> String
1282
1295
  # resp.physical_resource.logical_resource_id.terraform_source_name #=> String
1296
+ # resp.physical_resource.parent_resource_name #=> String
1283
1297
  # resp.physical_resource.physical_resource_id.aws_account_id #=> String
1284
1298
  # resp.physical_resource.physical_resource_id.aws_region #=> String
1285
1299
  # resp.physical_resource.physical_resource_id.identifier #=> String
1286
1300
  # resp.physical_resource.physical_resource_id.type #=> String, one of "Arn", "Native"
1287
1301
  # resp.physical_resource.resource_name #=> String
1288
1302
  # resp.physical_resource.resource_type #=> String
1303
+ # resp.physical_resource.source_type #=> String, one of "AppTemplate", "Discovered"
1289
1304
  #
1290
1305
  # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/DeleteAppVersionResource AWS API Documentation
1291
1306
  #
@@ -1697,12 +1712,14 @@ module Aws::ResilienceHub
1697
1712
  # resp.physical_resource.logical_resource_id.logical_stack_name #=> String
1698
1713
  # resp.physical_resource.logical_resource_id.resource_group_name #=> String
1699
1714
  # resp.physical_resource.logical_resource_id.terraform_source_name #=> String
1715
+ # resp.physical_resource.parent_resource_name #=> String
1700
1716
  # resp.physical_resource.physical_resource_id.aws_account_id #=> String
1701
1717
  # resp.physical_resource.physical_resource_id.aws_region #=> String
1702
1718
  # resp.physical_resource.physical_resource_id.identifier #=> String
1703
1719
  # resp.physical_resource.physical_resource_id.type #=> String, one of "Arn", "Native"
1704
1720
  # resp.physical_resource.resource_name #=> String
1705
1721
  # resp.physical_resource.resource_type #=> String
1722
+ # resp.physical_resource.source_type #=> String, one of "AppTemplate", "Discovered"
1706
1723
  #
1707
1724
  # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/DescribeAppVersionResource AWS API Documentation
1708
1725
  #
@@ -2575,12 +2592,14 @@ module Aws::ResilienceHub
2575
2592
  # resp.physical_resources[0].logical_resource_id.logical_stack_name #=> String
2576
2593
  # resp.physical_resources[0].logical_resource_id.resource_group_name #=> String
2577
2594
  # resp.physical_resources[0].logical_resource_id.terraform_source_name #=> String
2595
+ # resp.physical_resources[0].parent_resource_name #=> String
2578
2596
  # resp.physical_resources[0].physical_resource_id.aws_account_id #=> String
2579
2597
  # resp.physical_resources[0].physical_resource_id.aws_region #=> String
2580
2598
  # resp.physical_resources[0].physical_resource_id.identifier #=> String
2581
2599
  # resp.physical_resources[0].physical_resource_id.type #=> String, one of "Arn", "Native"
2582
2600
  # resp.physical_resources[0].resource_name #=> String
2583
2601
  # resp.physical_resources[0].resource_type #=> String
2602
+ # resp.physical_resources[0].source_type #=> String, one of "AppTemplate", "Discovered"
2584
2603
  # resp.resolution_id #=> String
2585
2604
  #
2586
2605
  # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/ListAppVersionResources AWS API Documentation
@@ -4078,12 +4097,14 @@ module Aws::ResilienceHub
4078
4097
  # resp.physical_resource.logical_resource_id.logical_stack_name #=> String
4079
4098
  # resp.physical_resource.logical_resource_id.resource_group_name #=> String
4080
4099
  # resp.physical_resource.logical_resource_id.terraform_source_name #=> String
4100
+ # resp.physical_resource.parent_resource_name #=> String
4081
4101
  # resp.physical_resource.physical_resource_id.aws_account_id #=> String
4082
4102
  # resp.physical_resource.physical_resource_id.aws_region #=> String
4083
4103
  # resp.physical_resource.physical_resource_id.identifier #=> String
4084
4104
  # resp.physical_resource.physical_resource_id.type #=> String, one of "Arn", "Native"
4085
4105
  # resp.physical_resource.resource_name #=> String
4086
4106
  # resp.physical_resource.resource_type #=> String
4107
+ # resp.physical_resource.source_type #=> String, one of "AppTemplate", "Discovered"
4087
4108
  #
4088
4109
  # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/UpdateAppVersionResource AWS API Documentation
4089
4110
  #
@@ -4182,7 +4203,7 @@ module Aws::ResilienceHub
4182
4203
  params: params,
4183
4204
  config: config)
4184
4205
  context[:gem_name] = 'aws-sdk-resiliencehub'
4185
- context[:gem_version] = '1.12.0'
4206
+ context[:gem_version] = '1.14.0'
4186
4207
  Seahorse::Client::Request.new(handlers, context)
4187
4208
  end
4188
4209
 
@@ -204,6 +204,7 @@ module Aws::ResilienceHub
204
204
  ResourceMappingType = Shapes::StringShape.new(name: 'ResourceMappingType')
205
205
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
206
206
  ResourceResolutionStatusType = Shapes::StringShape.new(name: 'ResourceResolutionStatusType')
207
+ ResourceSourceType = Shapes::StringShape.new(name: 'ResourceSourceType')
207
208
  ResourceType = Shapes::StringShape.new(name: 'ResourceType')
208
209
  RetryAfterSeconds = Shapes::IntegerShape.new(name: 'RetryAfterSeconds')
209
210
  S3Location = Shapes::StructureShape.new(name: 'S3Location')
@@ -451,7 +452,7 @@ module Aws::ResilienceHub
451
452
  CreateAppVersionResourceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
452
453
  CreateAppVersionResourceRequest.add_member(:logical_resource_id, Shapes::ShapeRef.new(shape: LogicalResourceId, required: true, location_name: "logicalResourceId"))
453
454
  CreateAppVersionResourceRequest.add_member(:physical_resource_id, Shapes::ShapeRef.new(shape: String2048, required: true, location_name: "physicalResourceId"))
454
- CreateAppVersionResourceRequest.add_member(:resource_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "resourceName"))
455
+ CreateAppVersionResourceRequest.add_member(:resource_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "resourceName"))
455
456
  CreateAppVersionResourceRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: String255, required: true, location_name: "resourceType"))
456
457
  CreateAppVersionResourceRequest.struct_class = Types::CreateAppVersionResourceRequest
457
458
 
@@ -868,9 +869,11 @@ module Aws::ResilienceHub
868
869
  PhysicalResource.add_member(:app_components, Shapes::ShapeRef.new(shape: AppComponentList, location_name: "appComponents"))
869
870
  PhysicalResource.add_member(:excluded, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "excluded"))
870
871
  PhysicalResource.add_member(:logical_resource_id, Shapes::ShapeRef.new(shape: LogicalResourceId, required: true, location_name: "logicalResourceId"))
872
+ PhysicalResource.add_member(:parent_resource_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "parentResourceName"))
871
873
  PhysicalResource.add_member(:physical_resource_id, Shapes::ShapeRef.new(shape: PhysicalResourceId, required: true, location_name: "physicalResourceId"))
872
874
  PhysicalResource.add_member(:resource_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "resourceName"))
873
875
  PhysicalResource.add_member(:resource_type, Shapes::ShapeRef.new(shape: String255, required: true, location_name: "resourceType"))
876
+ PhysicalResource.add_member(:source_type, Shapes::ShapeRef.new(shape: ResourceSourceType, location_name: "sourceType"))
874
877
  PhysicalResource.struct_class = Types::PhysicalResource
875
878
 
876
879
  PhysicalResourceId.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: CustomerId, location_name: "awsAccountId"))
@@ -3633,6 +3633,10 @@ module Aws::ResilienceHub
3633
3633
  # The logical identifier of the resource.
3634
3634
  # @return [Types::LogicalResourceId]
3635
3635
  #
3636
+ # @!attribute [rw] parent_resource_name
3637
+ # The name of the parent resource.
3638
+ # @return [String]
3639
+ #
3636
3640
  # @!attribute [rw] physical_resource_id
3637
3641
  # The physical identifier of the resource.
3638
3642
  # @return [Types::PhysicalResourceId]
@@ -3645,6 +3649,10 @@ module Aws::ResilienceHub
3645
3649
  # The type of resource.
3646
3650
  # @return [String]
3647
3651
  #
3652
+ # @!attribute [rw] source_type
3653
+ # The type of input source.
3654
+ # @return [String]
3655
+ #
3648
3656
  # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/PhysicalResource AWS API Documentation
3649
3657
  #
3650
3658
  class PhysicalResource < Struct.new(
@@ -3652,9 +3660,11 @@ module Aws::ResilienceHub
3652
3660
  :app_components,
3653
3661
  :excluded,
3654
3662
  :logical_resource_id,
3663
+ :parent_resource_name,
3655
3664
  :physical_resource_id,
3656
3665
  :resource_name,
3657
- :resource_type)
3666
+ :resource_type,
3667
+ :source_type)
3658
3668
  SENSITIVE = []
3659
3669
  include Aws::Structure
3660
3670
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-resiliencehub/customizations'
52
52
  # @!group service
53
53
  module Aws::ResilienceHub
54
54
 
55
- GEM_VERSION = '1.12.0'
55
+ GEM_VERSION = '1.14.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-resiliencehub
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-31 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement