aws-sdk-backup 1.50.0 → 1.51.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: 6bee53777906a9d52c3b1db78e8d113452667630adcb51d2b97b87058a65c987
4
- data.tar.gz: d376df297accd9e491d390c469a4fccb1a5133a8588250c4f38116a1bdf64c1a
3
+ metadata.gz: 6aa4a8ddab2952dbc2522a474d1bc5ee56122e4c3452c4d8d6bf7674fbf45679
4
+ data.tar.gz: 622a8f48c1502303454dfad9fc5fac9c9b5bba444090d05e8c6932ebf67ac63c
5
5
  SHA512:
6
- metadata.gz: 4bcb0cc79a54fde97ec4bcec1ab8d78a52d7fe314dcab65f923123e8e445c70fd1e99104db0a8669fa95dadb9b42b19bd1225624a5b4295c07c76dc058d431e4
7
- data.tar.gz: '014959304a4dee39e5e7e314ecc844e3d89ec9d87ba8b0f4f43f03492ce5398dcfea1120f21d630f91af6613c760315abcc1d9680798964279ee2a331ff0cba4'
6
+ metadata.gz: cecc06d735832e49c2af21a2b930b5de8d9ef783c7bc518db8322de8751ce1224962e469446c3ed787d781352bfbe32be0cf470543dedc436ad4cdc9caeb1246
7
+ data.tar.gz: 60306315ea7c1f10946536795a5a924d37910279f45e2c04778dbefbbf0f34230117e36e307ec483ac1ef6d6cd3893a68a5eb28577a42dfab09dedd205135992
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.51.0 (2023-05-22)
5
+ ------------------
6
+
7
+ * Feature - Added support for tags on restore.
8
+
4
9
  1.50.0 (2023-05-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.51.0
@@ -3942,6 +3942,12 @@ module Aws::Backup
3942
3942
  #
3943
3943
  # * `VirtualMachine` for virtual machines
3944
3944
  #
3945
+ # @option params [Boolean] :copy_source_tags_to_restored_resource
3946
+ # This is an optional parameter. If this equals `True`, tags included in
3947
+ # the backup will be copied to the restored resource.
3948
+ #
3949
+ # This can only be applied to backups created through Backup.
3950
+ #
3945
3951
  # @return [Types::StartRestoreJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3946
3952
  #
3947
3953
  # * {Types::StartRestoreJobOutput#restore_job_id #restore_job_id} => String
@@ -3956,6 +3962,7 @@ module Aws::Backup
3956
3962
  # iam_role_arn: "IAMRoleArn",
3957
3963
  # idempotency_token: "string",
3958
3964
  # resource_type: "ResourceType",
3965
+ # copy_source_tags_to_restored_resource: false,
3959
3966
  # })
3960
3967
  #
3961
3968
  # @example Response structure
@@ -4461,7 +4468,7 @@ module Aws::Backup
4461
4468
  params: params,
4462
4469
  config: config)
4463
4470
  context[:gem_name] = 'aws-sdk-backup'
4464
- context[:gem_version] = '1.50.0'
4471
+ context[:gem_version] = '1.51.0'
4465
4472
  Seahorse::Client::Request.new(handlers, context)
4466
4473
  end
4467
4474
 
@@ -1314,6 +1314,7 @@ module Aws::Backup
1314
1314
  StartRestoreJobInput.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "IamRoleArn"))
1315
1315
  StartRestoreJobInput.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: string, location_name: "IdempotencyToken"))
1316
1316
  StartRestoreJobInput.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
1317
+ StartRestoreJobInput.add_member(:copy_source_tags_to_restored_resource, Shapes::ShapeRef.new(shape: boolean, location_name: "CopySourceTagsToRestoredResource"))
1317
1318
  StartRestoreJobInput.struct_class = Types::StartRestoreJobInput
1318
1319
 
1319
1320
  StartRestoreJobOutput.add_member(:restore_job_id, Shapes::ShapeRef.new(shape: RestoreJobId, location_name: "RestoreJobId"))
@@ -2268,6 +2269,7 @@ module Aws::Backup
2268
2269
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
2269
2270
  o.errors << Shapes::ShapeRef.new(shape: MissingParameterValueException)
2270
2271
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
2272
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
2271
2273
  end)
2272
2274
 
2273
2275
  api.add_operation(:stop_backup_job, Seahorse::Model::Operation.new.tap do |o|
@@ -2543,6 +2543,11 @@ module Aws::Backup
2543
2543
  # will result in a new continuous recovery point being created. The
2544
2544
  # recovery points with STOPPED status do not need to be deleted.
2545
2545
  #
2546
+ # For SAP HANA on Amazon EC2 `STOPPED` status occurs due to user
2547
+ # action, application misconfiguration, or backup failure. To ensure
2548
+ # that future continuous backups succeed, refer to the recovery point
2549
+ # status and check SAP HANA for details.
2550
+ #
2546
2551
  #
2547
2552
  #
2548
2553
  # [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/API_UpdateBackupPlan.html
@@ -2550,8 +2555,7 @@ module Aws::Backup
2550
2555
  # @return [String]
2551
2556
  #
2552
2557
  # @!attribute [rw] status_message
2553
- # A status message explaining the reason for the recovery point
2554
- # deletion failure.
2558
+ # A status message explaining the status of the recovery point.
2555
2559
  # @return [String]
2556
2560
  #
2557
2561
  # @!attribute [rw] creation_date
@@ -6005,6 +6009,13 @@ module Aws::Backup
6005
6009
  # * `VirtualMachine` for virtual machines
6006
6010
  # @return [String]
6007
6011
  #
6012
+ # @!attribute [rw] copy_source_tags_to_restored_resource
6013
+ # This is an optional parameter. If this equals `True`, tags included
6014
+ # in the backup will be copied to the restored resource.
6015
+ #
6016
+ # This can only be applied to backups created through Backup.
6017
+ # @return [Boolean]
6018
+ #
6008
6019
  # @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/StartRestoreJobInput AWS API Documentation
6009
6020
  #
6010
6021
  class StartRestoreJobInput < Struct.new(
@@ -6012,7 +6023,8 @@ module Aws::Backup
6012
6023
  :metadata,
6013
6024
  :iam_role_arn,
6014
6025
  :idempotency_token,
6015
- :resource_type)
6026
+ :resource_type,
6027
+ :copy_source_tags_to_restored_resource)
6016
6028
  SENSITIVE = [:metadata]
6017
6029
  include Aws::Structure
6018
6030
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-backup/customizations'
52
52
  # @!group service
53
53
  module Aws::Backup
54
54
 
55
- GEM_VERSION = '1.50.0'
55
+ GEM_VERSION = '1.51.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-backup
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.50.0
4
+ version: 1.51.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-05-19 00:00:00.000000000 Z
11
+ date: 2023-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core