aws-sdk-backup 1.25.0 → 1.26.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39704815da4eb2102775ce38fe491663510a35309b5c0e099a71060fa6ea3fb2
4
- data.tar.gz: c623eac9a57f64cf5fbc7257a14f3b45abee0ec776b084c0e56dc9eb9fcf5a80
3
+ metadata.gz: 5a2da2d0b24a6598093a2ce086bb3e7bc3a01f86f7378ce5960740b4777491c9
4
+ data.tar.gz: 0e6cef251009ca80a97a7c192447f54a25ca8533659a111725aab903bba47b26
5
5
  SHA512:
6
- metadata.gz: 20c9f0e9a57d4feeb1fe57dc32cbbe4c92d928f6d55f40d7a824b300043905dbd44c2050dd564f59c3e70e2331fb429bb0962ce2d5489bfbe6a572df76e8203f
7
- data.tar.gz: 9453623baf49ff92db67eee606087707e89ebdd7a25425acb2cfb471976b12bf62b1a4997bd7561d42a093f819aeb9c0a5b1915c07be823c77c9af96dbacc4cb
6
+ metadata.gz: 9cef63b5084ce21e60247a0c8ccde705a4c2c8c9500ca34314e56dc22eada36470aed50c371cbb02e9036bc7256fef8a734a7937aabac012db19af3d0058cd8a
7
+ data.tar.gz: 6e303867550d1efd2a3053fb012c080232aa3a77ae4d66a3bb79a8d904b59e2fc88b054311205142f283401c0b42359d8b11beba063b87340f438bc9262b76ee
@@ -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.25.0'
51
+ GEM_VERSION = '1.26.0'
52
52
 
53
53
  end
@@ -518,7 +518,7 @@ module Aws::Backup
518
518
  # The name of a logical container where backups are stored. Backup
519
519
  # vaults are identified by names that are unique to the account used to
520
520
  # create them and the AWS Region where they are created. They consist of
521
- # lowercase letters, numbers, and hyphens.
521
+ # letters, numbers, and hyphens.
522
522
  #
523
523
  # @option params [Hash<String,String>] :backup_vault_tags
524
524
  # Metadata that you can assign to help organize the resources that you
@@ -894,7 +894,8 @@ module Aws::Backup
894
894
  req.send_request(options)
895
895
  end
896
896
 
897
- # The current feature settings for the AWS Account.
897
+ # Describes the global settings of the AWS account, including whether it
898
+ # is opted in to cross-account backup.
898
899
  #
899
900
  # @return [Types::DescribeGlobalSettingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
900
901
  #
@@ -1532,12 +1533,17 @@ module Aws::Backup
1532
1533
  #
1533
1534
  # * `RDS` for Amazon Relational Database Service
1534
1535
  #
1536
+ # * `Aurora` for Amazon Aurora
1537
+ #
1535
1538
  # * `Storage Gateway` for AWS Storage Gateway
1536
1539
  #
1537
1540
  # @option params [String] :by_account_id
1538
1541
  # The account ID to list the jobs from. Returns only backup jobs
1539
1542
  # associated with the specified account ID.
1540
1543
  #
1544
+ # If used from an AWS Organizations management account, passing `*`
1545
+ # returns all jobs across the organization.
1546
+ #
1541
1547
  # @return [Types::ListBackupJobsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1542
1548
  #
1543
1549
  # * {Types::ListBackupJobsOutput#backup_jobs #backup_jobs} => Array&lt;Types::BackupJob&gt;
@@ -1889,6 +1895,8 @@ module Aws::Backup
1889
1895
  #
1890
1896
  # * `RDS` for Amazon Relational Database Service
1891
1897
  #
1898
+ # * `Aurora` for Amazon Aurora
1899
+ #
1892
1900
  # * `Storage Gateway` for AWS Storage Gateway
1893
1901
  #
1894
1902
  # @option params [String] :by_destination_vault_arn
@@ -2351,12 +2359,15 @@ module Aws::Backup
2351
2359
  #
2352
2360
  # @option params [Integer] :start_window_minutes
2353
2361
  # A value in minutes after a backup is scheduled before a job will be
2354
- # canceled if it doesn't start successfully. This value is optional.
2362
+ # canceled if it doesn't start successfully. This value is optional,
2363
+ # and the default is 8 hours.
2355
2364
  #
2356
2365
  # @option params [Integer] :complete_window_minutes
