aws-sdk-backup 1.50.0 → 1.52.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: eaaf72a1eabc2f66fc23bcd927b7a9741215dafa2f96ef217a271e8cbc5144da
4
+ data.tar.gz: e27dee7e2f37a66749c728b40acf360eabde3355a10ac4bc6f29f1bc29f442ce
5
5
  SHA512:
6
- metadata.gz: 4bcb0cc79a54fde97ec4bcec1ab8d78a52d7fe314dcab65f923123e8e445c70fd1e99104db0a8669fa95dadb9b42b19bd1225624a5b4295c07c76dc058d431e4
7
- data.tar.gz: '014959304a4dee39e5e7e314ecc844e3d89ec9d87ba8b0f4f43f03492ce5398dcfea1120f21d630f91af6613c760315abcc1d9680798964279ee2a331ff0cba4'
6
+ metadata.gz: bdee12e5f0d99451d6ad35f64549626e48e723ffa51b00ea81ebd52ca8dac750e787757101d4d625c6a3b1eab0f41295f460dfec088e0dcce566e4ff388b69f4
7
+ data.tar.gz: de05d42ec61317020031b9d9e3b35024858d2faa7610d4603387681b0253b696bca5900c4f28b22a5485544eb087626628d044ac52ee9856163ee028998681c9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.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.51.0 (2023-05-22)
10
+ ------------------
11
+
12
+ * Feature - Added support for tags on restore.
13
+
4
14
  1.50.0 (2023-05-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.52.0
@@ -275,6 +275,11 @@ module Aws::Backup
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
@@ -3942,6 +3947,12 @@ module Aws::Backup
3942
3947
  #
3943
3948
  # * `VirtualMachine` for virtual machines
3944
3949
  #
3950
+ # @option params [Boolean] :copy_source_tags_to_restored_resource
3951
+ # This is an optional parameter. If this equals `True`, tags included in
3952
+ # the backup will be copied to the restored resource.
3953
+ #
3954
+ # This can only be applied to backups created through Backup.
3955
+ #
3945
3956
  # @return [Types::StartRestoreJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3946
3957
  #
3947
3958
  # * {Types::StartRestoreJobOutput#restore_job_id #restore_job_id} => String
@@ -3956,6 +3967,7 @@ module Aws::Backup
3956
3967
  # iam_role_arn: "IAMRoleArn",
3957
3968
  # idempotency_token: "string",
3958
3969
  # resource_type: "ResourceType",
3970
+ # copy_source_tags_to_restored_resource: false,
3959
3971
  # })
3960
3972
  #
3961
3973
  # @example Response structure
@@ -4461,7 +4473,7 @@ module Aws::Backup
4461
4473
  params: params,
4462
4474
  config: config)
4463
4475
  context[:gem_name] = 'aws-sdk-backup'
4464
- context[:gem_version] = '1.50.0'
4476
+ context[:gem_version] = '1.52.0'
4465
4477
  Seahorse::Client::Request.new(handlers, context)
4466
4478
  end
4467
4479
 
@@ -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.52.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.52.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-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