aws-sdk-backup 1.48.0 → 1.49.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 +18 -3
- data/lib/aws-sdk-backup/client_api.rb +8 -0
- data/lib/aws-sdk-backup/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-backup/types.rb +59 -8
- data/lib/aws-sdk-backup.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 696eb1a3b9d692dc50a1b4a3c074f21c7a49957f4e514eb5651a589bb5f40b01
|
|
4
|
+
data.tar.gz: 907b7d3f06b5dc0a8ec62a520fc1f8cf08334f6c5066057c2cfd75a731b9eefc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9cfc60bd7e340ee1743d68d5f52c9a92c662452d2d413ba2014368783db51a1e8fe546eb79e0f010eb23fa33e81d0b517f2773d30380345298ac1fc15b8c0ef
|
|
7
|
+
data.tar.gz: 95611be52588af2fec8d3b68fcdcf8238fda9d8ec8016dd661124ea91ac1706db7c7c3648c0664d12b07ef0505797b836d25f8178555c85442da41c02ca54c20
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.49.0 (2023-02-08)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release added one attribute (resource name) in the output model of our 9 existing APIs in AWS backup so that customers will see the resource name at the output. No input required from Customers.
|
|
8
|
+
|
|
4
9
|
1.48.0 (2023-01-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.49.0
|
|
@@ -1206,6 +1206,7 @@ module Aws::Backup
|
|
|
1206
1206
|
# * {Types::DescribeBackupJobOutput#is_parent #is_parent} => Boolean
|
|
1207
1207
|
# * {Types::DescribeBackupJobOutput#number_of_child_jobs #number_of_child_jobs} => Integer
|
|
1208
1208
|
# * {Types::DescribeBackupJobOutput#child_jobs_in_state #child_jobs_in_state} => Hash<String,Integer>
|
|
1209
|
+
# * {Types::DescribeBackupJobOutput#resource_name #resource_name} => String
|
|
1209
1210
|
#
|
|
1210
1211
|
# @example Request syntax with placeholder values
|
|
1211
1212
|
#
|
|
@@ -1244,6 +1245,7 @@ module Aws::Backup
|
|
|
1244
1245
|
# resp.number_of_child_jobs #=> Integer
|
|
1245
1246
|
# resp.child_jobs_in_state #=> Hash
|
|
1246
1247
|
# resp.child_jobs_in_state["BackupJobState"] #=> Integer
|
|
1248
|
+
# resp.resource_name #=> String
|
|
1247
1249
|
#
|
|
1248
1250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeBackupJob AWS API Documentation
|
|
1249
1251
|
#
|
|
@@ -1344,6 +1346,7 @@ module Aws::Backup
|
|
|
1344
1346
|
# resp.copy_job.number_of_child_jobs #=> Integer
|
|
1345
1347
|
# resp.copy_job.child_jobs_in_state #=> Hash
|
|
1346
1348
|
# resp.copy_job.child_jobs_in_state["CopyJobState"] #=> Integer
|
|
1349
|
+
# resp.copy_job.resource_name #=> String
|
|
1347
1350
|
#
|
|
1348
1351
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeCopyJob AWS API Documentation
|
|
1349
1352
|
#
|
|
@@ -1444,6 +1447,7 @@ module Aws::Backup
|
|
|
1444
1447
|
# * {Types::DescribeProtectedResourceOutput#resource_arn #resource_arn} => String
|
|
1445
1448
|
# * {Types::DescribeProtectedResourceOutput#resource_type #resource_type} => String
|
|
1446
1449
|
# * {Types::DescribeProtectedResourceOutput#last_backup_time #last_backup_time} => Time
|
|
1450
|
+
# * {Types::DescribeProtectedResourceOutput#resource_name #resource_name} => String
|
|
1447
1451
|
#
|
|
1448
1452
|
# @example Request syntax with placeholder values
|
|
1449
1453
|
#
|
|
@@ -1456,6 +1460,7 @@ module Aws::Backup
|
|
|
1456
1460
|
# resp.resource_arn #=> String
|
|
1457
1461
|
# resp.resource_type #=> String
|
|
1458
1462
|
# resp.last_backup_time #=> Time
|
|
1463
|
+
# resp.resource_name #=> String
|
|
1459
1464
|
#
|
|
1460
1465
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeProtectedResource AWS API Documentation
|
|
1461
1466
|
#
|
|
@@ -1504,6 +1509,7 @@ module Aws::Backup
|
|
|
1504
1509
|
# * {Types::DescribeRecoveryPointOutput#parent_recovery_point_arn #parent_recovery_point_arn} => String
|
|
1505
1510
|
# * {Types::DescribeRecoveryPointOutput#composite_member_identifier #composite_member_identifier} => String
|
|
1506
1511
|
# * {Types::DescribeRecoveryPointOutput#is_parent #is_parent} => Boolean
|
|
1512
|
+
# * {Types::DescribeRecoveryPointOutput#resource_name #resource_name} => String
|
|
1507
1513
|
#
|
|
1508
1514
|
# @example Request syntax with placeholder values
|
|
1509
1515
|
#
|
|
@@ -1541,6 +1547,7 @@ module Aws::Backup
|
|
|
1541
1547
|
# resp.parent_recovery_point_arn #=> String
|
|
1542
1548
|
# resp.composite_member_identifier #=> String
|
|
1543
1549
|
# resp.is_parent #=> Boolean
|
|
1550
|
+
# resp.resource_name #=> String
|
|
1544
1551
|
#
|
|
1545
1552
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeRecoveryPoint AWS API Documentation
|
|
1546
1553
|
#
|
|
@@ -2374,6 +2381,7 @@ module Aws::Backup
|
|
|
2374
2381
|
# resp.backup_jobs[0].backup_type #=> String
|
|
2375
2382
|
# resp.backup_jobs[0].parent_job_id #=> String
|
|
2376
2383
|
# resp.backup_jobs[0].is_parent #=> Boolean
|
|
2384
|
+
# resp.backup_jobs[0].resource_name #=> String
|
|
2377
2385
|
# resp.next_token #=> String
|
|
2378
2386
|
#
|
|
2379
2387
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListBackupJobs AWS API Documentation
|
|
@@ -2765,6 +2773,7 @@ module Aws::Backup
|
|
|
2765
2773
|
# resp.copy_jobs[0].number_of_child_jobs #=> Integer
|
|
2766
2774
|
# resp.copy_jobs[0].child_jobs_in_state #=> Hash
|
|
2767
2775
|
# resp.copy_jobs[0].child_jobs_in_state["CopyJobState"] #=> Integer
|
|
2776
|
+
# resp.copy_jobs[0].resource_name #=> String
|
|
2768
2777
|
# resp.next_token #=> String
|
|
2769
2778
|
#
|
|
2770
2779
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListCopyJobs AWS API Documentation
|
|
@@ -2901,6 +2910,7 @@ module Aws::Backup
|
|
|
2901
2910
|
# resp.results[0].resource_arn #=> String
|
|
2902
2911
|
# resp.results[0].resource_type #=> String
|
|
2903
2912
|
# resp.results[0].last_backup_time #=> Time
|
|
2913
|
+
# resp.results[0].resource_name #=> String
|
|
2904
2914
|
# resp.next_token #=> String
|
|
2905
2915
|
#
|
|
2906
2916
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListProtectedResources AWS API Documentation
|
|
@@ -3008,6 +3018,7 @@ module Aws::Backup
|
|
|
3008
3018
|
# resp.recovery_points[0].parent_recovery_point_arn #=> String
|
|
3009
3019
|
# resp.recovery_points[0].composite_member_identifier #=> String
|
|
3010
3020
|
# resp.recovery_points[0].is_parent #=> Boolean
|
|
3021
|
+
# resp.recovery_points[0].resource_name #=> String
|
|
3011
3022
|
#
|
|
3012
3023
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListRecoveryPointsByBackupVault AWS API Documentation
|
|
3013
3024
|
#
|
|
@@ -3116,6 +3127,7 @@ module Aws::Backup
|
|
|
3116
3127
|
# resp.recovery_points[0].backup_vault_name #=> String
|
|
3117
3128
|
# resp.recovery_points[0].is_parent #=> Boolean
|
|
3118
3129
|
# resp.recovery_points[0].parent_recovery_point_arn #=> String
|
|
3130
|
+
# resp.recovery_points[0].resource_name #=> String
|
|
3119
3131
|
#
|
|
3120
3132
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListRecoveryPointsByResource AWS API Documentation
|
|
3121
3133
|
#
|
|
@@ -3436,8 +3448,11 @@ module Aws::Backup
|
|
|
3436
3448
|
# maximum retention period for future backup and copy jobs that target a
|
|
3437
3449
|
# backup vault.
|
|
3438
3450
|
#
|
|
3439
|
-
# <note markdown="1"> Backup Vault Lock has
|
|
3440
|
-
# 17a-4
|
|
3451
|
+
# <note markdown="1"> Backup Vault Lock has been assessed by Cohasset Associates for use in
|
|
3452
|
+
# environments that are subject to SEC 17a-4, CFTC, and FINRA
|
|
3453
|
+
# regulations. For more information about how Backup Vault Lock relates
|
|
3454
|
+
# to these regulations, see the [Cohasset Associates Compliance
|
|
3455
|
+
# Assessment.](samples/cohassetreport.zip)
|
|
3441
3456
|
#
|
|
3442
3457
|
# </note>
|
|
3443
3458
|
#
|
|
@@ -4429,7 +4444,7 @@ module Aws::Backup
|
|
|
4429
4444
|
params: params,
|
|
4430
4445
|
config: config)
|
|
4431
4446
|
context[:gem_name] = 'aws-sdk-backup'
|
|
4432
|
-
context[:gem_version] = '1.
|
|
4447
|
+
context[:gem_version] = '1.49.0'
|
|
4433
4448
|
Seahorse::Client::Request.new(handlers, context)
|
|
4434
4449
|
end
|
|
4435
4450
|
|
|
@@ -312,6 +312,7 @@ module Aws::Backup
|
|
|
312
312
|
BackupJob.add_member(:backup_type, Shapes::ShapeRef.new(shape: string, location_name: "BackupType"))
|
|
313
313
|
BackupJob.add_member(:parent_job_id, Shapes::ShapeRef.new(shape: string, location_name: "ParentJobId"))
|
|
314
314
|
BackupJob.add_member(:is_parent, Shapes::ShapeRef.new(shape: boolean, location_name: "IsParent"))
|
|
315
|
+
BackupJob.add_member(:resource_name, Shapes::ShapeRef.new(shape: string, location_name: "ResourceName"))
|
|
315
316
|
BackupJob.struct_class = Types::BackupJob
|
|
316
317
|
|
|
317
318
|
BackupJobChildJobsInState.key = Shapes::ShapeRef.new(shape: BackupJobState)
|
|
@@ -487,6 +488,7 @@ module Aws::Backup
|
|
|
487
488
|
CopyJob.add_member(:composite_member_identifier, Shapes::ShapeRef.new(shape: string, location_name: "CompositeMemberIdentifier"))
|
|
488
489
|
CopyJob.add_member(:number_of_child_jobs, Shapes::ShapeRef.new(shape: Long, location_name: "NumberOfChildJobs"))
|
|
489
490
|
CopyJob.add_member(:child_jobs_in_state, Shapes::ShapeRef.new(shape: CopyJobChildJobsInState, location_name: "ChildJobsInState"))
|
|
491
|
+
CopyJob.add_member(:resource_name, Shapes::ShapeRef.new(shape: string, location_name: "ResourceName"))
|
|
490
492
|
CopyJob.struct_class = Types::CopyJob
|
|
491
493
|
|
|
492
494
|
CopyJobChildJobsInState.key = Shapes::ShapeRef.new(shape: CopyJobState)
|
|
@@ -639,6 +641,7 @@ module Aws::Backup
|
|
|
639
641
|
DescribeBackupJobOutput.add_member(:is_parent, Shapes::ShapeRef.new(shape: boolean, location_name: "IsParent"))
|
|
640
642
|
DescribeBackupJobOutput.add_member(:number_of_child_jobs, Shapes::ShapeRef.new(shape: Long, location_name: "NumberOfChildJobs"))
|
|
641
643
|
DescribeBackupJobOutput.add_member(:child_jobs_in_state, Shapes::ShapeRef.new(shape: BackupJobChildJobsInState, location_name: "ChildJobsInState"))
|
|
644
|
+
DescribeBackupJobOutput.add_member(:resource_name, Shapes::ShapeRef.new(shape: string, location_name: "ResourceName"))
|
|
642
645
|
DescribeBackupJobOutput.struct_class = Types::DescribeBackupJobOutput
|
|
643
646
|
|
|
644
647
|
DescribeBackupVaultInput.add_member(:backup_vault_name, Shapes::ShapeRef.new(shape: string, required: true, location: "uri", location_name: "backupVaultName"))
|
|
@@ -687,6 +690,7 @@ module Aws::Backup
|
|
|
687
690
|
DescribeProtectedResourceOutput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ResourceArn"))
|
|
688
691
|
DescribeProtectedResourceOutput.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
|
|
689
692
|
DescribeProtectedResourceOutput.add_member(:last_backup_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "LastBackupTime"))
|
|
693
|
+
DescribeProtectedResourceOutput.add_member(:resource_name, Shapes::ShapeRef.new(shape: string, location_name: "ResourceName"))
|
|
690
694
|
DescribeProtectedResourceOutput.struct_class = Types::DescribeProtectedResourceOutput
|
|
691
695
|
|
|
692
696
|
DescribeRecoveryPointInput.add_member(:backup_vault_name, Shapes::ShapeRef.new(shape: BackupVaultName, required: true, location: "uri", location_name: "backupVaultName"))
|
|
@@ -715,6 +719,7 @@ module Aws::Backup
|
|
|
715
719
|
DescribeRecoveryPointOutput.add_member(:parent_recovery_point_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ParentRecoveryPointArn"))
|
|
716
720
|
DescribeRecoveryPointOutput.add_member(:composite_member_identifier, Shapes::ShapeRef.new(shape: string, location_name: "CompositeMemberIdentifier"))
|
|
717
721
|
DescribeRecoveryPointOutput.add_member(:is_parent, Shapes::ShapeRef.new(shape: boolean, location_name: "IsParent"))
|
|
722
|
+
DescribeRecoveryPointOutput.add_member(:resource_name, Shapes::ShapeRef.new(shape: string, location_name: "ResourceName"))
|
|
718
723
|
DescribeRecoveryPointOutput.struct_class = Types::DescribeRecoveryPointOutput
|
|
719
724
|
|
|
720
725
|
DescribeRegionSettingsInput.struct_class = Types::DescribeRegionSettingsInput
|
|
@@ -1103,6 +1108,7 @@ module Aws::Backup
|
|
|
1103
1108
|
ProtectedResource.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ResourceArn"))
|
|
1104
1109
|
ProtectedResource.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
|
|
1105
1110
|
ProtectedResource.add_member(:last_backup_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "LastBackupTime"))
|
|
1111
|
+
ProtectedResource.add_member(:resource_name, Shapes::ShapeRef.new(shape: string, location_name: "ResourceName"))
|
|
1106
1112
|
ProtectedResource.struct_class = Types::ProtectedResource
|
|
1107
1113
|
|
|
1108
1114
|
ProtectedResourcesList.member = Shapes::ShapeRef.new(shape: ProtectedResource)
|
|
@@ -1143,6 +1149,7 @@ module Aws::Backup
|
|
|
1143
1149
|
RecoveryPointByBackupVault.add_member(:parent_recovery_point_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ParentRecoveryPointArn"))
|
|
1144
1150
|
RecoveryPointByBackupVault.add_member(:composite_member_identifier, Shapes::ShapeRef.new(shape: string, location_name: "CompositeMemberIdentifier"))
|
|
1145
1151
|
RecoveryPointByBackupVault.add_member(:is_parent, Shapes::ShapeRef.new(shape: boolean, location_name: "IsParent"))
|
|
1152
|
+
RecoveryPointByBackupVault.add_member(:resource_name, Shapes::ShapeRef.new(shape: string, location_name: "ResourceName"))
|
|
1146
1153
|
RecoveryPointByBackupVault.struct_class = Types::RecoveryPointByBackupVault
|
|
1147
1154
|
|
|
1148
1155
|
RecoveryPointByBackupVaultList.member = Shapes::ShapeRef.new(shape: RecoveryPointByBackupVault)
|
|
@@ -1156,6 +1163,7 @@ module Aws::Backup
|
|
|
1156
1163
|
RecoveryPointByResource.add_member(:backup_vault_name, Shapes::ShapeRef.new(shape: BackupVaultName, location_name: "BackupVaultName"))
|
|
1157
1164
|
RecoveryPointByResource.add_member(:is_parent, Shapes::ShapeRef.new(shape: boolean, location_name: "IsParent"))
|
|
1158
1165
|
RecoveryPointByResource.add_member(:parent_recovery_point_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ParentRecoveryPointArn"))
|
|
1166
|
+
RecoveryPointByResource.add_member(:resource_name, Shapes::ShapeRef.new(shape: string, location_name: "ResourceName"))
|
|
1159
1167
|
RecoveryPointByResource.struct_class = Types::RecoveryPointByResource
|
|
1160
1168
|
|
|
1161
1169
|
RecoveryPointByResourceList.member = Shapes::ShapeRef.new(shape: RecoveryPointByResource)
|
|
@@ -15,7 +15,7 @@ module Aws::Backup
|
|
|
15
15
|
use_fips = parameters.use_fips
|
|
16
16
|
endpoint = parameters.endpoint
|
|
17
17
|
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
|
18
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
|
19
19
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
20
20
|
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
21
21
|
end
|
data/lib/aws-sdk-backup/types.rb
CHANGED
|
@@ -228,6 +228,11 @@ module Aws::Backup
|
|
|
228
228
|
# backup job.
|
|
229
229
|
# @return [Boolean]
|
|
230
230
|
#
|
|
231
|
+
# @!attribute [rw] resource_name
|
|
232
|
+
# This is the non-unique name of the resource that belongs to the
|
|
233
|
+
# specified backup.
|
|
234
|
+
# @return [String]
|
|
235
|
+
#
|
|
231
236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/BackupJob AWS API Documentation
|
|
232
237
|
#
|
|
233
238
|
class BackupJob < Struct.new(
|
|
@@ -252,7 +257,8 @@ module Aws::Backup
|
|
|
252
257
|
:backup_options,
|
|
253
258
|
:backup_type,
|
|
254
259
|
:parent_job_id,
|
|
255
|
-
:is_parent
|
|
260
|
+
:is_parent,
|
|
261
|
+
:resource_name)
|
|
256
262
|
SENSITIVE = []
|
|
257
263
|
include Aws::Structure
|
|
258
264
|
end
|
|
@@ -1253,6 +1259,11 @@ module Aws::Backup
|
|
|
1253
1259
|
# jobs.
|
|
1254
1260
|
# @return [Hash<String,Integer>]
|
|
1255
1261
|
#
|
|
1262
|
+
# @!attribute [rw] resource_name
|
|
1263
|
+
# This is the non-unique name of the resource that belongs to the
|
|
1264
|
+
# specified backup.
|
|
1265
|
+
# @return [String]
|
|
1266
|
+
#
|
|
1256
1267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/CopyJob AWS API Documentation
|
|
1257
1268
|
#
|
|
1258
1269
|
class CopyJob < Struct.new(
|
|
@@ -1275,7 +1286,8 @@ module Aws::Backup
|
|
|
1275
1286
|
:is_parent,
|
|
1276
1287
|
:composite_member_identifier,
|
|
1277
1288
|
:number_of_child_jobs,
|
|
1278
|
-
:child_jobs_in_state
|
|
1289
|
+
:child_jobs_in_state,
|
|
1290
|
+
:resource_name)
|
|
1279
1291
|
SENSITIVE = []
|
|
1280
1292
|
include Aws::Structure
|
|
1281
1293
|
end
|
|
@@ -2077,6 +2089,11 @@ module Aws::Backup
|
|
|
2077
2089
|
# jobs.
|
|
2078
2090
|
# @return [Hash<String,Integer>]
|
|
2079
2091
|
#
|
|
2092
|
+
# @!attribute [rw] resource_name
|
|
2093
|
+
# This is the non-unique name of the resource that belongs to the
|
|
2094
|
+
# specified backup.
|
|
2095
|
+
# @return [String]
|
|
2096
|
+
#
|
|
2080
2097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeBackupJobOutput AWS API Documentation
|
|
2081
2098
|
#
|
|
2082
2099
|
class DescribeBackupJobOutput < Struct.new(
|
|
@@ -2103,7 +2120,8 @@ module Aws::Backup
|
|
|
2103
2120
|
:parent_job_id,
|
|
2104
2121
|
:is_parent,
|
|
2105
2122
|
:number_of_child_jobs,
|
|
2106
|
-
:child_jobs_in_state
|
|
2123
|
+
:child_jobs_in_state,
|
|
2124
|
+
:resource_name)
|
|
2107
2125
|
SENSITIVE = []
|
|
2108
2126
|
include Aws::Structure
|
|
2109
2127
|
end
|
|
@@ -2393,12 +2411,18 @@ module Aws::Backup
|
|
|
2393
2411
|
# represents Friday, January 26, 2018 12:11:30.087 AM.
|
|
2394
2412
|
# @return [Time]
|
|
2395
2413
|
#
|
|
2414
|
+
# @!attribute [rw] resource_name
|
|
2415
|
+
# This is the non-unique name of the resource that belongs to the
|
|
2416
|
+
# specified backup.
|
|
2417
|
+
# @return [String]
|
|
2418
|
+
#
|
|
2396
2419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeProtectedResourceOutput AWS API Documentation
|
|
2397
2420
|
#
|
|
2398
2421
|
class DescribeProtectedResourceOutput < Struct.new(
|
|
2399
2422
|
:resource_arn,
|
|
2400
2423
|
:resource_type,
|
|
2401
|
-
:last_backup_time
|
|
2424
|
+
:last_backup_time,
|
|
2425
|
+
:resource_name)
|
|
2402
2426
|
SENSITIVE = []
|
|
2403
2427
|
include Aws::Structure
|
|
2404
2428
|
end
|
|
@@ -2604,6 +2628,11 @@ module Aws::Backup
|
|
|
2604
2628
|
# (composite) job.
|
|
2605
2629
|
# @return [Boolean]
|
|
2606
2630
|
#
|
|
2631
|
+
# @!attribute [rw] resource_name
|
|
2632
|
+
# This is the non-unique name of the resource that belongs to the
|
|
2633
|
+
# specified backup.
|
|
2634
|
+
# @return [String]
|
|
2635
|
+
#
|
|
2607
2636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeRecoveryPointOutput AWS API Documentation
|
|
2608
2637
|
#
|
|
2609
2638
|
class DescribeRecoveryPointOutput < Struct.new(
|
|
@@ -2628,7 +2657,8 @@ module Aws::Backup
|
|
|
2628
2657
|
:last_restore_time,
|
|
2629
2658
|
:parent_recovery_point_arn,
|
|
2630
2659
|
:composite_member_identifier,
|
|
2631
|
-
:is_parent
|
|
2660
|
+
:is_parent,
|
|
2661
|
+
:resource_name)
|
|
2632
2662
|
SENSITIVE = []
|
|
2633
2663
|
include Aws::Structure
|
|
2634
2664
|
end
|
|
@@ -4682,12 +4712,18 @@ module Aws::Backup
|
|
|
4682
4712
|
# represents Friday, January 26, 2018 12:11:30.087 AM.
|
|
4683
4713
|
# @return [Time]
|
|
4684
4714
|
#
|
|
4715
|
+
# @!attribute [rw] resource_name
|
|
4716
|
+
# This is the non-unique name of the resource that belongs to the
|
|
4717
|
+
# specified backup.
|
|
4718
|
+
# @return [String]
|
|
4719
|
+
#
|
|
4685
4720
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ProtectedResource AWS API Documentation
|
|
4686
4721
|
#
|
|
4687
4722
|
class ProtectedResource < Struct.new(
|
|
4688
4723
|
:resource_arn,
|
|
4689
4724
|
:resource_type,
|
|
4690
|
-
:last_backup_time
|
|
4725
|
+
:last_backup_time,
|
|
4726
|
+
:resource_name)
|
|
4691
4727
|
SENSITIVE = []
|
|
4692
4728
|
include Aws::Structure
|
|
4693
4729
|
end
|
|
@@ -4991,6 +5027,11 @@ module Aws::Backup
|
|
|
4991
5027
|
# recovery point.
|
|
4992
5028
|
# @return [Boolean]
|
|
4993
5029
|
#
|
|
5030
|
+
# @!attribute [rw] resource_name
|
|
5031
|
+
# This is the non-unique name of the resource that belongs to the
|
|
5032
|
+
# specified backup.
|
|
5033
|
+
# @return [String]
|
|
5034
|
+
#
|
|
4994
5035
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/RecoveryPointByBackupVault AWS API Documentation
|
|
4995
5036
|
#
|
|
4996
5037
|
class RecoveryPointByBackupVault < Struct.new(
|
|
@@ -5014,7 +5055,8 @@ module Aws::Backup
|
|
|
5014
5055
|
:last_restore_time,
|
|
5015
5056
|
:parent_recovery_point_arn,
|
|
5016
5057
|
:composite_member_identifier,
|
|
5017
|
-
:is_parent
|
|
5058
|
+
:is_parent,
|
|
5059
|
+
:resource_name)
|
|
5018
5060
|
SENSITIVE = []
|
|
5019
5061
|
include Aws::Structure
|
|
5020
5062
|
end
|
|
@@ -5070,6 +5112,11 @@ module Aws::Backup
|
|
|
5070
5112
|
# recovery point.
|
|
5071
5113
|
# @return [String]
|
|
5072
5114
|
#
|
|
5115
|
+
# @!attribute [rw] resource_name
|
|
5116
|
+
# This is the non-unique name of the resource that belongs to the
|
|
5117
|
+
# specified backup.
|
|
5118
|
+
# @return [String]
|
|
5119
|
+
#
|
|
5073
5120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/RecoveryPointByResource AWS API Documentation
|
|
5074
5121
|
#
|
|
5075
5122
|
class RecoveryPointByResource < Struct.new(
|
|
@@ -5081,7 +5128,8 @@ module Aws::Backup
|
|
|
5081
5128
|
:backup_size_bytes,
|
|
5082
5129
|
:backup_vault_name,
|
|
5083
5130
|
:is_parent,
|
|
5084
|
-
:parent_recovery_point_arn
|
|
5131
|
+
:parent_recovery_point_arn,
|
|
5132
|
+
:resource_name)
|
|
5085
5133
|
SENSITIVE = []
|
|
5086
5134
|
include Aws::Structure
|
|
5087
5135
|
end
|
|
@@ -5657,6 +5705,9 @@ module Aws::Backup
|
|
|
5657
5705
|
# @return [String]
|
|
5658
5706
|
#
|
|
5659
5707
|
# @!attribute [rw] recovery_point_arn
|
|
5708
|
+
# *Note: This field is only returned for Amazon EFS and Advanced
|
|
5709
|
+
# DynamoDB resources.*
|
|
5710
|
+
#
|
|
5660
5711
|
# An ARN that uniquely identifies a recovery point; for example,
|
|
5661
5712
|
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
|
|
5662
5713
|
# @return [String]
|
data/lib/aws-sdk-backup.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-backup
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.49.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-02-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|