2357
- # A value in minutes after a backup job is successfully started before
2358
- # it must be completed or it will be canceled by AWS Backup. This value
2359
- # is optional.
2366
+ # A value in minutes during which a successfully started backup must
2367
+ # complete, or else AWS Backup will cancel the job. This value is
2368
+ # optional. This value begins counting down from when the backup was
2369
+ # scheduled. It does not add additional time for `StartWindowMinutes`,
2370
+ # or if the backup started later than scheduled.
2360
2371
  #
2361
2372
  # @option params [Types::Lifecycle] :lifecycle
2362
2373
  # The lifecycle defines when a protected resource is transitioned to
@@ -2370,6 +2381,9 @@ module Aws::Backup
2370
2381
  # setting. The “transition to cold after days” setting cannot be changed
2371
2382
  # after a backup has been transitioned to cold.
2372
2383
  #
2384
+ # Only Amazon EFS file system backups can be transitioned to cold
2385
+ # storage.
2386
+ #
2373
2387
  # @option params [Hash<String,String>] :recovery_point_tags
2374
2388
  # To help organize your resources, you can assign your own metadata to
2375
2389
  # the resources that you create. Each tag is a key-value pair.
@@ -2461,6 +2475,9 @@ module Aws::Backup
2461
2475
  # after days” setting. The “transition to cold after days” setting
2462
2476
  # cannot be changed after a backup has been transitioned to cold.
2463
2477
  #
2478
+ # Only Amazon EFS file system backups can be transitioned to cold
2479
+ # storage.
2480
+ #
2464
2481
  # @return [Types::StartCopyJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2465
2482
  #
2466
2483
  # * {Types::StartCopyJobOutput#copy_job_id #copy_job_id} => String
@@ -2537,10 +2554,11 @@ module Aws::Backup
2537
2554
  # * `newFileSystem`\: A Boolean value that, if true, specifies that the
2538
2555
  # recovery point is restored to a new Amazon EFS file system.
2539
2556
  #
2540
- # * `ItemsToRestore `\: A serialized list of up to five strings where
2541
- # each string is a file path. Use `ItemsToRestore` to restore specific
2557
+ # * `ItemsToRestore `\: An array of one to five strings where each
2558
+ # string is a file path. Use `ItemsToRestore` to restore specific
2542
2559
  # files or directories rather than the entire file system. This
2543
- # parameter is optional.
2560
+ # parameter is optional. For example,
2561
+ # `"itemsToRestore":"["/my.test"]"`.
2544
2562
  #
2545
2563
  # @option params [required, String] :iam_role_arn
2546
2564
  # The Amazon Resource Name (ARN) of the IAM role that AWS Backup uses to
@@ -2565,6 +2583,8 @@ module Aws::Backup
2565
2583
  #
2566
2584
  # * `RDS` for Amazon Relational Database Service
2567
2585
  #
2586
+ # * `Aurora` for Amazon Aurora
2587
+ #
2568
2588
  # * `Storage Gateway` for AWS Storage Gateway
2569
2589
  #
2570
2590
  # @return [Types::StartRestoreJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -2759,7 +2779,7 @@ module Aws::Backup
2759
2779
  req.send_request(options)
2760
2780
  end
2761
2781
 
2762
- # Updates the current global settings for the AWS Account. Use the
2782
+ # Updates the current global settings for the AWS account. Use the
2763
2783
  # `DescribeGlobalSettings` API to determine the current settings.
2764
2784
  #
2765
2785
  # @option params [Hash<String,String>] :global_settings
@@ -2796,6 +2816,9 @@ module Aws::Backup
2796
2816
  # setting. The “transition to cold after days” setting cannot be changed
2797
2817
  # after a backup has been transitioned to cold.
2798
2818
  #
2819
+ # Only Amazon EFS file system backups can be transitioned to cold
2820
+ # storage.
2821
+ #
2799
2822
  # @option params [required, String] :backup_vault_name
2800
2823
  # The name of a logical container where backups are stored. Backup
2801
2824
  # vaults are identified by names that are unique to the account used to
@@ -2898,7 +2921,7 @@ module Aws::Backup
2898
2921
  params: params,
2899
2922
  config: config)
2900
2923
  context[:gem_name] = 'aws-sdk-backup'
2901
- context[:gem_version] = '1.25.0'
2924
+ context[:gem_version] = '1.26.0'
2902
2925
  Seahorse::Client::Request.new(handlers, context)
2903
2926
  end
2904
2927
 
@@ -23,10 +23,16 @@ module Aws::Backup
23
23
  # }
24
24
  #
