aws-sdk-backup 1.23.0 → 1.24.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: 0035143af9052545ab4ef1314b66fc4978a25d51843fe713d450341c25a85a3e
4
- data.tar.gz: 4c7cb2fc97e924869da64bb41b3ec132a8f26d23219264463b09bfc8d3250901
3
+ metadata.gz: 6e35a0caab15ed8e90bdf851eeb22892420e83894144d31fd3bec40672eef12d
4
+ data.tar.gz: 45988491d8b32c7981b8683e1a96e020ba61837124f41bf4adf7043f97bf399c
5
5
  SHA512:
6
- metadata.gz: 8c805cacfea172afa0bcbd5e89b707a3ffa6cc70e0139fd339270be9d9ca3aee8dc740a555b70abb94fac9d61d45f99ffd13cd09edcc63172ceafb33359d33b7
7
- data.tar.gz: 7a7d93e2e2cdbc693b2d7c0eaa2ed9b3212d9956a62d3d53b9020d7dcb357eacb7657ffb3d445a118aa08cb183334f2924c3815c78345a36f7e28c717bceae31
6
+ metadata.gz: 15f8258926f68928a5e2d134b1fd3795f076457e6e3f773cee5ad500c2f7225d3437b8d68c9d21349cd86ad06c63cfb9a52d3cfd847aa26311b1eb685eca8a24
7
+ data.tar.gz: 4b381db417de72a80a9d522f9253dcb8c4fdc9192bc9c1687cfde1b12829ac42c6624f8fdaf9a21cfaaa9f27aec3a49720f7bee19ecae9797822d4c6c6a857b4
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-backup/customizations'
48
48
  # @!group service
49
49
  module Aws::Backup
50
50
 
51
- GEM_VERSION = '1.23.0'
51
+ GEM_VERSION = '1.24.0'
52
52
 
53
53
  end
@@ -2352,8 +2352,10 @@ module Aws::Backup
2352
2352
  # Specifies the backup option for a selected resource. This option is
2353
2353
  # only available for Windows VSS backup jobs.
2354
2354
  #
2355
- # Valid value: `"WindowsVSS”:“enabled"`. If enabled, creates a VSS
2356
- # Windows backup; otherwise, creates a regular backup.
2355
+ # Valid values: Set to `"WindowsVSS”:“enabled"` to enable WindowsVSS
2356
+ # backup option and create a VSS Windows backup. Set to
2357
+ # “WindowsVSS”:”disabled” to create a regular backup. The WindowsVSS
2358
+ # option is not enabled by default.
2357
2359
  #
2358
2360
  # @return [Types::StartBackupJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2359
2361
  #
@@ -2469,10 +2471,6 @@ module Aws::Backup
2469
2471
  # Recovers the saved resource identified by an Amazon Resource Name
2470
2472
  # (ARN).
2471
2473
  #
2472
- # If the resource ARN is included in the request, then the last complete
2473
- # backup of that resource is recovered. If the ARN of a recovery point
2474
- # is supplied, then that recovery point is restored.
2475
- #
2476
2474
  # @option params [required, String] :recovery_point_arn
2477
2475
  # An ARN that uniquely identifies a recovery point; for example,
2478
2476
  # `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
@@ -2500,7 +2498,9 @@ module Aws::Backup
2500
2498
  # set to `true`.
2501
2499
  #
2502
2500
  # * `KmsKeyId`\: Specifies the AWS KMS key that is used to encrypt the
2503
- # restored file system.
2501
+ # restored file system. You can specify a key from another AWS account
2502
+ # provided that key it is properly shared with your account via AWS
2503
+ # KMS.
2504
2504
  #
2505
2505
  # * `PerformanceMode`\: Specifies the throughput mode of the file
2506
2506
  # system.
@@ -2511,6 +2511,11 @@ module Aws::Backup
2511
2511
  # * `newFileSystem`\: A Boolean value that, if true, specifies that the
2512
2512
  # recovery point is restored to a new Amazon EFS file system.
2513
2513
  #
2514
+ # * `ItemsToRestore `\: A serialized list of up to five strings where
2515
+ # each string is a file path. Use `ItemsToRestore` to restore specific
2516
+ # files or directories rather than the entire file system. This
2517
+ # parameter is optional.
2518
+ #
2514
2519
  # @option params [required, String] :iam_role_arn
2515
2520
  # The Amazon Resource Name (ARN) of the IAM role that AWS Backup uses to
2516
2521
  # create the target recovery point; for example,
@@ -2841,7 +2846,7 @@ module Aws::Backup
2841
2846
  params: params,
2842
2847
  config: config)
