aws-sdk-backup 1.82.0 → 1.84.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 +272 -1
- data/lib/aws-sdk-backup/client_api.rb +121 -0
- data/lib/aws-sdk-backup/types.rb +468 -6
- data/lib/aws-sdk-backup.rb +1 -1
- data/sig/client.rbs +70 -3
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +79 -0
- metadata +4 -4
data/lib/aws-sdk-backup/types.rb
CHANGED
@@ -615,6 +615,17 @@ module Aws::Backup
|
|
615
615
|
# timezone.
|
616
616
|
# @return [String]
|
617
617
|
#
|
618
|
+
# @!attribute [rw] index_actions
|
619
|
+
# IndexActions is an array you use to specify how backup data should
|
620
|
+
# be indexed.
|
621
|
+
#
|
622
|
+
# eEach BackupRule can have 0 or 1 IndexAction, as each backup can
|
623
|
+
# have up to one index associated with it.
|
624
|
+
#
|
625
|
+
# Within the array is ResourceType. Only one will be accepted for each
|
626
|
+
# BackupRule.
|
627
|
+
# @return [Array<Types::IndexAction>]
|
628
|
+
#
|
618
629
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/BackupRule AWS API Documentation
|
619
630
|
#
|
620
631
|
class BackupRule < Struct.new(
|
@@ -628,7 +639,8 @@ module Aws::Backup
|
|
628
639
|
:rule_id,
|
629
640
|
:copy_actions,
|
630
641
|
:enable_continuous_backup,
|
631
|
-
:schedule_expression_timezone
|
642
|
+
:schedule_expression_timezone,
|
643
|
+
:index_actions)
|
632
644
|
SENSITIVE = [:recovery_point_tags]
|
633
645
|
include Aws::Structure
|
634
646
|
end
|
@@ -721,6 +733,18 @@ module Aws::Backup
|
|
721
733
|
# timezone.
|
722
734
|
# @return [String]
|
723
735
|
#
|
736
|
+
# @!attribute [rw] index_actions
|
737
|
+
# There can up to one IndexAction in each BackupRule, as each backup
|
738
|
+
# can have 0 or 1 backup index associated with it.
|
739
|
+
#
|
740
|
+
# Within the array is ResourceTypes. Only 1 resource type will be
|
741
|
+
# accepted for each BackupRule. Valid values:
|
742
|
+
#
|
743
|
+
# * `EBS` for Amazon Elastic Block Store
|
744
|
+
#
|
745
|
+
# * `S3` for Amazon Simple Storage Service (Amazon S3)
|
746
|
+
# @return [Array<Types::IndexAction>]
|
747
|
+
#
|
724
748
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/BackupRuleInput AWS API Documentation
|
725
749
|
#
|
726
750
|
class BackupRuleInput < Struct.new(
|
@@ -733,7 +757,8 @@ module Aws::Backup
|
|
733
757
|
:recovery_point_tags,
|
734
758
|
:copy_actions,
|
735
759
|
:enable_continuous_backup,
|
736
|
-
:schedule_expression_timezone
|
760
|
+
:schedule_expression_timezone,
|
761
|
+
:index_actions)
|
737
762
|
SENSITIVE = [:recovery_point_tags]
|
738
763
|
include Aws::Structure
|
739
764
|
end
|
@@ -3180,6 +3205,21 @@ module Aws::Backup
|
|
3180
3205
|
# The type of vault in which the described recovery point is stored.
|
3181
3206
|
# @return [String]
|
3182
3207
|
#
|
3208
|
+
# @!attribute [rw] index_status
|
3209
|
+
# This is the current status for the backup index associated with the
|
3210
|
+
# specified recovery point.
|
3211
|
+
#
|
3212
|
+
# Statuses are: `PENDING` \| `ACTIVE` \| `FAILED` \| `DELETING`
|
3213
|
+
#
|
3214
|
+
# A recovery point with an index that has the status of `ACTIVE` can
|
3215
|
+
# be included in a search.
|
3216
|
+
# @return [String]
|
3217
|
+
#
|
3218
|
+
# @!attribute [rw] index_status_message
|
3219
|
+
# A string in the form of a detailed message explaining the status of
|
3220
|
+
# a backup index associated with the recovery point.
|
3221
|
+
# @return [String]
|
3222
|
+
#
|
3183
3223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeRecoveryPointOutput AWS API Documentation
|
3184
3224
|
#
|
3185
3225
|
class DescribeRecoveryPointOutput < Struct.new(
|
@@ -3206,7 +3246,9 @@ module Aws::Backup
|
|
3206
3246
|
:composite_member_identifier,
|
3207
3247
|
:is_parent,
|
3208
3248
|
:resource_name,
|
3209
|
-
:vault_type
|
3249
|
+
:vault_type,
|
3250
|
+
:index_status,
|
3251
|
+
:index_status_message)
|
3210
3252
|
SENSITIVE = []
|
3211
3253
|
include Aws::Structure
|
3212
3254
|
end
|
@@ -3948,6 +3990,103 @@ module Aws::Backup
|
|
3948
3990
|
include Aws::Structure
|
3949
3991
|
end
|
3950
3992
|
|
3993
|
+
# @!attribute [rw] backup_vault_name
|
3994
|
+
# The name of a logical container where backups are stored. Backup
|
3995
|
+
# vaults are identified by names that are unique to the account used
|
3996
|
+
# to create them and the Region where they are created.
|
3997
|
+
#
|
3998
|
+
# Accepted characters include lowercase letters, numbers, and hyphens.
|
3999
|
+
# @return [String]
|
4000
|
+
#
|
4001
|
+
# @!attribute [rw] recovery_point_arn
|
4002
|
+
# An ARN that uniquely identifies a recovery point; for example,
|
4003
|
+
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
|
4004
|
+
# @return [String]
|
4005
|
+
#
|
4006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/GetRecoveryPointIndexDetailsInput AWS API Documentation
|
4007
|
+
#
|
4008
|
+
class GetRecoveryPointIndexDetailsInput < Struct.new(
|
4009
|
+
:backup_vault_name,
|
4010
|
+
:recovery_point_arn)
|
4011
|
+
SENSITIVE = []
|
4012
|
+
include Aws::Structure
|
4013
|
+
end
|
4014
|
+
|
4015
|
+
# @!attribute [rw] recovery_point_arn
|
4016
|
+
# An ARN that uniquely identifies a recovery point; for example,
|
4017
|
+
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
|
4018
|
+
# @return [String]
|
4019
|
+
#
|
4020
|
+
# @!attribute [rw] backup_vault_arn
|
4021
|
+
# An ARN that uniquely identifies the backup vault where the recovery
|
4022
|
+
# point index is stored.
|
4023
|
+
#
|
4024
|
+
# For example,
|
4025
|
+
# `arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault`.
|
4026
|
+
# @return [String]
|
4027
|
+
#
|
4028
|
+
# @!attribute [rw] source_resource_arn
|
4029
|
+
# A string of the Amazon Resource Name (ARN) that uniquely identifies
|
4030
|
+
# the source resource.
|
4031
|
+
# @return [String]
|
4032
|
+
#
|
4033
|
+
# @!attribute [rw] index_creation_date
|
4034
|
+
# The date and time that a backup index was created, in Unix format
|
4035
|
+
# and Coordinated Universal Time (UTC). The value of `CreationDate` is
|
4036
|
+
# accurate to milliseconds. For example, the value 1516925490.087
|
4037
|
+
# represents Friday, January 26, 2018 12:11:30.087 AM.
|
4038
|
+
# @return [Time]
|
4039
|
+
#
|
4040
|
+
# @!attribute [rw] index_deletion_date
|
4041
|
+
# The date and time that a backup index was deleted, in Unix format
|
4042
|
+
# and Coordinated Universal Time (UTC). The value of `CreationDate` is
|
4043
|
+
# accurate to milliseconds. For example, the value 1516925490.087
|
4044
|
+
# represents Friday, January 26, 2018 12:11:30.087 AM.
|
4045
|
+
# @return [Time]
|
4046
|
+
#
|
4047
|
+
# @!attribute [rw] index_completion_date
|
4048
|
+
# The date and time that a backup index finished creation, in Unix
|
4049
|
+
# format and Coordinated Universal Time (UTC). The value of
|
4050
|
+
# `CreationDate` is accurate to milliseconds. For example, the value
|
4051
|
+
# 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
4052
|
+
# @return [Time]
|
4053
|
+
#
|
4054
|
+
# @!attribute [rw] index_status
|
4055
|
+
# This is the current status for the backup index associated with the
|
4056
|
+
# specified recovery point.
|
4057
|
+
#
|
4058
|
+
# Statuses are: `PENDING` \| `ACTIVE` \| `FAILED` \| `DELETING`
|
4059
|
+
#
|
4060
|
+
# A recovery point with an index that has the status of `ACTIVE` can
|
4061
|
+
# be included in a search.
|
4062
|
+
# @return [String]
|
4063
|
+
#
|
4064
|
+
# @!attribute [rw] index_status_message
|
4065
|
+
# A detailed message explaining the status of a backup index
|
4066
|
+
# associated with the recovery point.
|
4067
|
+
# @return [String]
|
4068
|
+
#
|
4069
|
+
# @!attribute [rw] total_items_indexed
|
4070
|
+
# Count of items within the backup index associated with the recovery
|
4071
|
+
# point.
|
4072
|
+
# @return [Integer]
|
4073
|
+
#
|
4074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/GetRecoveryPointIndexDetailsOutput AWS API Documentation
|
4075
|
+
#
|
4076
|
+
class GetRecoveryPointIndexDetailsOutput < Struct.new(
|
4077
|
+
:recovery_point_arn,
|
4078
|
+
:backup_vault_arn,
|
4079
|
+
:source_resource_arn,
|
4080
|
+
:index_creation_date,
|
4081
|
+
:index_deletion_date,
|
4082
|
+
:index_completion_date,
|
4083
|
+
:index_status,
|
4084
|
+
:index_status_message,
|
4085
|
+
:total_items_indexed)
|
4086
|
+
SENSITIVE = []
|
4087
|
+
include Aws::Structure
|
4088
|
+
end
|
4089
|
+
|
3951
4090
|
# @!attribute [rw] backup_vault_name
|
3952
4091
|
# The name of a logical container where backups are stored. Backup
|
3953
4092
|
# vaults are identified by names that are unique to the account used
|
@@ -4174,6 +4313,109 @@ module Aws::Backup
|
|
4174
4313
|
include Aws::Structure
|
4175
4314
|
end
|
4176
4315
|
|
4316
|
+
# This is an optional array within a BackupRule.
|
4317
|
+
#
|
4318
|
+
# IndexAction consists of one ResourceTypes.
|
4319
|
+
#
|
4320
|
+
# @!attribute [rw] resource_types
|
4321
|
+
# 0 or 1 index action will be accepted for each BackupRule.
|
4322
|
+
#
|
4323
|
+
# Valid values:
|
4324
|
+
#
|
4325
|
+
# * `EBS` for Amazon Elastic Block Store
|
4326
|
+
#
|
4327
|
+
# * `S3` for Amazon Simple Storage Service (Amazon S3)
|
4328
|
+
# @return [Array<String>]
|
4329
|
+
#
|
4330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/IndexAction AWS API Documentation
|
4331
|
+
#
|
4332
|
+
class IndexAction < Struct.new(
|
4333
|
+
:resource_types)
|
4334
|
+
SENSITIVE = []
|
4335
|
+
include Aws::Structure
|
4336
|
+
end
|
4337
|
+
|
4338
|
+
# This is a recovery point that has an associated backup index.
|
4339
|
+
#
|
4340
|
+
# Only recovery points with a backup index can be included in a search.
|
4341
|
+
#
|
4342
|
+
# @!attribute [rw] recovery_point_arn
|
4343
|
+
# An ARN that uniquely identifies a recovery point; for example,
|
4344
|
+
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`
|
4345
|
+
# @return [String]
|
4346
|
+
#
|
4347
|
+
# @!attribute [rw] source_resource_arn
|
4348
|
+
# A string of the Amazon Resource Name (ARN) that uniquely identifies
|
4349
|
+
# the source resource.
|
4350
|
+
# @return [String]
|
4351
|
+
#
|
4352
|
+
# @!attribute [rw] iam_role_arn
|
4353
|
+
# This specifies the IAM role ARN used for this operation.
|
4354
|
+
#
|
4355
|
+
# For example, arn:aws:iam::123456789012:role/S3Access
|
4356
|
+
# @return [String]
|
4357
|
+
#
|
4358
|
+
# @!attribute [rw] backup_creation_date
|
4359
|
+
# The date and time that a backup was created, in Unix format and
|
4360
|
+
# Coordinated Universal Time (UTC). The value of `CreationDate` is
|
4361
|
+
# accurate to milliseconds. For example, the value 1516925490.087
|
4362
|
+
# represents Friday, January 26, 2018 12:11:30.087 AM.
|
4363
|
+
# @return [Time]
|
4364
|
+
#
|
4365
|
+
# @!attribute [rw] resource_type
|
4366
|
+
# The resource type of the indexed recovery point.
|
4367
|
+
#
|
4368
|
+
# * `EBS` for Amazon Elastic Block Store
|
4369
|
+
#
|
4370
|
+
# * `S3` for Amazon Simple Storage Service (Amazon S3)
|
4371
|
+
# @return [String]
|
4372
|
+
#
|
4373
|
+
# @!attribute [rw] index_creation_date
|
4374
|
+
# The date and time that a backup index was created, in Unix format
|
4375
|
+
# and Coordinated Universal Time (UTC). The value of `CreationDate` is
|
4376
|
+
# accurate to milliseconds. For example, the value 1516925490.087
|
4377
|
+
# represents Friday, January 26, 2018 12:11:30.087 AM.
|
4378
|
+
# @return [Time]
|
4379
|
+
#
|
4380
|
+
# @!attribute [rw] index_status
|
4381
|
+
# This is the current status for the backup index associated with the
|
4382
|
+
# specified recovery point.
|
4383
|
+
#
|
4384
|
+
# Statuses are: `PENDING` \| `ACTIVE` \| `FAILED` \| `DELETING`
|
4385
|
+
#
|
4386
|
+
# A recovery point with an index that has the status of `ACTIVE` can
|
4387
|
+
# be included in a search.
|
4388
|
+
# @return [String]
|
4389
|
+
#
|
4390
|
+
# @!attribute [rw] index_status_message
|
4391
|
+
# A string in the form of a detailed message explaining the status of
|
4392
|
+
# a backup index associated with the recovery point.
|
4393
|
+
# @return [String]
|
4394
|
+
#
|
4395
|
+
# @!attribute [rw] backup_vault_arn
|
4396
|
+
# An ARN that uniquely identifies the backup vault where the recovery
|
4397
|
+
# point index is stored.
|
4398
|
+
#
|
4399
|
+
# For example,
|
4400
|
+
# `arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault`.
|
4401
|
+
# @return [String]
|
4402
|
+
#
|
4403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/IndexedRecoveryPoint AWS API Documentation
|
4404
|
+
#
|
4405
|
+
class IndexedRecoveryPoint < Struct.new(
|
4406
|
+
:recovery_point_arn,
|
4407
|
+
:source_resource_arn,
|
4408
|
+
:iam_role_arn,
|
4409
|
+
:backup_creation_date,
|
4410
|
+
:resource_type,
|
4411
|
+
:index_creation_date,
|
4412
|
+
:index_status,
|
4413
|
+
:index_status_message,
|
4414
|
+
:backup_vault_arn)
|
4415
|
+
SENSITIVE = []
|
4416
|
+
include Aws::Structure
|
4417
|
+
end
|
4418
|
+
|
4177
4419
|
# Indicates that something is wrong with a parameter's value. For
|
4178
4420
|
# example, the value is out of range.
|
4179
4421
|
#
|
@@ -5264,6 +5506,90 @@ module Aws::Backup
|
|
5264
5506
|
include Aws::Structure
|
5265
5507
|
end
|
5266
5508
|
|
5509
|
+
# @!attribute [rw] next_token
|
5510
|
+
# The next item following a partial list of returned recovery points.
|
5511
|
+
#
|
5512
|
+
# For example, if a request is made to return `MaxResults` number of
|
5513
|
+
# indexed recovery points, `NextToken` allows you to return more items
|
5514
|
+
# in your list starting at the location pointed to by the next token.
|
5515
|
+
# @return [String]
|
5516
|
+
#
|
5517
|
+
# @!attribute [rw] max_results
|
5518
|
+
# The maximum number of resource list items to be returned.
|
5519
|
+
# @return [Integer]
|
5520
|
+
#
|
5521
|
+
# @!attribute [rw] source_resource_arn
|
5522
|
+
# A string of the Amazon Resource Name (ARN) that uniquely identifies
|
5523
|
+
# the source resource.
|
5524
|
+
# @return [String]
|
5525
|
+
#
|
5526
|
+
# @!attribute [rw] created_before
|
5527
|
+
# Returns only indexed recovery points that were created before the
|
5528
|
+
# specified date.
|
5529
|
+
# @return [Time]
|
5530
|
+
#
|
5531
|
+
# @!attribute [rw] created_after
|
5532
|
+
# Returns only indexed recovery points that were created after the
|
5533
|
+
# specified date.
|
5534
|
+
# @return [Time]
|
5535
|
+
#
|
5536
|
+
# @!attribute [rw] resource_type
|
5537
|
+
# Returns a list of indexed recovery points for the specified resource
|
5538
|
+
# type(s).
|
5539
|
+
#
|
5540
|
+
# Accepted values include:
|
5541
|
+
#
|
5542
|
+
# * `EBS` for Amazon Elastic Block Store
|
5543
|
+
#
|
5544
|
+
# * `S3` for Amazon Simple Storage Service (Amazon S3)
|
5545
|
+
# @return [String]
|
5546
|
+
#
|
5547
|
+
# @!attribute [rw] index_status
|
5548
|
+
# Include this parameter to filter the returned list by the indicated
|
5549
|
+
# statuses.
|
5550
|
+
#
|
5551
|
+
# Accepted values: `PENDING` \| `ACTIVE` \| `FAILED` \| `DELETING`
|
5552
|
+
#
|
5553
|
+
# A recovery point with an index that has the status of `ACTIVE` can
|
5554
|
+
# be included in a search.
|
5555
|
+
# @return [String]
|
5556
|
+
#
|
5557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListIndexedRecoveryPointsInput AWS API Documentation
|
5558
|
+
#
|
5559
|
+
class ListIndexedRecoveryPointsInput < Struct.new(
|
5560
|
+
:next_token,
|
5561
|
+
:max_results,
|
5562
|
+
:source_resource_arn,
|
5563
|
+
:created_before,
|
5564
|
+
:created_after,
|
5565
|
+
:resource_type,
|
5566
|
+
:index_status)
|
5567
|
+
SENSITIVE = []
|
5568
|
+
include Aws::Structure
|
5569
|
+
end
|
5570
|
+
|
5571
|
+
# @!attribute [rw] indexed_recovery_points
|
5572
|
+
# This is a list of recovery points that have an associated index,
|
5573
|
+
# belonging to the specified account.
|
5574
|
+
# @return [Array<Types::IndexedRecoveryPoint>]
|
5575
|
+
#
|
5576
|
+
# @!attribute [rw] next_token
|
5577
|
+
# The next item following a partial list of returned recovery points.
|
5578
|
+
#
|
5579
|
+
# For example, if a request is made to return `MaxResults` number of
|
5580
|
+
# indexed recovery points, `NextToken` allows you to return more items
|
5581
|
+
# in your list starting at the location pointed to by the next token.
|
5582
|
+
# @return [String]
|
5583
|
+
#
|
5584
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListIndexedRecoveryPointsOutput AWS API Documentation
|
5585
|
+
#
|
5586
|
+
class ListIndexedRecoveryPointsOutput < Struct.new(
|
5587
|
+
:indexed_recovery_points,
|
5588
|
+
:next_token)
|
5589
|
+
SENSITIVE = []
|
5590
|
+
include Aws::Structure
|
5591
|
+
end
|
5592
|
+
|
5267
5593
|
# @!attribute [rw] next_token
|
5268
5594
|
# The next item following a partial list of returned resources. For
|
5269
5595
|
# example, if a request is made to return `MaxResults` number of
|
@@ -6604,6 +6930,21 @@ module Aws::Backup
|
|
6604
6930
|
# The type of vault in which the described recovery point is stored.
|
6605
6931
|
# @return [String]
|
6606
6932
|
#
|
6933
|
+
# @!attribute [rw] index_status
|
6934
|
+
# This is the current status for the backup index associated with the
|
6935
|
+
# specified recovery point.
|
6936
|
+
#
|
6937
|
+
# Statuses are: `PENDING` \| `ACTIVE` \| `FAILED` \| `DELETING`
|
6938
|
+
#
|
6939
|
+
# A recovery point with an index that has the status of `ACTIVE` can
|
6940
|
+
# be included in a search.
|
6941
|
+
# @return [String]
|
6942
|
+
#
|
6943
|
+
# @!attribute [rw] index_status_message
|
6944
|
+
# A string in the form of a detailed message explaining the status of
|
6945
|
+
# a backup index associated with the recovery point.
|
6946
|
+
# @return [String]
|
6947
|
+
#
|
6607
6948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/RecoveryPointByBackupVault AWS API Documentation
|
6608
6949
|
#
|
6609
6950
|
class RecoveryPointByBackupVault < Struct.new(
|
@@ -6629,7 +6970,9 @@ module Aws::Backup
|
|
6629
6970
|
:composite_member_identifier,
|
6630
6971
|
:is_parent,
|
6631
6972
|
:resource_name,
|
6632
|
-
:vault_type
|
6973
|
+
:vault_type,
|
6974
|
+
:index_status,
|
6975
|
+
:index_status_message)
|
6633
6976
|
SENSITIVE = []
|
6634
6977
|
include Aws::Structure
|
6635
6978
|
end
|
@@ -6693,6 +7036,21 @@ module Aws::Backup
|
|
6693
7036
|
# The type of vault in which the described recovery point is stored.
|
6694
7037
|
# @return [String]
|
6695
7038
|
#
|
7039
|
+
# @!attribute [rw] index_status
|
7040
|
+
# This is the current status for the backup index associated with the
|
7041
|
+
# specified recovery point.
|
7042
|
+
#
|
7043
|
+
# Statuses are: `PENDING` \| `ACTIVE` \| `FAILED` \| `DELETING`
|
7044
|
+
#
|
7045
|
+
# A recovery point with an index that has the status of `ACTIVE` can
|
7046
|
+
# be included in a search.
|
7047
|
+
# @return [String]
|
7048
|
+
#
|
7049
|
+
# @!attribute [rw] index_status_message
|
7050
|
+
# A string in the form of a detailed message explaining the status of
|
7051
|
+
# a backup index associated with the recovery point.
|
7052
|
+
# @return [String]
|
7053
|
+
#
|
6696
7054
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/RecoveryPointByResource AWS API Documentation
|
6697
7055
|
#
|
6698
7056
|
class RecoveryPointByResource < Struct.new(
|
@@ -6706,7 +7064,9 @@ module Aws::Backup
|
|
6706
7064
|
:is_parent,
|
6707
7065
|
:parent_recovery_point_arn,
|
6708
7066
|
:resource_name,
|
6709
|
-
:vault_type
|
7067
|
+
:vault_type,
|
7068
|
+
:index_status,
|
7069
|
+
:index_status_message)
|
6710
7070
|
SENSITIVE = []
|
6711
7071
|
include Aws::Structure
|
6712
7072
|
end
|
@@ -8041,6 +8401,25 @@ module Aws::Backup
|
|
8041
8401
|
# `WindowsVSS` option is not enabled by default.
|
8042
8402
|
# @return [Hash<String,String>]
|
8043
8403
|
#
|
8404
|
+
# @!attribute [rw] index
|
8405
|
+
# Include this parameter to enable index creation if your backup job
|
8406
|
+
# has a resource type that supports backup indexes.
|
8407
|
+
#
|
8408
|
+
# Resource types that support backup indexes include:
|
8409
|
+
#
|
8410
|
+
# * `EBS` for Amazon Elastic Block Store
|
8411
|
+
#
|
8412
|
+
# * `S3` for Amazon Simple Storage Service (Amazon S3)
|
8413
|
+
#
|
8414
|
+
# Index can have 1 of 2 possible values, either `ENABLED` or
|
8415
|
+
# `DISABLED`.
|
8416
|
+
#
|
8417
|
+
# To create a backup index for an eligible `ACTIVE` recovery point
|
8418
|
+
# that does not yet have a backup index, set value to `ENABLED`.
|
8419
|
+
#
|
8420
|
+
# To delete a backup index, set value to `DISABLED`.
|
8421
|
+
# @return [String]
|
8422
|
+
#
|
8044
8423
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/StartBackupJobInput AWS API Documentation
|
8045
8424
|
#
|
8046
8425
|
class StartBackupJobInput < Struct.new(
|
@@ -8052,7 +8431,8 @@ module Aws::Backup
|
|
8052
8431
|
:complete_window_minutes,
|
8053
8432
|
:lifecycle,
|
8054
8433
|
:recovery_point_tags,
|
8055
|
-
:backup_options
|
8434
|
+
:backup_options,
|
8435
|
+
:index)
|
8056
8436
|
SENSITIVE = [:recovery_point_tags]
|
8057
8437
|
include Aws::Structure
|
8058
8438
|
end
|
@@ -8567,6 +8947,88 @@ module Aws::Backup
|
|
8567
8947
|
include Aws::Structure
|
8568
8948
|
end
|
8569
8949
|
|
8950
|
+
# @!attribute [rw] backup_vault_name
|
8951
|
+
# The name of a logical container where backups are stored. Backup
|
8952
|
+
# vaults are identified by names that are unique to the account used
|
8953
|
+
# to create them and the Region where they are created.
|
8954
|
+
#
|
8955
|
+
# Accepted characters include lowercase letters, numbers, and hyphens.
|
8956
|
+
# @return [String]
|
8957
|
+
#
|
8958
|
+
# @!attribute [rw] recovery_point_arn
|
8959
|
+
# An ARN that uniquely identifies a recovery point; for example,
|
8960
|
+
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
|
8961
|
+
# @return [String]
|
8962
|
+
#
|
8963
|
+
# @!attribute [rw] iam_role_arn
|
8964
|
+
# This specifies the IAM role ARN used for this operation.
|
8965
|
+
#
|
8966
|
+
# For example, arn:aws:iam::123456789012:role/S3Access
|
8967
|
+
# @return [String]
|
8968
|
+
#
|
8969
|
+
# @!attribute [rw] index
|
8970
|
+
# Index can have 1 of 2 possible values, either `ENABLED` or
|
8971
|
+
# `DISABLED`.
|
8972
|
+
#
|
8973
|
+
# To create a backup index for an eligible `ACTIVE` recovery point
|
8974
|
+
# that does not yet have a backup index, set value to `ENABLED`.
|
8975
|
+
#
|
8976
|
+
# To delete a backup index, set value to `DISABLED`.
|
8977
|
+
# @return [String]
|
8978
|
+
#
|
8979
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/UpdateRecoveryPointIndexSettingsInput AWS API Documentation
|
8980
|
+
#
|
8981
|
+
class UpdateRecoveryPointIndexSettingsInput < Struct.new(
|
8982
|
+
:backup_vault_name,
|
8983
|
+
:recovery_point_arn,
|
8984
|
+
:iam_role_arn,
|
8985
|
+
:index)
|
8986
|
+
SENSITIVE = []
|
8987
|
+
include Aws::Structure
|
8988
|
+
end
|
8989
|
+
|
8990
|
+
# @!attribute [rw] backup_vault_name
|
8991
|
+
# The name of a logical container where backups are stored. Backup
|
8992
|
+
# vaults are identified by names that are unique to the account used
|
8993
|
+
# to create them and the Region where they are created.
|
8994
|
+
# @return [String]
|
8995
|
+
#
|
8996
|
+
# @!attribute [rw] recovery_point_arn
|
8997
|
+
# An ARN that uniquely identifies a recovery point; for example,
|
8998
|
+
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
|
8999
|
+
# @return [String]
|
9000
|
+
#
|
9001
|
+
# @!attribute [rw] index_status
|
9002
|
+
# This is the current status for the backup index associated with the
|
9003
|
+
# specified recovery point.
|
9004
|
+
#
|
9005
|
+
# Statuses are: `PENDING` \| `ACTIVE` \| `FAILED` \| `DELETING`
|
9006
|
+
#
|
9007
|
+
# A recovery point with an index that has the status of `ACTIVE` can
|
9008
|
+
# be included in a search.
|
9009
|
+
# @return [String]
|
9010
|
+
#
|
9011
|
+
# @!attribute [rw] index
|
9012
|
+
# Index can have 1 of 2 possible values, either `ENABLED` or
|
9013
|
+
# `DISABLED`.
|
9014
|
+
#
|
9015
|
+
# A value of `ENABLED` means a backup index for an eligible `ACTIVE`
|
9016
|
+
# recovery point has been created.
|
9017
|
+
#
|
9018
|
+
# A value of `DISABLED` means a backup index was deleted.
|
9019
|
+
# @return [String]
|
9020
|
+
#
|
9021
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/UpdateRecoveryPointIndexSettingsOutput AWS API Documentation
|
9022
|
+
#
|
9023
|
+
class UpdateRecoveryPointIndexSettingsOutput < Struct.new(
|
9024
|
+
:backup_vault_name,
|
9025
|
+
:recovery_point_arn,
|
9026
|
+
:index_status,
|
9027
|
+
:index)
|
9028
|
+
SENSITIVE = []
|
9029
|
+
include Aws::Structure
|
9030
|
+
end
|
9031
|
+
|
8570
9032
|
# @!attribute [rw] backup_vault_name
|
8571
9033
|
# The name of a logical container where backups are stored. Backup
|
8572
9034
|
# vaults are identified by names that are unique to the account used
|