25
25
  # @!attribute [rw] resource_type
26
- # The type of AWS resource to be backed up. For VSS Windows backups,
27
- # the only supported resource type is Amazon EC2.
26
+ # Specifies an object containing resource type and backup options. The
27
+ # only supported resource type is Amazon EC2 instances with Windows
28
+ # VSS. For an CloudFormation example, see the [sample CloudFormation
29
+ # template to enable Windows VSS][1] in the *AWS Backup User Guide*.
28
30
  #
29
31
  # Valid values: `EC2`.
32
+ #
33
+ #
34
+ #
35
+ # [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/integrate-cloudformation-with-aws-backup.html
30
36
  # @return [String]
31
37
  #
32
38
  # @!attribute [rw] backup_options
@@ -160,8 +166,11 @@ module Aws::Backup
160
166
  # @return [Integer]
161
167
  #
162
168
  # @!attribute [rw] iam_role_arn
163
- # Specifies the IAM role ARN used to create the target recovery point;
164
- # for example, `arn:aws:iam::123456789012:role/S3Access`.
169
+ # Specifies the IAM role ARN used to create the target recovery point.
170
+ # IAM roles other than the default role must include either
171
+ # `AWSBackup` or `AwsBackup` in the role name. For example,
172
+ # `arn:aws:iam::123456789012:role/AWSBackupRDSAccess`. Role names
173
+ # without those strings lack permissions to perform backup jobs.
165
174
  # @return [String]
166
175
  #
167
176
  # @!attribute [rw] created_by
@@ -475,6 +484,9 @@ module Aws::Backup
475
484
  # must be 90 days greater than the “transition to cold after days”
476
485
  # setting. The “transition to cold after days” setting cannot be
477
486
  # changed after a backup has been transitioned to cold.
487
+ #
488
+ # Only Amazon EFS file system backups can be transitioned to cold
489
+ # storage.
478
490
  # @return [Types::Lifecycle]
479
491
  #
480
492
  # @!attribute [rw] recovery_point_tags
@@ -574,6 +586,9 @@ module Aws::Backup
574
586
  # must be 90 days greater than the “transition to cold after days”
575
587
  # setting. The “transition to cold after days” setting cannot be
576
588
  # changed after a backup has been transitioned to cold.
589
+ #
590
+ # Only Amazon EFS file system backups can be transitioned to cold
591
+ # storage.
577
592
  # @return [Types::Lifecycle]
578
593
  #
579
594
  # @!attribute [rw] recovery_point_tags
@@ -637,7 +652,8 @@ module Aws::Backup
637
652
  # @!attribute [rw] list_of_tags
638
653
  # An array of conditions used to specify a set of resources to assign
639
654
  # to a backup plan; for example, `"StringEquals":
640
- # \{"ec2:ResourceTag/Department": "accounting"`.
655
+ # \{"ec2:ResourceTag/Department": "accounting"`. Assigns the backup
656
+ # plan to every resource with at least one matching tag.
641
657
  # @return [Array<Types::Condition>]
642
658
  #
643
659
  # @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/BackupSelection AWS API Documentation
@@ -762,6 +778,9 @@ module Aws::Backup
762
778
  # setting. The “transition to cold after days” setting cannot be changed
763
779
  # after a backup has been transitioned to cold.
764
780
  #
781
+ # Only Amazon EFS file system backups can be transitioned to cold
782
+ # storage.
783
+ #
765
784
  # @!attribute [rw] move_to_cold_storage_at
766
785
  # A timestamp that specifies when to transition a recovery point to
767
786
  # cold storage.
@@ -844,6 +863,9 @@ module Aws::Backup
844
863
  # cold after days” setting. The “transition to cold after days”
845
864
  # setting cannot be changed after a backup has been transitioned to
846
865
  # cold.
866
+ #
867
+ # Only Amazon EFS file system backups can be transitioned to cold
868
+ # storage.
847
869
  # @return [Types::Lifecycle]
848
870
  #
849
871
  # @!attribute [rw] destination_backup_vault_arn
@@ -1167,7 +1189,7 @@ module Aws::Backup
1167
1189
  # The name of a logical container where backups are stored. Backup
1168
1190
  # vaults are identified by names that are unique to the account used
1169
1191
  # to create them and the AWS Region where they are created. They
1170
- # consist of lowercase letters, numbers, and hyphens.
1192
+ # consist of letters, numbers, and hyphens.
1171
1193
  # @return [String]
1172
1194
  #
1173
1195
  # @!attribute [rw] backup_vault_tags
