aws-sdk-backup 1.99.0 → 1.100.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 +14 -1
- data/lib/aws-sdk-backup/client_api.rb +5 -0
- data/lib/aws-sdk-backup/types.rb +32 -2
- data/lib/aws-sdk-backup.rb +1 -1
- data/sig/client.rbs +4 -1
- data/sig/types.rbs +5 -0
- 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: 3a794a2a08e60501e32ac5e529b32efce87a2c40305d9a301980703e1569e939
|
|
4
|
+
data.tar.gz: 11fc4b33774f4b75addccd2a1eafa314493512f7fbbfb56d09cc4d38c1b86927
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cccfcf11de66fdc45a7578bc9064221ed82a42665d7be7e7ac341fecb996a832772f48fc38171771d47cf278aca22132a0eed99ddbab08b2a904cccc19fb71dc
|
|
7
|
+
data.tar.gz: 6b1fab099070a86660d60bde2702f799bf73b85ab4d9c3e0939c0b4ca705467d8fc06cc8f067d2e3fe17d0d746db4123ab4fcc0a8a1dca3cd31a92a61b3e3beb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.100.0 (2025-11-10)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Backup supports backups of Amazon EKS clusters, including Kubernetes cluster state and persistent storage attached to the EKS cluster via a persistent volume claim (EBS volumes, EFS file systems, and S3 buckets).
|
|
8
|
+
|
|
4
9
|
1.99.0 (2025-11-06)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.100.0
|
|
@@ -2296,6 +2296,8 @@ module Aws::Backup
|
|
|
2296
2296
|
# * {Types::DescribeRestoreJobOutput#validation_status_message #validation_status_message} => String
|
|
2297
2297
|
# * {Types::DescribeRestoreJobOutput#deletion_status #deletion_status} => String
|
|
2298
2298
|
# * {Types::DescribeRestoreJobOutput#deletion_status_message #deletion_status_message} => String
|
|
2299
|
+
# * {Types::DescribeRestoreJobOutput#is_parent #is_parent} => Boolean
|
|
2300
|
+
# * {Types::DescribeRestoreJobOutput#parent_job_id #parent_job_id} => String
|
|
2299
2301
|
#
|
|
2300
2302
|
# @example Request syntax with placeholder values
|
|
2301
2303
|
#
|
|
@@ -2326,6 +2328,8 @@ module Aws::Backup
|
|
|
2326
2328
|
# resp.validation_status_message #=> String
|
|
2327
2329
|
# resp.deletion_status #=> String, one of "DELETING", "FAILED", "SUCCESSFUL"
|
|
2328
2330
|
# resp.deletion_status_message #=> String
|
|
2331
|
+
# resp.is_parent #=> Boolean
|
|
2332
|
+
# resp.parent_job_id #=> String
|
|
2329
2333
|
#
|
|
2330
2334
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeRestoreJob AWS API Documentation
|
|
2331
2335
|
#
|
|
@@ -4972,6 +4976,10 @@ module Aws::Backup
|
|
|
4972
4976
|
# This returns only restore testing jobs that match the specified
|
|
4973
4977
|
# resource Amazon Resource Name (ARN).
|
|
4974
4978
|
#
|
|
4979
|
+
# @option params [String] :by_parent_job_id
|
|
4980
|
+
# This is a filter to list child (nested) restore jobs based on parent
|
|
4981
|
+
# restore job ID.
|
|
4982
|
+
#
|
|
4975
4983
|
# @return [Types::ListRestoreJobsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4976
4984
|
#
|
|
4977
4985
|
# * {Types::ListRestoreJobsOutput#restore_jobs #restore_jobs} => Array<Types::RestoreJobsListMember>
|
|
@@ -4992,6 +5000,7 @@ module Aws::Backup
|
|
|
4992
5000
|
# by_complete_before: Time.now,
|
|
4993
5001
|
# by_complete_after: Time.now,
|
|
4994
5002
|
# by_restore_testing_plan_arn: "ARN",
|
|
5003
|
+
# by_parent_job_id: "string",
|
|
4995
5004
|
# })
|
|
4996
5005
|
#
|
|
4997
5006
|
# @example Response structure
|
|
@@ -5013,6 +5022,8 @@ module Aws::Backup
|
|
|
5013
5022
|
# resp.restore_jobs[0].created_resource_arn #=> String
|
|
5014
5023
|
# resp.restore_jobs[0].resource_type #=> String
|
|
5015
5024
|
# resp.restore_jobs[0].recovery_point_creation_date #=> Time
|
|
5025
|
+
# resp.restore_jobs[0].is_parent #=> Boolean
|
|
5026
|
+
# resp.restore_jobs[0].parent_job_id #=> String
|
|
5016
5027
|
# resp.restore_jobs[0].created_by.restore_testing_plan_arn #=> String
|
|
5017
5028
|
# resp.restore_jobs[0].validation_status #=> String, one of "FAILED", "SUCCESSFUL", "TIMED_OUT", "VALIDATING"
|
|
5018
5029
|
# resp.restore_jobs[0].validation_status_message #=> String
|
|
@@ -5098,6 +5109,8 @@ module Aws::Backup
|
|
|
5098
5109
|
# resp.restore_jobs[0].created_resource_arn #=> String
|
|
5099
5110
|
# resp.restore_jobs[0].resource_type #=> String
|
|
5100
5111
|
# resp.restore_jobs[0].recovery_point_creation_date #=> Time
|
|
5112
|
+
# resp.restore_jobs[0].is_parent #=> Boolean
|
|
5113
|
+
# resp.restore_jobs[0].parent_job_id #=> String
|
|
5101
5114
|
# resp.restore_jobs[0].created_by.restore_testing_plan_arn #=> String
|
|
5102
5115
|
# resp.restore_jobs[0].validation_status #=> String, one of "FAILED", "SUCCESSFUL", "TIMED_OUT", "VALIDATING"
|
|
5103
5116
|
# resp.restore_jobs[0].validation_status_message #=> String
|
|
@@ -6697,7 +6710,7 @@ module Aws::Backup
|
|
|
6697
6710
|
tracer: tracer
|
|
6698
6711
|
)
|
|
6699
6712
|
context[:gem_name] = 'aws-sdk-backup'
|
|
6700
|
-
context[:gem_version] = '1.
|
|
6713
|
+
context[:gem_version] = '1.100.0'
|
|
6701
6714
|
Seahorse::Client::Request.new(handlers, context)
|
|
6702
6715
|
end
|
|
6703
6716
|
|
|
@@ -1000,6 +1000,8 @@ module Aws::Backup
|
|
|
1000
1000
|
DescribeRestoreJobOutput.add_member(:validation_status_message, Shapes::ShapeRef.new(shape: string, location_name: "ValidationStatusMessage"))
|
|
1001
1001
|
DescribeRestoreJobOutput.add_member(:deletion_status, Shapes::ShapeRef.new(shape: RestoreDeletionStatus, location_name: "DeletionStatus"))
|
|
1002
1002
|
DescribeRestoreJobOutput.add_member(:deletion_status_message, Shapes::ShapeRef.new(shape: string, location_name: "DeletionStatusMessage"))
|
|
1003
|
+
DescribeRestoreJobOutput.add_member(:is_parent, Shapes::ShapeRef.new(shape: boolean, location_name: "IsParent"))
|
|
1004
|
+
DescribeRestoreJobOutput.add_member(:parent_job_id, Shapes::ShapeRef.new(shape: string, location_name: "ParentJobId"))
|
|
1003
1005
|
DescribeRestoreJobOutput.struct_class = Types::DescribeRestoreJobOutput
|
|
1004
1006
|
|
|
1005
1007
|
DisassociateBackupVaultMpaApprovalTeamInput.add_member(:backup_vault_name, Shapes::ShapeRef.new(shape: BackupVaultName, required: true, location: "uri", location_name: "backupVaultName"))
|
|
@@ -1508,6 +1510,7 @@ module Aws::Backup
|
|
|
1508
1510
|
ListRestoreJobsInput.add_member(:by_complete_before, Shapes::ShapeRef.new(shape: timestamp, location: "querystring", location_name: "completeBefore"))
|
|
1509
1511
|
ListRestoreJobsInput.add_member(:by_complete_after, Shapes::ShapeRef.new(shape: timestamp, location: "querystring", location_name: "completeAfter"))
|
|
1510
1512
|
ListRestoreJobsInput.add_member(:by_restore_testing_plan_arn, Shapes::ShapeRef.new(shape: ARN, location: "querystring", location_name: "restoreTestingPlanArn"))
|
|
1513
|
+
ListRestoreJobsInput.add_member(:by_parent_job_id, Shapes::ShapeRef.new(shape: string, location: "querystring", location_name: "parentJobId"))
|
|
1511
1514
|
ListRestoreJobsInput.struct_class = Types::ListRestoreJobsInput
|
|
1512
1515
|
|
|
1513
1516
|
ListRestoreJobsOutput.add_member(:restore_jobs, Shapes::ShapeRef.new(shape: RestoreJobsList, location_name: "RestoreJobs"))
|
|
@@ -1758,6 +1761,8 @@ module Aws::Backup
|
|
|
1758
1761
|
RestoreJobsListMember.add_member(:created_resource_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "CreatedResourceArn"))
|
|
1759
1762
|
RestoreJobsListMember.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
|
|
1760
1763
|
RestoreJobsListMember.add_member(:recovery_point_creation_date, Shapes::ShapeRef.new(shape: timestamp, location_name: "RecoveryPointCreationDate"))
|
|
1764
|
+
RestoreJobsListMember.add_member(:is_parent, Shapes::ShapeRef.new(shape: boolean, location_name: "IsParent"))
|
|
1765
|
+
RestoreJobsListMember.add_member(:parent_job_id, Shapes::ShapeRef.new(shape: string, location_name: "ParentJobId"))
|
|
1761
1766
|
RestoreJobsListMember.add_member(:created_by, Shapes::ShapeRef.new(shape: RestoreJobCreator, location_name: "CreatedBy"))
|
|
1762
1767
|
RestoreJobsListMember.add_member(:validation_status, Shapes::ShapeRef.new(shape: RestoreValidationStatus, location_name: "ValidationStatus"))
|
|
1763
1768
|
RestoreJobsListMember.add_member(:validation_status_message, Shapes::ShapeRef.new(shape: string, location_name: "ValidationStatusMessage"))
|
data/lib/aws-sdk-backup/types.rb
CHANGED
|
@@ -3877,6 +3877,16 @@ module Aws::Backup
|
|
|
3877
3877
|
# This describes the restore job deletion status.
|
|
3878
3878
|
# @return [String]
|
|
3879
3879
|
#
|
|
3880
|
+
# @!attribute [rw] is_parent
|
|
3881
|
+
# This is a boolean value indicating whether the restore job is a
|
|
3882
|
+
# parent (composite) restore job.
|
|
3883
|
+
# @return [Boolean]
|
|
3884
|
+
#
|
|
3885
|
+
# @!attribute [rw] parent_job_id
|
|
3886
|
+
# This is the unique identifier of the parent restore job for the
|
|
3887
|
+
# selected restore job.
|
|
3888
|
+
# @return [String]
|
|
3889
|
+
#
|
|
3880
3890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeRestoreJobOutput AWS API Documentation
|
|
3881
3891
|
#
|
|
3882
3892
|
class DescribeRestoreJobOutput < Struct.new(
|
|
@@ -3900,7 +3910,9 @@ module Aws::Backup
|
|
|
3900
3910
|
:validation_status,
|
|
3901
3911
|
:validation_status_message,
|
|
3902
3912
|
:deletion_status,
|
|
3903
|
-
:deletion_status_message
|
|
3913
|
+
:deletion_status_message,
|
|
3914
|
+
:is_parent,
|
|
3915
|
+
:parent_job_id)
|
|
3904
3916
|
SENSITIVE = []
|
|
3905
3917
|
include Aws::Structure
|
|
3906
3918
|
end
|
|
@@ -6902,6 +6914,11 @@ module Aws::Backup
|
|
|
6902
6914
|
# resource Amazon Resource Name (ARN).
|
|
6903
6915
|
# @return [String]
|
|
6904
6916
|
#
|
|
6917
|
+
# @!attribute [rw] by_parent_job_id
|
|
6918
|
+
# This is a filter to list child (nested) restore jobs based on parent
|
|
6919
|
+
# restore job ID.
|
|
6920
|
+
# @return [String]
|
|
6921
|
+
#
|
|
6905
6922
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListRestoreJobsInput AWS API Documentation
|
|
6906
6923
|
#
|
|
6907
6924
|
class ListRestoreJobsInput < Struct.new(
|
|
@@ -6914,7 +6931,8 @@ module Aws::Backup
|
|
|
6914
6931
|
:by_status,
|
|
6915
6932
|
:by_complete_before,
|
|
6916
6933
|
:by_complete_after,
|
|
6917
|
-
:by_restore_testing_plan_arn
|
|
6934
|
+
:by_restore_testing_plan_arn,
|
|
6935
|
+
:by_parent_job_id)
|
|
6918
6936
|
SENSITIVE = []
|
|
6919
6937
|
include Aws::Structure
|
|
6920
6938
|
end
|
|
@@ -8250,6 +8268,16 @@ module Aws::Backup
|
|
|
8250
8268
|
# The date on which a recovery point was created.
|
|
8251
8269
|
# @return [Time]
|
|
8252
8270
|
#
|
|
8271
|
+
# @!attribute [rw] is_parent
|
|
8272
|
+
# This is a boolean value indicating whether the restore job is a
|
|
8273
|
+
# parent (composite) restore job.
|
|
8274
|
+
# @return [Boolean]
|
|
8275
|
+
#
|
|
8276
|
+
# @!attribute [rw] parent_job_id
|
|
8277
|
+
# This is the unique identifier of the parent restore job for the
|
|
8278
|
+
# selected restore job.
|
|
8279
|
+
# @return [String]
|
|
8280
|
+
#
|
|
8253
8281
|
# @!attribute [rw] created_by
|
|
8254
8282
|
# Contains identifying information about the creation of a restore
|
|
8255
8283
|
# job.
|
|
@@ -8292,6 +8320,8 @@ module Aws::Backup
|
|
|
8292
8320
|
:created_resource_arn,
|
|
8293
8321
|
:resource_type,
|
|
8294
8322
|
:recovery_point_creation_date,
|
|
8323
|
+
:is_parent,
|
|
8324
|
+
:parent_job_id,
|
|
8295
8325
|
:created_by,
|
|
8296
8326
|
:validation_status,
|
|
8297
8327
|
:validation_status_message,
|
data/lib/aws-sdk-backup.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -693,6 +693,8 @@ module Aws
|
|
|
693
693
|
def validation_status_message: () -> ::String
|
|
694
694
|
def deletion_status: () -> ("DELETING" | "FAILED" | "SUCCESSFUL")
|
|
695
695
|
def deletion_status_message: () -> ::String
|
|
696
|
+
def is_parent: () -> bool
|
|
697
|
+
def parent_job_id: () -> ::String
|
|
696
698
|
end
|
|
697
699
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_restore_job-instance_method
|
|
698
700
|
def describe_restore_job: (
|
|
@@ -1252,7 +1254,8 @@ module Aws
|
|
|
1252
1254
|
?by_status: ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED"),
|
|
1253
1255
|
?by_complete_before: ::Time,
|
|
1254
1256
|
?by_complete_after: ::Time,
|
|
1255
|
-
?by_restore_testing_plan_arn: ::String
|
|
1257
|
+
?by_restore_testing_plan_arn: ::String,
|
|
1258
|
+
?by_parent_job_id: ::String
|
|
1256
1259
|
) -> _ListRestoreJobsResponseSuccess
|
|
1257
1260
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRestoreJobsResponseSuccess
|
|
1258
1261
|
|
data/sig/types.rbs
CHANGED
|
@@ -742,6 +742,8 @@ module Aws::Backup
|
|
|
742
742
|
attr_accessor validation_status_message: ::String
|
|
743
743
|
attr_accessor deletion_status: ("DELETING" | "FAILED" | "SUCCESSFUL")
|
|
744
744
|
attr_accessor deletion_status_message: ::String
|
|
745
|
+
attr_accessor is_parent: bool
|
|
746
|
+
attr_accessor parent_job_id: ::String
|
|
745
747
|
SENSITIVE: []
|
|
746
748
|
end
|
|
747
749
|
|
|
@@ -1411,6 +1413,7 @@ module Aws::Backup
|
|
|
1411
1413
|
attr_accessor by_complete_before: ::Time
|
|
1412
1414
|
attr_accessor by_complete_after: ::Time
|
|
1413
1415
|
attr_accessor by_restore_testing_plan_arn: ::String
|
|
1416
|
+
attr_accessor by_parent_job_id: ::String
|
|
1414
1417
|
SENSITIVE: []
|
|
1415
1418
|
end
|
|
1416
1419
|
|
|
@@ -1684,6 +1687,8 @@ module Aws::Backup
|
|
|
1684
1687
|
attr_accessor created_resource_arn: ::String
|
|
1685
1688
|
attr_accessor resource_type: ::String
|
|
1686
1689
|
attr_accessor recovery_point_creation_date: ::Time
|
|
1690
|
+
attr_accessor is_parent: bool
|
|
1691
|
+
attr_accessor parent_job_id: ::String
|
|
1687
1692
|
attr_accessor created_by: Types::RestoreJobCreator
|
|
1688
1693
|
attr_accessor validation_status: ("FAILED" | "SUCCESSFUL" | "TIMED_OUT" | "VALIDATING")
|
|
1689
1694
|
attr_accessor validation_status_message: ::String
|