aws-sdk-backup 1.100.0 → 1.102.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 +282 -1
- data/lib/aws-sdk-backup/client_api.rb +170 -0
- data/lib/aws-sdk-backup/types.rb +448 -4
- data/lib/aws-sdk-backup.rb +1 -1
- data/sig/client.rbs +97 -8
- data/sig/types.rbs +104 -0
- metadata +1 -1
data/lib/aws-sdk-backup/types.rb
CHANGED
|
@@ -643,6 +643,15 @@ module Aws::Backup
|
|
|
643
643
|
# created.
|
|
644
644
|
# @return [String]
|
|
645
645
|
#
|
|
646
|
+
# @!attribute [rw] target_logically_air_gapped_backup_vault_arn
|
|
647
|
+
# The ARN of a logically air-gapped vault. ARN must be in the same
|
|
648
|
+
# account and Region. If provided, supported fully managed resources
|
|
649
|
+
# back up directly to logically air-gapped vault, while other
|
|
650
|
+
# supported resources create a temporary (billable) snapshot in backup
|
|
651
|
+
# vault, then copy it to logically air-gapped vault. Unsupported
|
|
652
|
+
# resources only back up to the specified backup vault.
|
|
653
|
+
# @return [String]
|
|
654
|
+
#
|
|
646
655
|
# @!attribute [rw] schedule_expression
|
|
647
656
|
# A cron expression in UTC specifying when Backup initiates a backup
|
|
648
657
|
# job. When no CRON expression is provided, Backup will use the
|
|
@@ -750,6 +759,7 @@ module Aws::Backup
|
|
|
750
759
|
class BackupRule < Struct.new(
|
|
751
760
|
:rule_name,
|
|
752
761
|
:target_backup_vault_name,
|
|
762
|
+
:target_logically_air_gapped_backup_vault_arn,
|
|
753
763
|
:schedule_expression,
|
|
754
764
|
:start_window_minutes,
|
|
755
765
|
:completion_window_minutes,
|
|
@@ -778,6 +788,15 @@ module Aws::Backup
|
|
|
778
788
|
# created.
|
|
779
789
|
# @return [String]
|
|
780
790
|
#
|
|
791
|
+
# @!attribute [rw] target_logically_air_gapped_backup_vault_arn
|
|
792
|
+
# The ARN of a logically air-gapped vault. ARN must be in the same
|
|
793
|
+
# account and Region. If provided, supported fully managed resources
|
|
794
|
+
# back up directly to logically air-gapped vault, while other
|
|
795
|
+
# supported resources create a temporary (billable) snapshot in backup
|
|
796
|
+
# vault, then copy it to logically air-gapped vault. Unsupported
|
|
797
|
+
# resources only back up to the specified backup vault.
|
|
798
|
+
# @return [String]
|
|
799
|
+
#
|
|
781
800
|
# @!attribute [rw] schedule_expression
|
|
782
801
|
# A CRON expression in UTC specifying when Backup initiates a backup
|
|
783
802
|
# job. When no CRON expression is provided, Backup will use the
|
|
@@ -870,6 +889,7 @@ module Aws::Backup
|
|
|
870
889
|
class BackupRuleInput < Struct.new(
|
|
871
890
|
:rule_name,
|
|
872
891
|
:target_backup_vault_name,
|
|
892
|
+
:target_logically_air_gapped_backup_vault_arn,
|
|
873
893
|
:schedule_expression,
|
|
874
894
|
:start_window_minutes,
|
|
875
895
|
:completion_window_minutes,
|
|
@@ -1572,6 +1592,12 @@ module Aws::Backup
|
|
|
1572
1592
|
# to initiate the recovery point backup.
|
|
1573
1593
|
# @return [Types::RecoveryPointCreator]
|
|
1574
1594
|
#
|
|
1595
|
+
# @!attribute [rw] created_by_backup_job_id
|
|
1596
|
+
# The backup job ID that initiated this copy job. Only applicable to
|
|
1597
|
+
# scheduled copy jobs and automatic copy jobs to logically air-gapped
|
|
1598
|
+
# vault.
|
|
1599
|
+
# @return [String]
|
|
1600
|
+
#
|
|
1575
1601
|
# @!attribute [rw] resource_type
|
|
1576
1602
|
# The type of Amazon Web Services resource to be copied; for example,
|
|
1577
1603
|
# an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon
|
|
@@ -1651,6 +1677,7 @@ module Aws::Backup
|
|
|
1651
1677
|
:backup_size_in_bytes,
|
|
1652
1678
|
:iam_role_arn,
|
|
1653
1679
|
:created_by,
|
|
1680
|
+
:created_by_backup_job_id,
|
|
1654
1681
|
:resource_type,
|
|
1655
1682
|
:parent_job_id,
|
|
1656
1683
|
:is_parent,
|
|
@@ -2454,6 +2481,70 @@ module Aws::Backup
|
|
|
2454
2481
|
include Aws::Structure
|
|
2455
2482
|
end
|
|
2456
2483
|
|
|
2484
|
+
# @!attribute [rw] tiering_configuration
|
|
2485
|
+
# A tiering configuration must contain a unique
|
|
2486
|
+
# `TieringConfigurationName` string you create and must contain a
|
|
2487
|
+
# `BackupVaultName` and `ResourceSelection`. You may optionally
|
|
2488
|
+
# include a `CreatorRequestId` string.
|
|
2489
|
+
#
|
|
2490
|
+
# The `TieringConfigurationName` is a unique string that is the name
|
|
2491
|
+
# of the tiering configuration. This cannot be changed after creation,
|
|
2492
|
+
# and it must consist of only alphanumeric characters and underscores.
|
|
2493
|
+
# @return [Types::TieringConfigurationInputForCreate]
|
|
2494
|
+
#
|
|
2495
|
+
# @!attribute [rw] tiering_configuration_tags
|
|
2496
|
+
# The tags to assign to the tiering configuration.
|
|
2497
|
+
# @return [Hash<String,String>]
|
|
2498
|
+
#
|
|
2499
|
+
# @!attribute [rw] creator_request_id
|
|
2500
|
+
# This is a unique string that identifies the request and allows
|
|
2501
|
+
# failed requests to be retried without the risk of running the
|
|
2502
|
+
# operation twice. This parameter is optional. If used, this parameter
|
|
2503
|
+
# must contain 1 to 50 alphanumeric or '-\_.' characters.
|
|
2504
|
+
#
|
|
2505
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2506
|
+
# not need to pass this option.
|
|
2507
|
+
# @return [String]
|
|
2508
|
+
#
|
|
2509
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/CreateTieringConfigurationInput AWS API Documentation
|
|
2510
|
+
#
|
|
2511
|
+
class CreateTieringConfigurationInput < Struct.new(
|
|
2512
|
+
:tiering_configuration,
|
|
2513
|
+
:tiering_configuration_tags,
|
|
2514
|
+
:creator_request_id)
|
|
2515
|
+
SENSITIVE = [:tiering_configuration_tags]
|
|
2516
|
+
include Aws::Structure
|
|
2517
|
+
end
|
|
2518
|
+
|
|
2519
|
+
# @!attribute [rw] tiering_configuration_arn
|
|
2520
|
+
# An Amazon Resource Name (ARN) that uniquely identifies the created
|
|
2521
|
+
# tiering configuration.
|
|
2522
|
+
# @return [String]
|
|
2523
|
+
#
|
|
2524
|
+
# @!attribute [rw] tiering_configuration_name
|
|
2525
|
+
# This unique string is the name of the tiering configuration.
|
|
2526
|
+
#
|
|
2527
|
+
# The name cannot be changed after creation. The name consists of only
|
|
2528
|
+
# alphanumeric characters and underscores. Maximum length is 200.
|
|
2529
|
+
# @return [String]
|
|
2530
|
+
#
|
|
2531
|
+
# @!attribute [rw] creation_time
|
|
2532
|
+
# The date and time a tiering configuration was created, in Unix
|
|
2533
|
+
# format and Coordinated Universal Time (UTC). The value of
|
|
2534
|
+
# `CreationTime` is accurate to milliseconds. For example, the value
|
|
2535
|
+
# 1516925490.087 represents Friday, January 26, 2018 12:11:30.087AM.
|
|
2536
|
+
# @return [Time]
|
|
2537
|
+
#
|
|
2538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/CreateTieringConfigurationOutput AWS API Documentation
|
|
2539
|
+
#
|
|
2540
|
+
class CreateTieringConfigurationOutput < Struct.new(
|
|
2541
|
+
:tiering_configuration_arn,
|
|
2542
|
+
:tiering_configuration_name,
|
|
2543
|
+
:creation_time)
|
|
2544
|
+
SENSITIVE = []
|
|
2545
|
+
include Aws::Structure
|
|
2546
|
+
end
|
|
2547
|
+
|
|
2457
2548
|
# This is a resource filter containing FromDate: DateTime and ToDate:
|
|
2458
2549
|
# DateTime. Both values are required. Future DateTime values are not
|
|
2459
2550
|
# permitted.
|
|
@@ -2684,6 +2775,22 @@ module Aws::Backup
|
|
|
2684
2775
|
include Aws::Structure
|
|
2685
2776
|
end
|
|
2686
2777
|
|
|
2778
|
+
# @!attribute [rw] tiering_configuration_name
|
|
2779
|
+
# The unique name of a tiering configuration.
|
|
2780
|
+
# @return [String]
|
|
2781
|
+
#
|
|
2782
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DeleteTieringConfigurationInput AWS API Documentation
|
|
2783
|
+
#
|
|
2784
|
+
class DeleteTieringConfigurationInput < Struct.new(
|
|
2785
|
+
:tiering_configuration_name)
|
|
2786
|
+
SENSITIVE = []
|
|
2787
|
+
include Aws::Structure
|
|
2788
|
+
end
|
|
2789
|
+
|
|
2790
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DeleteTieringConfigurationOutput AWS API Documentation
|
|
2791
|
+
#
|
|
2792
|
+
class DeleteTieringConfigurationOutput < Aws::EmptyStructure; end
|
|
2793
|
+
|
|
2687
2794
|
# A dependent Amazon Web Services service or resource returned an error
|
|
2688
2795
|
# to the Backup service, and the action cannot be completed.
|
|
2689
2796
|
#
|
|
@@ -3281,8 +3388,9 @@ module Aws::Backup
|
|
|
3281
3388
|
class DescribeGlobalSettingsInput < Aws::EmptyStructure; end
|
|
3282
3389
|
|
|
3283
3390
|
# @!attribute [rw] global_settings
|
|
3284
|
-
# The status of the flags `isCrossAccountBackupEnabled
|
|
3285
|
-
# `isMpaEnabled` ('Mpa' refers to multi-party approval)
|
|
3391
|
+
# The status of the flags `isCrossAccountBackupEnabled`,
|
|
3392
|
+
# `isMpaEnabled` ('Mpa' refers to multi-party approval), and
|
|
3393
|
+
# `isDelegatedAdministratorEnabled`.
|
|
3286
3394
|
# @return [Hash<String,String>]
|
|
3287
3395
|
#
|
|
3288
3396
|
# @!attribute [rw] last_update_time
|
|
@@ -4783,6 +4891,31 @@ module Aws::Backup
|
|
|
4783
4891
|
include Aws::Structure
|
|
4784
4892
|
end
|
|
4785
4893
|
|
|
4894
|
+
# @!attribute [rw] tiering_configuration_name
|
|
4895
|
+
# The unique name of a tiering configuration.
|
|
4896
|
+
# @return [String]
|
|
4897
|
+
#
|
|
4898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/GetTieringConfigurationInput AWS API Documentation
|
|
4899
|
+
#
|
|
4900
|
+
class GetTieringConfigurationInput < Struct.new(
|
|
4901
|
+
:tiering_configuration_name)
|
|
4902
|
+
SENSITIVE = []
|
|
4903
|
+
include Aws::Structure
|
|
4904
|
+
end
|
|
4905
|
+
|
|
4906
|
+
# @!attribute [rw] tiering_configuration
|
|
4907
|
+
# Specifies the body of a tiering configuration. Includes
|
|
4908
|
+
# `TieringConfigurationName`.
|
|
4909
|
+
# @return [Types::TieringConfiguration]
|
|
4910
|
+
#
|
|
4911
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/GetTieringConfigurationOutput AWS API Documentation
|
|
4912
|
+
#
|
|
4913
|
+
class GetTieringConfigurationOutput < Struct.new(
|
|
4914
|
+
:tiering_configuration)
|
|
4915
|
+
SENSITIVE = []
|
|
4916
|
+
include Aws::Structure
|
|
4917
|
+
end
|
|
4918
|
+
|
|
4786
4919
|
# This is an optional array within a BackupRule.
|
|
4787
4920
|
#
|
|
4788
4921
|
# IndexAction consists of one ResourceTypes.
|
|
@@ -5155,12 +5288,19 @@ module Aws::Backup
|
|
|
5155
5288
|
# lifecycle settings.
|
|
5156
5289
|
# @return [Boolean]
|
|
5157
5290
|
#
|
|
5291
|
+
# @!attribute [rw] delete_after_event
|
|
5292
|
+
# The event after which a recovery point is deleted. A recovery point
|
|
5293
|
+
# with both `DeleteAfterDays` and `DeleteAfterEvent` will delete after
|
|
5294
|
+
# whichever condition is satisfied first. Not valid as an input.
|
|
5295
|
+
# @return [String]
|
|
5296
|
+
#
|
|
5158
5297
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/Lifecycle AWS API Documentation
|
|
5159
5298
|
#
|
|
5160
5299
|
class Lifecycle < Struct.new(
|
|
5161
5300
|
:move_to_cold_storage_after_days,
|
|
5162
5301
|
:delete_after_days,
|
|
5163
|
-
:opt_in_to_archive_for_supported_resources
|
|
5302
|
+
:opt_in_to_archive_for_supported_resources,
|
|
5303
|
+
:delete_after_event)
|
|
5164
5304
|
SENSITIVE = []
|
|
5165
5305
|
include Aws::Structure
|
|
5166
5306
|
end
|
|
@@ -5965,6 +6105,10 @@ module Aws::Backup
|
|
|
5965
6105
|
# [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/monitoring.html
|
|
5966
6106
|
# @return [String]
|
|
5967
6107
|
#
|
|
6108
|
+
# @!attribute [rw] by_source_recovery_point_arn
|
|
6109
|
+
# Filters copy jobs by the specified source recovery point ARN.
|
|
6110
|
+
# @return [String]
|
|
6111
|
+
#
|
|
5968
6112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListCopyJobsInput AWS API Documentation
|
|
5969
6113
|
#
|
|
5970
6114
|
class ListCopyJobsInput < Struct.new(
|
|
@@ -5980,7 +6124,8 @@ module Aws::Backup
|
|
|
5980
6124
|
:by_complete_before,
|
|
5981
6125
|
:by_complete_after,
|
|
5982
6126
|
:by_parent_job_id,
|
|
5983
|
-
:by_message_category
|
|
6127
|
+
:by_message_category,
|
|
6128
|
+
:by_source_recovery_point_arn)
|
|
5984
6129
|
SENSITIVE = []
|
|
5985
6130
|
include Aws::Structure
|
|
5986
6131
|
end
|
|
@@ -7092,6 +7237,47 @@ module Aws::Backup
|
|
|
7092
7237
|
include Aws::Structure
|
|
7093
7238
|
end
|
|
7094
7239
|
|
|
7240
|
+
# @!attribute [rw] max_results
|
|
7241
|
+
# The maximum number of items to be returned.
|
|
7242
|
+
# @return [Integer]
|
|
7243
|
+
#
|
|
7244
|
+
# @!attribute [rw] next_token
|
|
7245
|
+
# The next item following a partial list of returned items. For
|
|
7246
|
+
# example, if a request is made to return `MaxResults` number of
|
|
7247
|
+
# items, `NextToken` allows you to return more items in your list
|
|
7248
|
+
# starting at the location pointed to by the next token.
|
|
7249
|
+
# @return [String]
|
|
7250
|
+
#
|
|
7251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListTieringConfigurationsInput AWS API Documentation
|
|
7252
|
+
#
|
|
7253
|
+
class ListTieringConfigurationsInput < Struct.new(
|
|
7254
|
+
:max_results,
|
|
7255
|
+
:next_token)
|
|
7256
|
+
SENSITIVE = []
|
|
7257
|
+
include Aws::Structure
|
|
7258
|
+
end
|
|
7259
|
+
|
|
7260
|
+
# @!attribute [rw] tiering_configurations
|
|
7261
|
+
# An array of tiering configurations returned by the
|
|
7262
|
+
# `ListTieringConfigurations` call.
|
|
7263
|
+
# @return [Array<Types::TieringConfigurationsListMember>]
|
|
7264
|
+
#
|
|
7265
|
+
# @!attribute [rw] next_token
|
|
7266
|
+
# The next item following a partial list of returned items. For
|
|
7267
|
+
# example, if a request is made to return `MaxResults` number of
|
|
7268
|
+
# items, `NextToken` allows you to return more items in your list
|
|
7269
|
+
# starting at the location pointed to by the next token.
|
|
7270
|
+
# @return [String]
|
|
7271
|
+
#
|
|
7272
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListTieringConfigurationsOutput AWS API Documentation
|
|
7273
|
+
#
|
|
7274
|
+
class ListTieringConfigurationsOutput < Struct.new(
|
|
7275
|
+
:tiering_configurations,
|
|
7276
|
+
:next_token)
|
|
7277
|
+
SENSITIVE = []
|
|
7278
|
+
include Aws::Structure
|
|
7279
|
+
end
|
|
7280
|
+
|
|
7095
7281
|
# Indicates that a required parameter is missing.
|
|
7096
7282
|
#
|
|
7097
7283
|
# @!attribute [rw] code
|
|
@@ -8071,6 +8257,41 @@ module Aws::Backup
|
|
|
8071
8257
|
include Aws::Structure
|
|
8072
8258
|
end
|
|
8073
8259
|
|
|
8260
|
+
# This contains metadata about resource selection for tiering
|
|
8261
|
+
# configurations.
|
|
8262
|
+
#
|
|
8263
|
+
# You can specify up to 5 different resource selections per tiering
|
|
8264
|
+
# configuration. Data moved to lower-cost tier remains there until
|
|
8265
|
+
# deletion (one-way transition).
|
|
8266
|
+
#
|
|
8267
|
+
# @!attribute [rw] resources
|
|
8268
|
+
# An array of strings that either contains ARNs of the associated
|
|
8269
|
+
# resources or contains a wildcard `*` to specify all resources. You
|
|
8270
|
+
# can specify up to 100 specific resources per tiering configuration.
|
|
8271
|
+
# @return [Array<String>]
|
|
8272
|
+
#
|
|
8273
|
+
# @!attribute [rw] tiering_down_settings_in_days
|
|
8274
|
+
# The number of days after creation within a backup vault that an
|
|
8275
|
+
# object can transition to the low cost warm storage tier. Must be a
|
|
8276
|
+
# positive integer between 60 and 36500 days.
|
|
8277
|
+
# @return [Integer]
|
|
8278
|
+
#
|
|
8279
|
+
# @!attribute [rw] resource_type
|
|
8280
|
+
# The type of Amazon Web Services resource; for example, `S3` for
|
|
8281
|
+
# Amazon S3. For tiering configurations, this is currently limited to
|
|
8282
|
+
# `S3`.
|
|
8283
|
+
# @return [String]
|
|
8284
|
+
#
|
|
8285
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ResourceSelection AWS API Documentation
|
|
8286
|
+
#
|
|
8287
|
+
class ResourceSelection < Struct.new(
|
|
8288
|
+
:resources,
|
|
8289
|
+
:tiering_down_settings_in_days,
|
|
8290
|
+
:resource_type)
|
|
8291
|
+
SENSITIVE = []
|
|
8292
|
+
include Aws::Structure
|
|
8293
|
+
end
|
|
8294
|
+
|
|
8074
8295
|
# Contains information about a restore access backup vault.
|
|
8075
8296
|
#
|
|
8076
8297
|
# @!attribute [rw] restore_access_backup_vault_arn
|
|
@@ -9067,6 +9288,15 @@ module Aws::Backup
|
|
|
9067
9288
|
# created.
|
|
9068
9289
|
# @return [String]
|
|
9069
9290
|
#
|
|
9291
|
+
# @!attribute [rw] logically_air_gapped_backup_vault_arn
|
|
9292
|
+
# The ARN of a logically air-gapped vault. ARN must be in the same
|
|
9293
|
+
# account and Region. If provided, supported fully managed resources
|
|
9294
|
+
# back up directly to logically air-gapped vault, while other
|
|
9295
|
+
# supported resources create a temporary (billable) snapshot in backup
|
|
9296
|
+
# vault, then copy it to logically air-gapped vault. Unsupported
|
|
9297
|
+
# resources only back up to the specified backup vault.
|
|
9298
|
+
# @return [String]
|
|
9299
|
+
#
|
|
9070
9300
|
# @!attribute [rw] resource_arn
|
|
9071
9301
|
# An Amazon Resource Name (ARN) that uniquely identifies a resource.
|
|
9072
9302
|
# The format of the ARN depends on the resource type.
|
|
@@ -9176,6 +9406,7 @@ module Aws::Backup
|
|
|
9176
9406
|
#
|
|
9177
9407
|
class StartBackupJobInput < Struct.new(
|
|
9178
9408
|
:backup_vault_name,
|
|
9409
|
+
:logically_air_gapped_backup_vault_arn,
|
|
9179
9410
|
:resource_arn,
|
|
9180
9411
|
:iam_role_arn,
|
|
9181
9412
|
:idempotency_token,
|
|
@@ -9539,6 +9770,162 @@ module Aws::Backup
|
|
|
9539
9770
|
include Aws::Structure
|
|
9540
9771
|
end
|
|
9541
9772
|
|
|
9773
|
+
# This contains metadata about a tiering configuration.
|
|
9774
|
+
#
|
|
9775
|
+
# @!attribute [rw] tiering_configuration_name
|
|
9776
|
+
# The unique name of the tiering configuration. This cannot be changed
|
|
9777
|
+
# after creation, and it must consist of only alphanumeric characters
|
|
9778
|
+
# and underscores.
|
|
9779
|
+
# @return [String]
|
|
9780
|
+
#
|
|
9781
|
+
# @!attribute [rw] tiering_configuration_arn
|
|
9782
|
+
# An Amazon Resource Name (ARN) that uniquely identifies the tiering
|
|
9783
|
+
# configuration.
|
|
9784
|
+
# @return [String]
|
|
9785
|
+
#
|
|
9786
|
+
# @!attribute [rw] backup_vault_name
|
|
9787
|
+
# The name of the backup vault where the tiering configuration
|
|
9788
|
+
# applies. Use `*` to apply to all backup vaults.
|
|
9789
|
+
# @return [String]
|
|
9790
|
+
#
|
|
9791
|
+
# @!attribute [rw] resource_selection
|
|
9792
|
+
# An array of resource selection objects that specify which resources
|
|
9793
|
+
# are included in the tiering configuration and their tiering
|
|
9794
|
+
# settings.
|
|
9795
|
+
# @return [Array<Types::ResourceSelection>]
|
|
9796
|
+
#
|
|
9797
|
+
# @!attribute [rw] creator_request_id
|
|
9798
|
+
# This is a unique string that identifies the request and allows
|
|
9799
|
+
# failed requests to be retried without the risk of running the
|
|
9800
|
+
# operation twice.
|
|
9801
|
+
# @return [String]
|
|
9802
|
+
#
|
|
9803
|
+
# @!attribute [rw] creation_time
|
|
9804
|
+
# The date and time a tiering configuration was created, in Unix
|
|
9805
|
+
# format and Coordinated Universal Time (UTC). The value of
|
|
9806
|
+
# `CreationTime` is accurate to milliseconds. For example, the value
|
|
9807
|
+
# 1516925490.087 represents Friday, January 26, 2018 12:11:30.087AM.
|
|
9808
|
+
# @return [Time]
|
|
9809
|
+
#
|
|
9810
|
+
# @!attribute [rw] last_updated_time
|
|
9811
|
+
# The date and time a tiering configuration was updated, in Unix
|
|
9812
|
+
# format and Coordinated Universal Time (UTC). The value of
|
|
9813
|
+
# `LastUpdatedTime` is accurate to milliseconds. For example, the
|
|
9814
|
+
# value 1516925490.087 represents Friday, January 26, 2018
|
|
9815
|
+
# 12:11:30.087AM.
|
|
9816
|
+
# @return [Time]
|
|
9817
|
+
#
|
|
9818
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/TieringConfiguration AWS API Documentation
|
|
9819
|
+
#
|
|
9820
|
+
class TieringConfiguration < Struct.new(
|
|
9821
|
+
:tiering_configuration_name,
|
|
9822
|
+
:tiering_configuration_arn,
|
|
9823
|
+
:backup_vault_name,
|
|
9824
|
+
:resource_selection,
|
|
9825
|
+
:creator_request_id,
|
|
9826
|
+
:creation_time,
|
|
9827
|
+
:last_updated_time)
|
|
9828
|
+
SENSITIVE = []
|
|
9829
|
+
include Aws::Structure
|
|
9830
|
+
end
|
|
9831
|
+
|
|
9832
|
+
# This contains metadata about a tiering configuration for create
|
|
9833
|
+
# operations.
|
|
9834
|
+
#
|
|
9835
|
+
# @!attribute [rw] tiering_configuration_name
|
|
9836
|
+
# The unique name of the tiering configuration. This cannot be changed
|
|
9837
|
+
# after creation, and it must consist of only alphanumeric characters
|
|
9838
|
+
# and underscores.
|
|
9839
|
+
# @return [String]
|
|
9840
|
+
#
|
|
9841
|
+
# @!attribute [rw] backup_vault_name
|
|
9842
|
+
# The name of the backup vault where the tiering configuration
|
|
9843
|
+
# applies. Use `*` to apply to all backup vaults.
|
|
9844
|
+
# @return [String]
|
|
9845
|
+
#
|
|
9846
|
+
# @!attribute [rw] resource_selection
|
|
9847
|
+
# An array of resource selection objects that specify which resources
|
|
9848
|
+
# are included in the tiering configuration and their tiering
|
|
9849
|
+
# settings.
|
|
9850
|
+
# @return [Array<Types::ResourceSelection>]
|
|
9851
|
+
#
|
|
9852
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/TieringConfigurationInputForCreate AWS API Documentation
|
|
9853
|
+
#
|
|
9854
|
+
class TieringConfigurationInputForCreate < Struct.new(
|
|
9855
|
+
:tiering_configuration_name,
|
|
9856
|
+
:backup_vault_name,
|
|
9857
|
+
:resource_selection)
|
|
9858
|
+
SENSITIVE = []
|
|
9859
|
+
include Aws::Structure
|
|
9860
|
+
end
|
|
9861
|
+
|
|
9862
|
+
# This contains metadata about a tiering configuration for update
|
|
9863
|
+
# operations.
|
|
9864
|
+
#
|
|
9865
|
+
# @!attribute [rw] resource_selection
|
|
9866
|
+
# An array of resource selection objects that specify which resources
|
|
9867
|
+
# are included in the tiering configuration and their tiering
|
|
9868
|
+
# settings.
|
|
9869
|
+
# @return [Array<Types::ResourceSelection>]
|
|
9870
|
+
#
|
|
9871
|
+
# @!attribute [rw] backup_vault_name
|
|
9872
|
+
# The name of the backup vault where the tiering configuration
|
|
9873
|
+
# applies. Use `*` to apply to all backup vaults.
|
|
9874
|
+
# @return [String]
|
|
9875
|
+
#
|
|
9876
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/TieringConfigurationInputForUpdate AWS API Documentation
|
|
9877
|
+
#
|
|
9878
|
+
class TieringConfigurationInputForUpdate < Struct.new(
|
|
9879
|
+
:resource_selection,
|
|
9880
|
+
:backup_vault_name)
|
|
9881
|
+
SENSITIVE = []
|
|
9882
|
+
include Aws::Structure
|
|
9883
|
+
end
|
|
9884
|
+
|
|
9885
|
+
# This contains metadata about a tiering configuration returned in a
|
|
9886
|
+
# list.
|
|
9887
|
+
#
|
|
9888
|
+
# @!attribute [rw] tiering_configuration_arn
|
|
9889
|
+
# An Amazon Resource Name (ARN) that uniquely identifies the tiering
|
|
9890
|
+
# configuration.
|
|
9891
|
+
# @return [String]
|
|
9892
|
+
#
|
|
9893
|
+
# @!attribute [rw] tiering_configuration_name
|
|
9894
|
+
# The unique name of the tiering configuration.
|
|
9895
|
+
# @return [String]
|
|
9896
|
+
#
|
|
9897
|
+
# @!attribute [rw] backup_vault_name
|
|
9898
|
+
# The name of the backup vault where the tiering configuration
|
|
9899
|
+
# applies. Use `*` to apply to all backup vaults.
|
|
9900
|
+
# @return [String]
|
|
9901
|
+
#
|
|
9902
|
+
# @!attribute [rw] creation_time
|
|
9903
|
+
# The date and time a tiering configuration was created, in Unix
|
|
9904
|
+
# format and Coordinated Universal Time (UTC). The value of
|
|
9905
|
+
# `CreationTime` is accurate to milliseconds. For example, the value
|
|
9906
|
+
# 1516925490.087 represents Friday, January 26, 2018 12:11:30.087AM.
|
|
9907
|
+
# @return [Time]
|
|
9908
|
+
#
|
|
9909
|
+
# @!attribute [rw] last_updated_time
|
|
9910
|
+
# The date and time a tiering configuration was updated, in Unix
|
|
9911
|
+
# format and Coordinated Universal Time (UTC). The value of
|
|
9912
|
+
# `LastUpdatedTime` is accurate to milliseconds. For example, the
|
|
9913
|
+
# value 1516925490.087 represents Friday, January 26, 2018
|
|
9914
|
+
# 12:11:30.087AM.
|
|
9915
|
+
# @return [Time]
|
|
9916
|
+
#
|
|
9917
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/TieringConfigurationsListMember AWS API Documentation
|
|
9918
|
+
#
|
|
9919
|
+
class TieringConfigurationsListMember < Struct.new(
|
|
9920
|
+
:tiering_configuration_arn,
|
|
9921
|
+
:tiering_configuration_name,
|
|
9922
|
+
:backup_vault_name,
|
|
9923
|
+
:creation_time,
|
|
9924
|
+
:last_updated_time)
|
|
9925
|
+
SENSITIVE = []
|
|
9926
|
+
include Aws::Structure
|
|
9927
|
+
end
|
|
9928
|
+
|
|
9542
9929
|
# @!attribute [rw] resource_arn
|
|
9543
9930
|
# An ARN that uniquely identifies a resource. The format of the ARN
|
|
9544
9931
|
# depends on the type of the tagged resource.
|
|
@@ -9694,6 +10081,11 @@ module Aws::Backup
|
|
|
9694
10081
|
# A value for Multi-party approval, styled as "Mpa": `isMpaEnabled`.
|
|
9695
10082
|
# Values can be true or false. Example: `update-global-settings
|
|
9696
10083
|
# --global-settings isMpaEnabled=false --region us-west-2`.
|
|
10084
|
+
#
|
|
10085
|
+
# A value for Backup Service-Linked Role creation, styled
|
|
10086
|
+
# as`isDelegatedAdministratorEnabled`. Values can be true or false.
|
|
10087
|
+
# Example: `update-global-settings --global-settings
|
|
10088
|
+
# isDelegatedAdministratorEnabled=false --region us-west-2`.
|
|
9697
10089
|
# @return [Hash<String,String>]
|
|
9698
10090
|
#
|
|
9699
10091
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/UpdateGlobalSettingsInput AWS API Documentation
|
|
@@ -10086,6 +10478,58 @@ module Aws::Backup
|
|
|
10086
10478
|
include Aws::Structure
|
|
10087
10479
|
end
|
|
10088
10480
|
|
|
10481
|
+
# @!attribute [rw] tiering_configuration_name
|
|
10482
|
+
# The name of a tiering configuration to update.
|
|
10483
|
+
# @return [String]
|
|
10484
|
+
#
|
|
10485
|
+
# @!attribute [rw] tiering_configuration
|
|
10486
|
+
# Specifies the body of a tiering configuration.
|
|
10487
|
+
# @return [Types::TieringConfigurationInputForUpdate]
|
|
10488
|
+
#
|
|
10489
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/UpdateTieringConfigurationInput AWS API Documentation
|
|
10490
|
+
#
|
|
10491
|
+
class UpdateTieringConfigurationInput < Struct.new(
|
|
10492
|
+
:tiering_configuration_name,
|
|
10493
|
+
:tiering_configuration)
|
|
10494
|
+
SENSITIVE = []
|
|
10495
|
+
include Aws::Structure
|
|
10496
|
+
end
|
|
10497
|
+
|
|
10498
|
+
# @!attribute [rw] tiering_configuration_arn
|
|
10499
|
+
# An Amazon Resource Name (ARN) that uniquely identifies the updated
|
|
10500
|
+
# tiering configuration.
|
|
10501
|
+
# @return [String]
|
|
10502
|
+
#
|
|
10503
|
+
# @!attribute [rw] tiering_configuration_name
|
|
10504
|
+
# This unique string is the name of the tiering configuration.
|
|
10505
|
+
# @return [String]
|
|
10506
|
+
#
|
|
10507
|
+
# @!attribute [rw] creation_time
|
|
10508
|
+
# The date and time a tiering configuration was created, in Unix
|
|
10509
|
+
# format and Coordinated Universal Time (UTC). The value of
|
|
10510
|
+
# `CreationTime` is accurate to milliseconds. For example, the value
|
|
10511
|
+
# 1516925490.087 represents Friday, January 26, 2018 12:11:30.087AM.
|
|
10512
|
+
# @return [Time]
|
|
10513
|
+
#
|
|
10514
|
+
# @!attribute [rw] last_updated_time
|
|
10515
|
+
# The date and time a tiering configuration was updated, in Unix
|
|
10516
|
+
# format and Coordinated Universal Time (UTC). The value of
|
|
10517
|
+
# `LastUpdatedTime` is accurate to milliseconds. For example, the
|
|
10518
|
+
# value 1516925490.087 represents Friday, January 26, 2018
|
|
10519
|
+
# 12:11:30.087AM.
|
|
10520
|
+
# @return [Time]
|
|
10521
|
+
#
|
|
10522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/UpdateTieringConfigurationOutput AWS API Documentation
|
|
10523
|
+
#
|
|
10524
|
+
class UpdateTieringConfigurationOutput < Struct.new(
|
|
10525
|
+
:tiering_configuration_arn,
|
|
10526
|
+
:tiering_configuration_name,
|
|
10527
|
+
:creation_time,
|
|
10528
|
+
:last_updated_time)
|
|
10529
|
+
SENSITIVE = []
|
|
10530
|
+
include Aws::Structure
|
|
10531
|
+
end
|
|
10532
|
+
|
|
10089
10533
|
end
|
|
10090
10534
|
end
|
|
10091
10535
|
|