2843
2848
  context[:gem_name] = 'aws-sdk-backup'
2844
- context[:gem_version] = '1.23.0'
2849
+ context[:gem_version] = '1.24.0'
2845
2850
  Seahorse::Client::Request.new(handlers, context)
2846
2851
  end
2847
2852
 
@@ -33,8 +33,10 @@ module Aws::Backup
33
33
  # Specifies the backup option for a selected resource. This option is
34
34
  # only available for Windows VSS backup jobs.
35
35
  #
36
- # Valid value: `"WindowsVSS”:“enabled"`. If enabled, creates a VSS
37
- # Windows backup; otherwise, creates a regular backup.
36
+ # Valid values: Set to `"WindowsVSS”:“enabled"` to enable WindowsVSS
37
+ # backup option and create a VSS Windows backup. Set to
38
+ # “WindowsVSS”:”disabled” to create a regular backup. The WindowsVSS
39
+ # option is not enabled by default.
38
40
  #
39
41
  # If you specify an invalid option, you get an
40
42
  # `InvalidParameterValueException` exception.
@@ -200,8 +202,9 @@ module Aws::Backup
200
202
  # Specifies the backup option for a selected resource. This option is
201
203
  # only available for Windows VSS backup jobs.
202
204
  #
203
- # Valid value: `"WindowsVSS”:“enabled"`. If enabled, creates a VSS
204
- # Windows backup; otherwise, creates a regular backup. If you specify
205
+ # Valid values: Set to `"WindowsVSS”:“enabled"` to enable WindowsVSS
206
+ # backup option and create a VSS Windows backup. Set to
207
+ # “WindowsVSS”:”disabled” to create a regular backup. If you specify
205
208
  # an invalid option, you get an `InvalidParameterValueException`
206
209
  # exception.
207
210
  # @return [Hash<String,String>]
@@ -437,6 +440,15 @@ module Aws::Backup
437
440
  #
438
441
  # @!attribute [rw] schedule_expression
439
442
  # A CRON expression specifying when AWS Backup initiates a backup job.
443
+ # For more information about cron expressions, see [Schedule
444
+ # Expressions for Rules][1] in the *Amazon CloudWatch Events User
445
+ # Guide.*. Prior to specifying a value for this parameter, we
446
+ # recommend testing your cron expression using one of the many
447
+ # available cron generator and testing tools.
448
+ #
449
+ #
450
+ #
451
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html
440
452
  # @return [String]
441
453
  #
442
454
  # @!attribute [rw] start_window_minutes
@@ -3934,8 +3946,10 @@ module Aws::Backup
3934
3946
  # Specifies the backup option for a selected resource. This option is
3935
3947
  # only available for Windows VSS backup jobs.
3936
3948
  #
3937
- # Valid value: `"WindowsVSS”:“enabled"`. If enabled, creates a VSS
3938
- # Windows backup; otherwise, creates a regular backup.
3949
+ # Valid values: Set to `"WindowsVSS”:“enabled"` to enable WindowsVSS
3950
+ # backup option and create a VSS Windows backup. Set to
3951
+ # “WindowsVSS”:”disabled” to create a regular backup. The WindowsVSS
3952
+ # option is not enabled by default.
3939
3953
  # @return [Hash<String,String>]
3940
3954
  #
3941
3955
  # @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/StartBackupJobInput AWS API Documentation
@@ -4111,7 +4125,9 @@ module Aws::Backup
4111
4125
  # must be set to `true`.
4112
4126
  #
4113
4127
  # * `KmsKeyId`\: Specifies the AWS KMS key that is used to encrypt the
4114
- # restored file system.
4128
+ # restored file system. You can specify a key from another AWS
4129
+ # account provided that key it is properly shared with your account
4130
+ # via AWS KMS.
4115
4131
  #
4116
4132
  # * `PerformanceMode`\: Specifies the throughput mode of the file
4117
4133
  # system.
@@ -4121,6 +4137,11 @@ module Aws::Backup
4121
4137
  #
4122
4138
  # * `newFileSystem`\: A Boolean value that, if true, specifies that
4123
4139
  # the recovery point is restored to a new Amazon EFS file system.
4140
+ #
4141
+ # * `ItemsToRestore `\: A serialized list of up to five strings where
4142
+ # each string is a file path. Use `ItemsToRestore` to restore
4143
+ # specific files or directories rather than the entire file system.
4144
+ # This parameter is optional.
4124
4145
  # @return [Hash<String,String>]
4125
4146
  #
4126
4147
  # @!attribute [rw] iam_role_arn
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.23.0
4
+ version: 1.24.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: 2020-09-30 00:00:00.000000000 Z
11
+ date: 2020-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core