aws-sdk-backup 1.115.0 → 1.116.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-backup/client.rb +345 -7
- data/lib/aws-sdk-backup/client_api.rb +196 -0
- data/lib/aws-sdk-backup/types.rb +401 -1
- data/lib/aws-sdk-backup.rb +1 -1
- data/sig/client.rbs +81 -2
- data/sig/types.rbs +95 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84d4cbebab9f4d4399d4e1a2258ba8c16edb464575f2dcdfb17934537eb2e2cf
|
|
4
|
+
data.tar.gz: b34a075f4346c35d714bd0a055f8b7385d3c83cd958d2c1797416f889a693a5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6912e975cc5c3f97a8e26ae2fb78e96ee299daf00212becd821b08bfe890cad9e10ce543da47a8caebfd74d7d44f58e0e050d513de62f9e851dc2d9d02406023
|
|
7
|
+
data.tar.gz: 1e465576ea0d2b21eee254c4f15083a13914498ff69d9ade098cfea91fcbb275427df481262394d9ee9ba7d130730bbb3943057784a6a6c56f2ed8b391c903dd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.116.0 (2026-08-06)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Backup now lets you create read-only access points for Amazon S3 recovery points, enabling you to access backup data using S3 APIs without initiating a restore.
|
|
8
|
+
|
|
4
9
|
1.115.0 (2026-07-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.116.0
|
|
@@ -537,6 +537,89 @@ module Aws::Backup
|
|
|
537
537
|
req.send_request(options)
|
|
538
538
|
end
|
|
539
539
|
|
|
540
|
+
# Creates a backup access point for an Amazon S3 recovery point. A
|
|
541
|
+
# backup access point provides on-demand, read-only access to the backup
|
|
542
|
+
# data in a recovery point through an Amazon S3 access point, without
|
|
543
|
+
# initiating a restore.
|
|
544
|
+
#
|
|
545
|
+
# While a backup access point is active for a recovery point, Backup
|
|
546
|
+
# pauses lifecycle transitions and blocks deletion of that recovery
|
|
547
|
+
# point.
|
|
548
|
+
#
|
|
549
|
+
# @option params [Hash<String,String>] :access_point_metadata
|
|
550
|
+
# Metadata for the backup access point. For continuous (point-in-time)
|
|
551
|
+
# recovery points, you must include an `AccessPointInTime` timestamp (in
|
|
552
|
+
# format `2021-11-27T03:30:27Z`). The access point provides access to
|
|
553
|
+
# the content present in the backup at that specific time. You can
|
|
554
|
+
# specify any time within the continuous backup's retention period, up
|
|
555
|
+
# to the latest restorable time. For snapshot recovery points, do not
|
|
556
|
+
# include `AccessPointInTime`.
|
|
557
|
+
#
|
|
558
|
+
# @option params [String] :access_point_policy
|
|
559
|
+
# An optional resource-based policy, in JSON format, to apply to the
|
|
560
|
+
# underlying Amazon S3 access point. The policy controls how backup data
|
|
561
|
+
# can be accessed through the access point. If you do not specify a
|
|
562
|
+
# policy, access is governed by the caller's IAM permissions. For more
|
|
563
|
+
# information, see [Configuring IAM policies for using access points][1]
|
|
564
|
+
# in the *Amazon S3 User Guide*.
|
|
565
|
+
#
|
|
566
|
+
#
|
|
567
|
+
#
|
|
568
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-policies.html
|
|
569
|
+
#
|
|
570
|
+
# @option params [required, String] :name
|
|
571
|
+
# The name of the backup access point. This name is shared with the
|
|
572
|
+
# Amazon S3 access point namespace. It must be unique within your
|
|
573
|
+
# account and Region and cannot conflict with an existing Amazon S3
|
|
574
|
+
# access point. For more information about access point naming, see
|
|
575
|
+
# [Access points naming rules, restrictions, and limitations][1] in the
|
|
576
|
+
# *Amazon S3 User Guide*.
|
|
577
|
+
#
|
|
578
|
+
#
|
|
579
|
+
#
|
|
580
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-restrictions-limitations-naming-rules.html
|
|
581
|
+
#
|
|
582
|
+
# @option params [required, String] :recovery_point_arn
|
|
583
|
+
# The Amazon Resource Name (ARN) of the recovery point for which to
|
|
584
|
+
# create the backup access point. The recovery point must be an Amazon
|
|
585
|
+
# S3 recovery point in the `AVAILABLE`, `STOPPED`, or `COMPLETED` state.
|
|
586
|
+
#
|
|
587
|
+
# @option params [Hash<String,String>] :tags
|
|
588
|
+
# The tags to assign to the backup access point.
|
|
589
|
+
#
|
|
590
|
+
# @return [Types::CreateBackupAccessPointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
591
|
+
#
|
|
592
|
+
# * {Types::CreateBackupAccessPointResponse#access_point_arn #access_point_arn} => String
|
|
593
|
+
# * {Types::CreateBackupAccessPointResponse#status #status} => String
|
|
594
|
+
#
|
|
595
|
+
# @example Request syntax with placeholder values
|
|
596
|
+
#
|
|
597
|
+
# resp = client.create_backup_access_point({
|
|
598
|
+
# access_point_metadata: {
|
|
599
|
+
# "AccessPointMetadataMapKeyString" => "AccessPointMetadataMapValueString",
|
|
600
|
+
# },
|
|
601
|
+
# access_point_policy: "AccessPointPolicy",
|
|
602
|
+
# name: "AccessPointName", # required
|
|
603
|
+
# recovery_point_arn: "RecoveryPointArn", # required
|
|
604
|
+
# tags: {
|
|
605
|
+
# "TagMapKeyString" => "TagMapValueString",
|
|
606
|
+
# },
|
|
607
|
+
# })
|
|
608
|
+
#
|
|
609
|
+
# @example Response structure
|
|
610
|
+
#
|
|
611
|
+
# resp.access_point_arn #=> String
|
|
612
|
+
# resp.status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "DISASSOCIATED", "DISASSOCIATING", "EXPIRED", "FAILED"
|
|
613
|
+
#
|
|
614
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/CreateBackupAccessPoint AWS API Documentation
|
|
615
|
+
#
|
|
616
|
+
# @overload create_backup_access_point(params = {})
|
|
617
|
+
# @param [Hash] params ({})
|
|
618
|
+
def create_backup_access_point(params = {}, options = {})
|
|
619
|
+
req = build_request(:create_backup_access_point, params)
|
|
620
|
+
req.send_request(options)
|
|
621
|
+
end
|
|
622
|
+
|
|
540
623
|
# Creates a backup plan using a backup plan name and backup rules. A
|
|
541
624
|
# backup plan is a document that contains information that Backup uses
|
|
542
625
|
# to schedule tasks that create recovery points for resources.
|
|
@@ -1451,6 +1534,33 @@ module Aws::Backup
|
|
|
1451
1534
|
req.send_request(options)
|
|
1452
1535
|
end
|
|
1453
1536
|
|
|
1537
|
+
# Deletes a backup access point. This deletes the underlying Amazon S3
|
|
1538
|
+
# access point and, if no other backup access points remain for the
|
|
1539
|
+
# recovery point, resumes lifecycle transitions for that recovery point.
|
|
1540
|
+
#
|
|
1541
|
+
# Always delete backup access points using this operation rather than
|
|
1542
|
+
# deleting the underlying Amazon S3 access point directly.
|
|
1543
|
+
#
|
|
1544
|
+
# @option params [required, String] :access_point_arn
|
|
1545
|
+
# The Amazon Resource Name (ARN) of the backup access point to delete.
|
|
1546
|
+
#
|
|
1547
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1548
|
+
#
|
|
1549
|
+
# @example Request syntax with placeholder values
|
|
1550
|
+
#
|
|
1551
|
+
# resp = client.delete_backup_access_point({
|
|
1552
|
+
# access_point_arn: "AccessPointArn", # required
|
|
1553
|
+
# })
|
|
1554
|
+
#
|
|
1555
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DeleteBackupAccessPoint AWS API Documentation
|
|
1556
|
+
#
|
|
1557
|
+
# @overload delete_backup_access_point(params = {})
|
|
1558
|
+
# @param [Hash] params ({})
|
|
1559
|
+
def delete_backup_access_point(params = {}, options = {})
|
|
1560
|
+
req = build_request(:delete_backup_access_point, params)
|
|
1561
|
+
req.send_request(options)
|
|
1562
|
+
end
|
|
1563
|
+
|
|
1454
1564
|
# Deletes a backup plan. A backup plan can only be deleted after all
|
|
1455
1565
|
# associated selections of resources have been deleted. Deleting a
|
|
1456
1566
|
# backup plan deletes the current version of a backup plan. Previous
|
|
@@ -1798,6 +1908,60 @@ module Aws::Backup
|
|
|
1798
1908
|
req.send_request(options)
|
|
1799
1909
|
end
|
|
1800
1910
|
|
|
1911
|
+
# Returns metadata about a backup access point, including its status and
|
|
1912
|
+
# the details of the underlying Amazon S3 access point.
|
|
1913
|
+
#
|
|
1914
|
+
# After a backup access point reaches the `AVAILABLE` status, use this
|
|
1915
|
+
# operation to retrieve the Amazon S3 access point ARN and alias that
|
|
1916
|
+
# you need to read the backup data.
|
|
1917
|
+
#
|
|
1918
|
+
# @option params [required, String] :access_point_arn
|
|
1919
|
+
# The Amazon Resource Name (ARN) of the backup access point to describe.
|
|
1920
|
+
#
|
|
1921
|
+
# @return [Types::DescribeBackupAccessPointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1922
|
+
#
|
|
1923
|
+
# * {Types::DescribeBackupAccessPointResponse#access_point_arn #access_point_arn} => String
|
|
1924
|
+
# * {Types::DescribeBackupAccessPointResponse#access_point_metadata #access_point_metadata} => Hash<String,String>
|
|
1925
|
+
# * {Types::DescribeBackupAccessPointResponse#backup_vault_arn #backup_vault_arn} => String
|
|
1926
|
+
# * {Types::DescribeBackupAccessPointResponse#backup_vault_name #backup_vault_name} => String
|
|
1927
|
+
# * {Types::DescribeBackupAccessPointResponse#creation_time #creation_time} => Time
|
|
1928
|
+
# * {Types::DescribeBackupAccessPointResponse#name #name} => String
|
|
1929
|
+
# * {Types::DescribeBackupAccessPointResponse#recovery_point_arn #recovery_point_arn} => String
|
|
1930
|
+
# * {Types::DescribeBackupAccessPointResponse#resource_arn #resource_arn} => String
|
|
1931
|
+
# * {Types::DescribeBackupAccessPointResponse#resource_type #resource_type} => String
|
|
1932
|
+
# * {Types::DescribeBackupAccessPointResponse#status #status} => String
|
|
1933
|
+
# * {Types::DescribeBackupAccessPointResponse#status_message #status_message} => String
|
|
1934
|
+
#
|
|
1935
|
+
# @example Request syntax with placeholder values
|
|
1936
|
+
#
|
|
1937
|
+
# resp = client.describe_backup_access_point({
|
|
1938
|
+
# access_point_arn: "AccessPointArn", # required
|
|
1939
|
+
# })
|
|
1940
|
+
#
|
|
1941
|
+
# @example Response structure
|
|
1942
|
+
#
|
|
1943
|
+
# resp.access_point_arn #=> String
|
|
1944
|
+
# resp.access_point_metadata #=> Hash
|
|
1945
|
+
# resp.access_point_metadata["AccessPointMetadataMapKeyString"] #=> String
|
|
1946
|
+
# resp.backup_vault_arn #=> String
|
|
1947
|
+
# resp.backup_vault_name #=> String
|
|
1948
|
+
# resp.creation_time #=> Time
|
|
1949
|
+
# resp.name #=> String
|
|
1950
|
+
# resp.recovery_point_arn #=> String
|
|
1951
|
+
# resp.resource_arn #=> String
|
|
1952
|
+
# resp.resource_type #=> String
|
|
1953
|
+
# resp.status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "DISASSOCIATED", "DISASSOCIATING", "EXPIRED", "FAILED"
|
|
1954
|
+
# resp.status_message #=> String
|
|
1955
|
+
#
|
|
1956
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeBackupAccessPoint AWS API Documentation
|
|
1957
|
+
#
|
|
1958
|
+
# @overload describe_backup_access_point(params = {})
|
|
1959
|
+
# @param [Hash] params ({})
|
|
1960
|
+
def describe_backup_access_point(params = {}, options = {})
|
|
1961
|
+
req = build_request(:describe_backup_access_point, params)
|
|
1962
|
+
req.send_request(options)
|
|
1963
|
+
end
|
|
1964
|
+
|
|
1801
1965
|
# Returns backup job details for the specified `BackupJobId`.
|
|
1802
1966
|
#
|
|
1803
1967
|
# @option params [required, String] :backup_job_id
|
|
@@ -3015,7 +3179,7 @@ module Aws::Backup
|
|
|
3015
3179
|
# resp.backup_vault_arn #=> String
|
|
3016
3180
|
# resp.sns_topic_arn #=> String
|
|
3017
3181
|
# resp.backup_vault_events #=> Array
|
|
3018
|
-
# resp.backup_vault_events[0] #=> String, one of "BACKUP_JOB_STARTED", "BACKUP_JOB_COMPLETED", "BACKUP_JOB_SUCCESSFUL", "BACKUP_JOB_FAILED", "BACKUP_JOB_EXPIRED", "RESTORE_JOB_STARTED", "RESTORE_JOB_COMPLETED", "RESTORE_JOB_SUCCESSFUL", "RESTORE_JOB_FAILED", "COPY_JOB_STARTED", "COPY_JOB_SUCCESSFUL", "COPY_JOB_FAILED", "RECOVERY_POINT_MODIFIED", "BACKUP_PLAN_CREATED", "BACKUP_PLAN_MODIFIED", "S3_BACKUP_OBJECT_FAILED", "S3_RESTORE_OBJECT_FAILED", "CONTINUOUS_BACKUP_INTERRUPTED", "RECOVERY_POINT_INDEX_COMPLETED", "RECOVERY_POINT_INDEX_DELETED", "RECOVERY_POINT_INDEXING_FAILED", "EKS_RESTORE_OBJECT_FAILED", "EKS_RESTORE_OBJECT_SKIPPED", "EKS_BACKUP_OBJECT_FAILED"
|
|
3182
|
+
# resp.backup_vault_events[0] #=> String, one of "BACKUP_JOB_STARTED", "BACKUP_JOB_COMPLETED", "BACKUP_JOB_SUCCESSFUL", "BACKUP_JOB_FAILED", "BACKUP_JOB_EXPIRED", "RESTORE_JOB_STARTED", "RESTORE_JOB_COMPLETED", "RESTORE_JOB_SUCCESSFUL", "RESTORE_JOB_FAILED", "COPY_JOB_STARTED", "COPY_JOB_SUCCESSFUL", "COPY_JOB_FAILED", "RECOVERY_POINT_MODIFIED", "BACKUP_PLAN_CREATED", "BACKUP_PLAN_MODIFIED", "S3_BACKUP_OBJECT_FAILED", "S3_RESTORE_OBJECT_FAILED", "CONTINUOUS_BACKUP_INTERRUPTED", "RECOVERY_POINT_INDEX_COMPLETED", "RECOVERY_POINT_INDEX_DELETED", "RECOVERY_POINT_INDEXING_FAILED", "EKS_RESTORE_OBJECT_FAILED", "EKS_RESTORE_OBJECT_SKIPPED", "EKS_BACKUP_OBJECT_FAILED", "ACCESS_POINT_AVAILABLE", "ACCESS_POINT_CREATION_FAILED", "ACCESS_POINT_DELETED", "ACCESS_POINT_DELETION_FAILED", "ACCESS_POINT_EXPIRED", "ACCESS_POINT_DISASSOCIATED"
|
|
3019
3183
|
#
|
|
3020
3184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/GetBackupVaultNotifications AWS API Documentation
|
|
3021
3185
|
#
|
|
@@ -3466,6 +3630,174 @@ module Aws::Backup
|
|
|
3466
3630
|
req.send_request(options)
|
|
3467
3631
|
end
|
|
3468
3632
|
|
|
3633
|
+
# Returns a list of the backup access points in your account and Region.
|
|
3634
|
+
#
|
|
3635
|
+
# @option params [Integer] :max_results
|
|
3636
|
+
# The maximum number of items to be returned.
|
|
3637
|
+
#
|
|
3638
|
+
# @option params [String] :next_token
|
|
3639
|
+
# The next item following a partial list of returned items. For example,
|
|
3640
|
+
# if a request is made to return `MaxResults` number of items,
|
|
3641
|
+
# `NextToken` allows you to return more items in your list starting at
|
|
3642
|
+
# the location pointed to by the next token.
|
|
3643
|
+
#
|
|
3644
|
+
# @return [Types::ListBackupAccessPointsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3645
|
+
#
|
|
3646
|
+
# * {Types::ListBackupAccessPointsResponse#backup_access_points #backup_access_points} => Array<Types::ListAccessPointsMember>
|
|
3647
|
+
# * {Types::ListBackupAccessPointsResponse#next_token #next_token} => String
|
|
3648
|
+
#
|
|
3649
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
3650
|
+
#
|
|
3651
|
+
# @example Request syntax with placeholder values
|
|
3652
|
+
#
|
|
3653
|
+
# resp = client.list_backup_access_points({
|
|
3654
|
+
# max_results: 1,
|
|
3655
|
+
# next_token: "String",
|
|
3656
|
+
# })
|
|
3657
|
+
#
|
|
3658
|
+
# @example Response structure
|
|
3659
|
+
#
|
|
3660
|
+
# resp.backup_access_points #=> Array
|
|
3661
|
+
# resp.backup_access_points[0].access_point_arn #=> String
|
|
3662
|
+
# resp.backup_access_points[0].access_point_metadata #=> Hash
|
|
3663
|
+
# resp.backup_access_points[0].access_point_metadata["AccessPointMetadataMapKeyString"] #=> String
|
|
3664
|
+
# resp.backup_access_points[0].backup_vault_arn #=> String
|
|
3665
|
+
# resp.backup_access_points[0].backup_vault_name #=> String
|
|
3666
|
+
# resp.backup_access_points[0].creation_time #=> Time
|
|
3667
|
+
# resp.backup_access_points[0].name #=> String
|
|
3668
|
+
# resp.backup_access_points[0].recovery_point_arn #=> String
|
|
3669
|
+
# resp.backup_access_points[0].resource_arn #=> String
|
|
3670
|
+
# resp.backup_access_points[0].resource_type #=> String
|
|
3671
|
+
# resp.backup_access_points[0].status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "DISASSOCIATED", "DISASSOCIATING", "EXPIRED", "FAILED"
|
|
3672
|
+
# resp.backup_access_points[0].status_message #=> String
|
|
3673
|
+
# resp.next_token #=> String
|
|
3674
|
+
#
|
|
3675
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListBackupAccessPoints AWS API Documentation
|
|
3676
|
+
#
|
|
3677
|
+
# @overload list_backup_access_points(params = {})
|
|
3678
|
+
# @param [Hash] params ({})
|
|
3679
|
+
def list_backup_access_points(params = {}, options = {})
|
|
3680
|
+
req = build_request(:list_backup_access_points, params)
|
|
3681
|
+
req.send_request(options)
|
|
3682
|
+
end
|
|
3683
|
+
|
|
3684
|
+
# Returns the backup access points associated with the specified
|
|
3685
|
+
# recovery point.
|
|
3686
|
+
#
|
|
3687
|
+
# If you own the recovery point and have shared it with other accounts,
|
|
3688
|
+
# the response includes backup access points created by those accounts.
|
|
3689
|
+
#
|
|
3690
|
+
# @option params [Integer] :max_results
|
|
3691
|
+
# The maximum number of items to be returned.
|
|
3692
|
+
#
|
|
3693
|
+
# @option params [String] :next_token
|
|
3694
|
+
# The next item following a partial list of returned items. For example,
|
|
3695
|
+
# if a request is made to return `MaxResults` number of items,
|
|
3696
|
+
# `NextToken` allows you to return more items in your list starting at
|
|
3697
|
+
# the location pointed to by the next token.
|
|
3698
|
+
#
|
|
3699
|
+
# @option params [required, String] :recovery_point_arn
|
|
3700
|
+
# The Amazon Resource Name (ARN) of the recovery point whose backup
|
|
3701
|
+
# access points you want to list.
|
|
3702
|
+
#
|
|
3703
|
+
# @return [Types::ListBackupAccessPointsByRecoveryPointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3704
|
+
#
|
|
3705
|
+
# * {Types::ListBackupAccessPointsByRecoveryPointResponse#backup_access_points #backup_access_points} => Array<Types::ListAccessPointsMember>
|
|
3706
|
+
# * {Types::ListBackupAccessPointsByRecoveryPointResponse#next_token #next_token} => String
|
|
3707
|
+
#
|
|
3708
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
3709
|
+
#
|
|
3710
|
+
# @example Request syntax with placeholder values
|
|
3711
|
+
#
|
|
3712
|
+
# resp = client.list_backup_access_points_by_recovery_point({
|
|
3713
|
+
# max_results: 1,
|
|
3714
|
+
# next_token: "String",
|
|
3715
|
+
# recovery_point_arn: "RecoveryPointArn", # required
|
|
3716
|
+
# })
|
|
3717
|
+
#
|
|
3718
|
+
# @example Response structure
|
|
3719
|
+
#
|
|
3720
|
+
# resp.backup_access_points #=> Array
|
|
3721
|
+
# resp.backup_access_points[0].access_point_arn #=> String
|
|
3722
|
+
# resp.backup_access_points[0].access_point_metadata #=> Hash
|
|
3723
|
+
# resp.backup_access_points[0].access_point_metadata["AccessPointMetadataMapKeyString"] #=> String
|
|
3724
|
+
# resp.backup_access_points[0].backup_vault_arn #=> String
|
|
3725
|
+
# resp.backup_access_points[0].backup_vault_name #=> String
|
|
3726
|
+
# resp.backup_access_points[0].creation_time #=> Time
|
|
3727
|
+
# resp.backup_access_points[0].name #=> String
|
|
3728
|
+
# resp.backup_access_points[0].recovery_point_arn #=> String
|
|
3729
|
+
# resp.backup_access_points[0].resource_arn #=> String
|
|
3730
|
+
# resp.backup_access_points[0].resource_type #=> String
|
|
3731
|
+
# resp.backup_access_points[0].status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "DISASSOCIATED", "DISASSOCIATING", "EXPIRED", "FAILED"
|
|
3732
|
+
# resp.backup_access_points[0].status_message #=> String
|
|
3733
|
+
# resp.next_token #=> String
|
|
3734
|
+
#
|
|
3735
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListBackupAccessPointsByRecoveryPoint AWS API Documentation
|
|
3736
|
+
#
|
|
3737
|
+
# @overload list_backup_access_points_by_recovery_point(params = {})
|
|
3738
|
+
# @param [Hash] params ({})
|
|
3739
|
+
def list_backup_access_points_by_recovery_point(params = {}, options = {})
|
|
3740
|
+
req = build_request(:list_backup_access_points_by_recovery_point, params)
|
|
3741
|
+
req.send_request(options)
|
|
3742
|
+
end
|
|
3743
|
+
|
|
3744
|
+
# Returns the backup access points associated with the specified
|
|
3745
|
+
# resource, such as an Amazon S3 bucket.
|
|
3746
|
+
#
|
|
3747
|
+
# @option params [Integer] :max_results
|
|
3748
|
+
# The maximum number of items to be returned.
|
|
3749
|
+
#
|
|
3750
|
+
# @option params [String] :next_token
|
|
3751
|
+
# The next item following a partial list of returned items. For example,
|
|
3752
|
+
# if a request is made to return `MaxResults` number of items,
|
|
3753
|
+
# `NextToken` allows you to return more items in your list starting at
|
|
3754
|
+
# the location pointed to by the next token.
|
|
3755
|
+
#
|
|
3756
|
+
# @option params [required, String] :resource_arn
|
|
3757
|
+
# The Amazon Resource Name (ARN) of the resource whose backup access
|
|
3758
|
+
# points you want to list.
|
|
3759
|
+
#
|
|
3760
|
+
# @return [Types::ListBackupAccessPointsByResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3761
|
+
#
|
|
3762
|
+
# * {Types::ListBackupAccessPointsByResourceResponse#backup_access_points #backup_access_points} => Array<Types::ListAccessPointsMember>
|
|
3763
|
+
# * {Types::ListBackupAccessPointsByResourceResponse#next_token #next_token} => String
|
|
3764
|
+
#
|
|
3765
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
3766
|
+
#
|
|
3767
|
+
# @example Request syntax with placeholder values
|
|
3768
|
+
#
|
|
3769
|
+
# resp = client.list_backup_access_points_by_resource({
|
|
3770
|
+
# max_results: 1,
|
|
3771
|
+
# next_token: "String",
|
|
3772
|
+
# resource_arn: "ResourceArn", # required
|
|
3773
|
+
# })
|
|
3774
|
+
#
|
|
3775
|
+
# @example Response structure
|
|
3776
|
+
#
|
|
3777
|
+
# resp.backup_access_points #=> Array
|
|
3778
|
+
# resp.backup_access_points[0].access_point_arn #=> String
|
|
3779
|
+
# resp.backup_access_points[0].access_point_metadata #=> Hash
|
|
3780
|
+
# resp.backup_access_points[0].access_point_metadata["AccessPointMetadataMapKeyString"] #=> String
|
|
3781
|
+
# resp.backup_access_points[0].backup_vault_arn #=> String
|
|
3782
|
+
# resp.backup_access_points[0].backup_vault_name #=> String
|
|
3783
|
+
# resp.backup_access_points[0].creation_time #=> Time
|
|
3784
|
+
# resp.backup_access_points[0].name #=> String
|
|
3785
|
+
# resp.backup_access_points[0].recovery_point_arn #=> String
|
|
3786
|
+
# resp.backup_access_points[0].resource_arn #=> String
|
|
3787
|
+
# resp.backup_access_points[0].resource_type #=> String
|
|
3788
|
+
# resp.backup_access_points[0].status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "DISASSOCIATED", "DISASSOCIATING", "EXPIRED", "FAILED"
|
|
3789
|
+
# resp.backup_access_points[0].status_message #=> String
|
|
3790
|
+
# resp.next_token #=> String
|
|
3791
|
+
#
|
|
3792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListBackupAccessPointsByResource AWS API Documentation
|
|
3793
|
+
#
|
|
3794
|
+
# @overload list_backup_access_points_by_resource(params = {})
|
|
3795
|
+
# @param [Hash] params ({})
|
|
3796
|
+
def list_backup_access_points_by_resource(params = {}, options = {})
|
|
3797
|
+
req = build_request(:list_backup_access_points_by_resource, params)
|
|
3798
|
+
req.send_request(options)
|
|
3799
|
+
end
|
|
3800
|
+
|
|
3469
3801
|
# This is a request for a summary of backup jobs created or running
|
|
3470
3802
|
# within the most recent 30 days. You can include parameters AccountID,
|
|
3471
3803
|
# State, ResourceType, MessageCategory, AggregationPeriod, MaxResults,
|
|
@@ -4558,9 +4890,14 @@ module Aws::Backup
|
|
|
4558
4890
|
req.send_request(options)
|
|
4559
4891
|
end
|
|
4560
4892
|
|
|
4561
|
-
# Returns an array of resources
|
|
4562
|
-
#
|
|
4563
|
-
# (ARN) of the resource,
|
|
4893
|
+
# Returns an array of resources with recovery points created by Backup
|
|
4894
|
+
# (regardless of the recovery point's [status][1]), including the time
|
|
4895
|
+
# the resource was saved, an Amazon Resource Name (ARN) of the resource,
|
|
4896
|
+
# and a resource type.
|
|
4897
|
+
#
|
|
4898
|
+
#
|
|
4899
|
+
#
|
|
4900
|
+
# [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/API_DescribeRecoveryPoint.html#Backup-DescribeRecoveryPoint-response-Status
|
|
4564
4901
|
#
|
|
4565
4902
|
# @option params [String] :next_token
|
|
4566
4903
|
# The next item following a partial list of returned items. For example,
|
|
@@ -4902,7 +5239,8 @@ module Aws::Backup
|
|
|
4902
5239
|
# associated with the selected resources that are managed by Backup.
|
|
4903
5240
|
#
|
|
4904
5241
|
# If this is set to `FALSE`, the response will contain all recovery
|
|
4905
|
-
# points associated with the selected resource
|
|
5242
|
+
# points associated with the selected resource, except for EBS snapshots
|
|
5243
|
+
# copied within the same Region and account.
|
|
4906
5244
|
#
|
|
4907
5245
|
# Type: Boolean
|
|
4908
5246
|
#
|
|
@@ -6097,7 +6435,7 @@ module Aws::Backup
|
|
|
6097
6435
|
# resp = client.put_backup_vault_notifications({
|
|
6098
6436
|
# backup_vault_name: "BackupVaultName", # required
|
|
6099
6437
|
# sns_topic_arn: "ARN", # required
|
|
6100
|
-
# backup_vault_events: ["BACKUP_JOB_STARTED"], # required, accepts BACKUP_JOB_STARTED, BACKUP_JOB_COMPLETED, BACKUP_JOB_SUCCESSFUL, BACKUP_JOB_FAILED, BACKUP_JOB_EXPIRED, RESTORE_JOB_STARTED, RESTORE_JOB_COMPLETED, RESTORE_JOB_SUCCESSFUL, RESTORE_JOB_FAILED, COPY_JOB_STARTED, COPY_JOB_SUCCESSFUL, COPY_JOB_FAILED, RECOVERY_POINT_MODIFIED, BACKUP_PLAN_CREATED, BACKUP_PLAN_MODIFIED, S3_BACKUP_OBJECT_FAILED, S3_RESTORE_OBJECT_FAILED, CONTINUOUS_BACKUP_INTERRUPTED, RECOVERY_POINT_INDEX_COMPLETED, RECOVERY_POINT_INDEX_DELETED, RECOVERY_POINT_INDEXING_FAILED, EKS_RESTORE_OBJECT_FAILED, EKS_RESTORE_OBJECT_SKIPPED, EKS_BACKUP_OBJECT_FAILED
|
|
6438
|
+
# backup_vault_events: ["BACKUP_JOB_STARTED"], # required, accepts BACKUP_JOB_STARTED, BACKUP_JOB_COMPLETED, BACKUP_JOB_SUCCESSFUL, BACKUP_JOB_FAILED, BACKUP_JOB_EXPIRED, RESTORE_JOB_STARTED, RESTORE_JOB_COMPLETED, RESTORE_JOB_SUCCESSFUL, RESTORE_JOB_FAILED, COPY_JOB_STARTED, COPY_JOB_SUCCESSFUL, COPY_JOB_FAILED, RECOVERY_POINT_MODIFIED, BACKUP_PLAN_CREATED, BACKUP_PLAN_MODIFIED, S3_BACKUP_OBJECT_FAILED, S3_RESTORE_OBJECT_FAILED, CONTINUOUS_BACKUP_INTERRUPTED, RECOVERY_POINT_INDEX_COMPLETED, RECOVERY_POINT_INDEX_DELETED, RECOVERY_POINT_INDEXING_FAILED, EKS_RESTORE_OBJECT_FAILED, EKS_RESTORE_OBJECT_SKIPPED, EKS_BACKUP_OBJECT_FAILED, ACCESS_POINT_AVAILABLE, ACCESS_POINT_CREATION_FAILED, ACCESS_POINT_DELETED, ACCESS_POINT_DELETION_FAILED, ACCESS_POINT_EXPIRED, ACCESS_POINT_DISASSOCIATED
|
|
6101
6439
|
# })
|
|
6102
6440
|
#
|
|
6103
6441
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/PutBackupVaultNotifications AWS API Documentation
|
|
@@ -7532,7 +7870,7 @@ module Aws::Backup
|
|
|
7532
7870
|
tracer: tracer
|
|
7533
7871
|
)
|
|
7534
7872
|
context[:gem_name] = 'aws-sdk-backup'
|
|
7535
|
-
context[:gem_version] = '1.
|
|
7873
|
+
context[:gem_version] = '1.116.0'
|
|
7536
7874
|
Seahorse::Client::Request.new(handlers, context)
|
|
7537
7875
|
end
|
|
7538
7876
|
|