aws-sdk-resiliencehub 1.6.0 → 1.7.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: 90b3a9f618f2daecf531030ef4cab39fe864bb51ed08f0334c9df972f7f5e899
4
- data.tar.gz: b4b1799e0cf8e4426c18ad8484f51decdd09df2e547e8ee10e18cded80fb8d8c
3
+ metadata.gz: 461306527fd60217db532b7b0322b4db40bfe255531daaf05e532988bb292487
4
+ data.tar.gz: 3acb4626abbae8e27a87e5645b9b6fa693b3e08c3c031dce654d9a3d56290226
5
5
  SHA512:
6
- metadata.gz: 9b156d2422489d09f780c7836b95a226fecf11c884d894576fcfb333cc6cc9ac92413f85d17916278af4ce21451dca63c449cf7ece7c6c695790d222ba432277
7
- data.tar.gz: 98d29d58b382afd3def6486156b37d8eae62fb764022c7c5c7c729d67c19ac95bf4d42d650aa4f79886840fc5dac0cba25a9436725a799656936e11d29898ac0
6
+ metadata.gz: 3d92f584e3524797a2e70f2742eec47e4bb4db240caaa18dc40cca9981af1ac9fcb6e892bef0eb6d81fb088ff16cc03a96ddd73ff8fcf4802a665c35ebcc4cc2
7
+ data.tar.gz: b5d0058becd08a2e5fc93afdaf41645da0e6b8eccaaab20c6f426758308361600b545f358cd9508969b375ba98fd13d62f04fee576c220591bc20f0b61f23d90
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2022-10-20)
5
+ ------------------
6
+
7
+ * Feature - In this release, we are introducing support for regional optimization for AWS Resilience Hub applications. It also includes a few documentation updates to improve clarity.
8
+
4
9
  1.6.0 (2022-10-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -1560,7 +1560,7 @@ module Aws::ResilienceHub
1560
1560
  # resp.component_recommendations[0].config_recommendations[0].description #=> String
1561
1561
  # resp.component_recommendations[0].config_recommendations[0].ha_architecture #=> String, one of "MultiSite", "WarmStandby", "PilotLight", "BackupAndRestore", "NoRecoveryPlan"
1562
1562
  # resp.component_recommendations[0].config_recommendations[0].name #=> String
1563
- # resp.component_recommendations[0].config_recommendations[0].optimization_type #=> String, one of "LeastCost", "LeastChange", "BestAZRecovery", "LeastErrors", "BestAttainable"
1563
+ # resp.component_recommendations[0].config_recommendations[0].optimization_type #=> String, one of "LeastCost", "LeastChange", "BestAZRecovery", "LeastErrors", "BestAttainable", "BestRegionRecovery"
1564
1564
  # resp.component_recommendations[0].config_recommendations[0].recommendation_compliance #=> Hash
1565
1565
  # resp.component_recommendations[0].config_recommendations[0].recommendation_compliance["DisruptionType"].expected_compliance_status #=> String, one of "PolicyBreached", "PolicyMet"
1566
1566
  # resp.component_recommendations[0].config_recommendations[0].recommendation_compliance["DisruptionType"].expected_rpo_description #=> String
@@ -1830,6 +1830,7 @@ module Aws::ResilienceHub
1830
1830
  # resp.app_summaries[0].description #=> String
1831
1831
  # resp.app_summaries[0].name #=> String
1832
1832
  # resp.app_summaries[0].resiliency_score #=> Float
1833
+ # resp.app_summaries[0].status #=> String, one of "Active", "Deleting"
1833
1834
  # resp.next_token #=> String
1834
1835
  #
1835
1836
  # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/ListApps AWS API Documentation
@@ -2705,11 +2706,6 @@ module Aws::ResilienceHub
2705
2706
  # The type of resiliency policy to be created, including the recovery
2706
2707
  # time objective (RTO) and recovery point objective (RPO) in seconds.
2707
2708
  #
2708
- # <note markdown="1"> If you do not want to specify regional targets for a regional policy,
2709
- # you must set the values of `rpoInSecs` and `rtoInSecs` to `-1`.
2710
- #
2711
- # </note>
2712
- #
2713
2709
  # @option params [required, String] :policy_arn
2714
2710
  # The Amazon Resource Name (ARN) of the resiliency policy. The format
2715
2711
  # for this ARN is:
@@ -2788,7 +2784,7 @@ module Aws::ResilienceHub
2788
2784
  params: params,
2789
2785
  config: config)
2790
2786
  context[:gem_name] = 'aws-sdk-resiliencehub'
2791
- context[:gem_version] = '1.6.0'
2787
+ context[:gem_version] = '1.7.0'
2792
2788
  Seahorse::Client::Request.new(handlers, context)
2793
2789
  end
2794
2790
 
@@ -309,6 +309,7 @@ module Aws::ResilienceHub
309
309
  AppSummary.add_member(:description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "description"))
310
310
  AppSummary.add_member(:name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "name"))
311
311
  AppSummary.add_member(:resiliency_score, Shapes::ShapeRef.new(shape: Double, location_name: "resiliencyScore"))
312
+ AppSummary.add_member(:status, Shapes::ShapeRef.new(shape: AppStatusType, location_name: "status"))
312
313
  AppSummary.struct_class = Types::AppSummary
313
314
 
314
315
  AppSummaryList.member = Shapes::ShapeRef.new(shape: AppSummary)
@@ -221,7 +221,7 @@ module Aws::ResilienceHub
221
221
  # @return [Float]
222
222
  #
223
223
  # @!attribute [rw] status
224
- # The status of the action.
224
+ # The status of the application.
225
225
  # @return [String]
226
226
  #
227
227
  # @!attribute [rw] tags
@@ -540,6 +540,10 @@ module Aws::ResilienceHub
540
540
  # The current resiliency score for the application.
541
541
  # @return [Float]
542
542
  #
543
+ # @!attribute [rw] status
544
+ # The status of the application.
545
+ # @return [String]
546
+ #
543
547
  # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/AppSummary AWS API Documentation
544
548
  #
545
549
  class AppSummary < Struct.new(
@@ -549,7 +553,8 @@ module Aws::ResilienceHub
549
553
  :creation_time,
550
554
  :description,
551
555
  :name,
552
- :resiliency_score)
556
+ :resiliency_score,
557
+ :status)
553
558
  SENSITIVE = []
554
559
  include Aws::Structure
555
560
  end
@@ -3968,12 +3973,6 @@ module Aws::ResilienceHub
3968
3973
  # @!attribute [rw] policy
3969
3974
  # The type of resiliency policy to be created, including the recovery
3970
3975
  # time objective (RTO) and recovery point objective (RPO) in seconds.
3971
- #
3972
- # <note markdown="1"> If you do not want to specify regional targets for a regional
3973
- # policy, you must set the values of `rpoInSecs` and `rtoInSecs` to
3974
- # `-1`.
3975
- #
3976
- # </note>
3977
3976
  # @return [Hash<String,Types::FailurePolicy>]
3978
3977
  #
3979
3978
  # @!attribute [rw] policy_arn
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-resiliencehub/customizations'
48
48
  # @!group service
49
49
  module Aws::ResilienceHub
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.7.0'
52
52
 
53
53
  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.6.0
4
+ version: 1.7.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: 2022-10-06 00:00:00.000000000 Z
11
+ date: 2022-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core