@@ -1704,7 +1726,7 @@ module Aws::Backup
1704
1726
  # @return [Hash<String,String>]
1705
1727
  #
1706
1728
  # @!attribute [rw] last_update_time
1707
- # The date and time that the global settings was last updated. This
1729
+ # The date and time that the global settings were last updated. This
1708
1730
  # update is in Unix format and Coordinated Universal Time (UTC). The
1709
1731
  # value of `LastUpdateTime` is accurate to milliseconds. For example,
1710
1732
  # the value 1516925490.087 represents Friday, January 26, 2018
@@ -1888,6 +1910,9 @@ module Aws::Backup
1888
1910
  # setting must be 90 days greater than the “transition to cold after
1889
1911
  # days” setting. The “transition to cold after days” setting cannot be
1890
1912
  # changed after a backup has been transitioned to cold.
1913
+ #
1914
+ # Only Amazon EFS file system backups can be transitioned to cold
1915
+ # storage.
1891
1916
  # @return [Types::Lifecycle]
1892
1917
  #
1893
1918
  # @!attribute [rw] encryption_key_arn
@@ -2500,6 +2525,8 @@ module Aws::Backup
2500
2525
  #
2501
2526
  # * `RDS` for Amazon Relational Database Service
2502
2527
  #
2528
+ # * `Aurora` for Amazon Aurora
2529
+ #
2503
2530
  # * `Storage Gateway` for AWS Storage Gateway
2504
2531
  # @return [Array<String>]
2505
2532
  #
@@ -2572,6 +2599,9 @@ module Aws::Backup
2572
2599
  # after days” setting. The “transition to cold after days” setting
2573
2600
  # cannot be changed after a backup has been transitioned to cold.
2574
2601
  #
2602
+ # Only Amazon EFS file system backups can be transitioned to cold
2603
+ # storage.
2604
+ #
2575
2605
  # @note When making an API call, you may pass Lifecycle
2576
2606
  # data as a hash:
2577
2607
  #
@@ -2690,12 +2720,17 @@ module Aws::Backup
2690
2720
  #
2691
2721
  # * `RDS` for Amazon Relational Database Service
2692
2722
  #
2723
+ # * `Aurora` for Amazon Aurora
2724
+ #
2693
2725
  # * `Storage Gateway` for AWS Storage Gateway
2694
2726
  # @return [String]
2695
2727
  #
2696
2728
  # @!attribute [rw] by_account_id
2697
2729
  # The account ID to list the jobs from. Returns only backup jobs
2698
2730
  # associated with the specified account ID.
2731
+ #
2732
+ # If used from an AWS Organizations management account, passing `*`
2733
+ # returns all jobs across the organization.
2699
2734
  # @return [String]
2700
2735
  #
2701
2736
  # @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListBackupJobsInput AWS API Documentation
@@ -3057,6 +3092,8 @@ module Aws::Backup
3057
3092
  #
3058
3093
  # * `RDS` for Amazon Relational Database Service
3059
3094
  #
3095
+ # * `Aurora` for Amazon Aurora
3096
+ #
3060
3097
  # * `Storage Gateway` for AWS Storage Gateway
3061
3098
  # @return [String]
3062
3099
  #
@@ -3648,6 +3685,9 @@ module Aws::Backup
3648
3685
  # must be 90 days greater than the “transition to cold after days”
3649
3686
  # setting. The “transition to cold after days” setting cannot be
3650
3687
  # changed after a backup has been transitioned to cold.
3688
+ #
3689
+ # Only Amazon EFS file system backups can be transitioned to cold
3690
+ # storage.
3651
3691
  # @return [Types::Lifecycle]
3652
3692
  #
3653
3693
  # @!attribute [rw] encryption_key_arn
@@ -3962,13 +4002,16 @@ module Aws::Backup
3962
4002
  #
3963
4003
  # @!attribute [rw] start_window_minutes
3964
4004
  # A value in minutes after a backup is scheduled before a job will be
3965
- # canceled if it doesn't start successfully. This value is optional.
4005
+ # canceled if it doesn't start successfully. This value is optional,
4006
+ # and the default is 8 hours.
3966
4007
  # @return [Integer]
3967
4008
  #
3968
4009
  # @!attribute [rw] complete_window_minutes
