aws-sdk-backup 1.50.0 → 1.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-backup/client.rb +13 -1
- data/lib/aws-sdk-backup/client_api.rb +2 -0
- data/lib/aws-sdk-backup/types.rb +15 -3
- data/lib/aws-sdk-backup.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eaaf72a1eabc2f66fc23bcd927b7a9741215dafa2f96ef217a271e8cbc5144da
|
4
|
+
data.tar.gz: e27dee7e2f37a66749c728b40acf360eabde3355a10ac4bc6f29f1bc29f442ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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|
|
data/lib/aws-sdk-backup/types.rb
CHANGED
@@ -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
|
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
|
data/lib/aws-sdk-backup.rb
CHANGED
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.
|
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-
|
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.
|
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.
|
32
|
+
version: 3.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|