3969
- # A value in minutes after a backup job is successfully started before
3970
- # it must be completed or it will be canceled by AWS Backup. This
3971
- # value is optional.
4010
+ # A value in minutes during which a successfully started backup must
4011
+ # complete, or else AWS Backup will cancel the job. This value is
4012
+ # optional. This value begins counting down from when the backup was
4013
+ # scheduled. It does not add additional time for `StartWindowMinutes`,
4014
+ # or if the backup started later than scheduled.
3972
4015
  # @return [Integer]
3973
4016
  #
3974
4017
  # @!attribute [rw] lifecycle
@@ -3982,6 +4025,9 @@ module Aws::Backup
3982
4025
  # must be 90 days greater than the “transition to cold after days”
3983
4026
  # setting. The “transition to cold after days” setting cannot be
3984
4027
  # changed after a backup has been transitioned to cold.
4028
+ #
4029
+ # Only Amazon EFS file system backups can be transitioned to cold
4030
+ # storage.
3985
4031
  # @return [Types::Lifecycle]
3986
4032
  #
3987
4033
  # @!attribute [rw] recovery_point_tags
@@ -4025,7 +4071,7 @@ module Aws::Backup
4025
4071
  # @return [String]
4026
4072
  #
4027
4073
  # @!attribute [rw] creation_date
4028
- # The date and time that a backup job is started, in Unix format and
4074
+ # The date and time that a backup job is created, in Unix format and
4029
4075
  # Coordinated Universal Time (UTC). The value of `CreationDate` is
4030
4076
  # accurate to milliseconds. For example, the value 1516925490.087
4031
4077
  # represents Friday, January 26, 2018 12:11:30.087 AM.
@@ -4096,6 +4142,9 @@ module Aws::Backup
4096
4142
  # cold after days” setting. The “transition to cold after days”
4097
4143
  # setting cannot be changed after a backup has been transitioned to
4098
4144
  # cold.
4145
+ #
4146
+ # Only Amazon EFS file system backups can be transitioned to cold
4147
+ # storage.
4099
4148
  # @return [Types::Lifecycle]
4100
4149
  #
4101
4150
  # @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/StartCopyJobInput AWS API Documentation
@@ -4116,7 +4165,7 @@ module Aws::Backup
4116
4165
  # @return [String]
4117
4166
  #
4118
4167
  # @!attribute [rw] creation_date
4119
- # The date and time that a copy job is started, in Unix format and
4168
+ # The date and time that a copy job is created, in Unix format and
4120
4169
  # Coordinated Universal Time (UTC). The value of `CreationDate` is
4121
4170
  # accurate to milliseconds. For example, the value 1516925490.087
4122
4171
  # represents Friday, January 26, 2018 12:11:30.087 AM.
@@ -4185,10 +4234,11 @@ module Aws::Backup
4185
4234
  # * `newFileSystem`\: A Boolean value that, if true, specifies that
4186
4235
  # the recovery point is restored to a new Amazon EFS file system.
4187
4236
  #
4188
- # * `ItemsToRestore `\: A serialized list of up to five strings where
4189
- # each string is a file path. Use `ItemsToRestore` to restore
4190
- # specific files or directories rather than the entire file system.
4191
- # This parameter is optional.
4237
+ # * `ItemsToRestore `\: An array of one to five strings where each
4238
+ # string is a file path. Use `ItemsToRestore` to restore specific
4239
+ # files or directories rather than the entire file system. This
4240
+ # parameter is optional. For example,
4241
+ # `"itemsToRestore":"["/my.test"]"`.
4192
4242
  # @return [Hash<String,String>]
4193
4243
  #
4194
4244
  # @!attribute [rw] iam_role_arn
@@ -4216,6 +4266,8 @@ module Aws::Backup
4216
4266
  #
4217
4267
  # * `RDS` for Amazon Relational Database Service
4218
4268
  #
4269
+ # * `Aurora` for Amazon Aurora
4270
+ #
4219
4271
  # * `Storage Gateway` for AWS Storage Gateway
4220
4272
  # @return [String]
4221
4273
  #
@@ -4507,6 +4559,9 @@ module Aws::Backup
4507
4559
  # must be 90 days greater than the “transition to cold after days”
4508
4560
  # setting. The “transition to cold after days” setting cannot be
4509
4561
  # changed after a backup has been transitioned to cold.
4562
+ #
4563
+ # Only Amazon EFS file system backups can be transitioned to cold
4564
+ # storage.
4510
4565
  # @return [Types::Lifecycle]
4511
4566
  #
4512
4567
  # @!attribute [rw] calculated_lifecycle
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.25.0
4
+ version: 1.26.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-11-18 00:00:00.000000000 Z
11
+ date: 2021-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core