@@ -213,6 +213,11 @@ import {
213
213
GetLegalHoldCommandInput ,
214
214
GetLegalHoldCommandOutput ,
215
215
} from "./commands/GetLegalHoldCommand" ;
216
+ import {
217
+ GetRecoveryPointIndexDetailsCommand ,
218
+ GetRecoveryPointIndexDetailsCommandInput ,
219
+ GetRecoveryPointIndexDetailsCommandOutput ,
220
+ } from "./commands/GetRecoveryPointIndexDetailsCommand" ;
216
221
import {
217
222
GetRecoveryPointRestoreMetadataCommand ,
218
223
GetRecoveryPointRestoreMetadataCommandInput ,
@@ -293,6 +298,11 @@ import {
293
298
ListFrameworksCommandInput ,
294
299
ListFrameworksCommandOutput ,
295
300
} from "./commands/ListFrameworksCommand" ;
301
+ import {
302
+ ListIndexedRecoveryPointsCommand ,
303
+ ListIndexedRecoveryPointsCommandInput ,
304
+ ListIndexedRecoveryPointsCommandOutput ,
305
+ } from "./commands/ListIndexedRecoveryPointsCommand" ;
296
306
import {
297
307
ListLegalHoldsCommand ,
298
308
ListLegalHoldsCommandInput ,
@@ -425,6 +435,11 @@ import {
425
435
UpdateGlobalSettingsCommandInput ,
426
436
UpdateGlobalSettingsCommandOutput ,
427
437
} from "./commands/UpdateGlobalSettingsCommand" ;
438
+ import {
439
+ UpdateRecoveryPointIndexSettingsCommand ,
440
+ UpdateRecoveryPointIndexSettingsCommandInput ,
441
+ UpdateRecoveryPointIndexSettingsCommandOutput ,
442
+ } from "./commands/UpdateRecoveryPointIndexSettingsCommand" ;
428
443
import {
429
444
UpdateRecoveryPointLifecycleCommand ,
430
445
UpdateRecoveryPointLifecycleCommandInput ,
@@ -494,6 +509,7 @@ const commands = {
494
509
GetBackupVaultAccessPolicyCommand,
495
510
GetBackupVaultNotificationsCommand,
496
511
GetLegalHoldCommand,
512
+ GetRecoveryPointIndexDetailsCommand,
497
513
GetRecoveryPointRestoreMetadataCommand,
498
514
GetRestoreJobMetadataCommand,
499
515
GetRestoreTestingInferredMetadataCommand,
@@ -510,6 +526,7 @@ const commands = {
510
526
ListCopyJobsCommand,
511
527
ListCopyJobSummariesCommand,
512
528
ListFrameworksCommand,
529
+ ListIndexedRecoveryPointsCommand,
513
530
ListLegalHoldsCommand,
514
531
ListProtectedResourcesCommand,
515
532
ListProtectedResourcesByBackupVaultCommand,
@@ -538,6 +555,7 @@ const commands = {
538
555
UpdateBackupPlanCommand,
539
556
UpdateFrameworkCommand,
540
557
UpdateGlobalSettingsCommand,
558
+ UpdateRecoveryPointIndexSettingsCommand,
541
559
UpdateRecoveryPointLifecycleCommand,
542
560
UpdateRegionSettingsCommand,
543
561
UpdateReportPlanCommand,
@@ -1235,6 +1253,23 @@ export interface Backup {
1235
1253
cb : ( err : any , data ?: GetLegalHoldCommandOutput ) => void
1236
1254
) : void ;
1237
1255
1256
+ /**
1257
+ * @see {@link GetRecoveryPointIndexDetailsCommand }
1258
+ */
1259
+ getRecoveryPointIndexDetails (
1260
+ args : GetRecoveryPointIndexDetailsCommandInput ,
1261
+ options ?: __HttpHandlerOptions
1262
+ ) : Promise < GetRecoveryPointIndexDetailsCommandOutput > ;
1263
+ getRecoveryPointIndexDetails (
1264
+ args : GetRecoveryPointIndexDetailsCommandInput ,
1265
+ cb : ( err : any , data ?: GetRecoveryPointIndexDetailsCommandOutput ) => void
1266
+ ) : void ;
1267
+ getRecoveryPointIndexDetails (
1268
+ args : GetRecoveryPointIndexDetailsCommandInput ,
1269
+ options : __HttpHandlerOptions ,
1270
+ cb : ( err : any , data ?: GetRecoveryPointIndexDetailsCommandOutput ) => void
1271
+ ) : void ;
1272
+
1238
1273
/**
1239
1274
* @see {@link GetRecoveryPointRestoreMetadataCommand }
1240
1275
*/
@@ -1501,6 +1536,24 @@ export interface Backup {
1501
1536
cb : ( err : any , data ?: ListFrameworksCommandOutput ) => void
1502
1537
) : void ;
1503
1538
1539
+ /**
1540
+ * @see {@link ListIndexedRecoveryPointsCommand }
1541
+ */
1542
+ listIndexedRecoveryPoints ( ) : Promise < ListIndexedRecoveryPointsCommandOutput > ;
1543
+ listIndexedRecoveryPoints (
1544
+ args : ListIndexedRecoveryPointsCommandInput ,
1545
+ options ?: __HttpHandlerOptions
1546
+ ) : Promise < ListIndexedRecoveryPointsCommandOutput > ;
1547
+ listIndexedRecoveryPoints (
1548
+ args : ListIndexedRecoveryPointsCommandInput ,
1549
+ cb : ( err : any , data ?: ListIndexedRecoveryPointsCommandOutput ) => void
1550
+ ) : void ;
1551
+ listIndexedRecoveryPoints (
1552
+ args : ListIndexedRecoveryPointsCommandInput ,
1553
+ options : __HttpHandlerOptions ,
1554
+ cb : ( err : any , data ?: ListIndexedRecoveryPointsCommandOutput ) => void
1555
+ ) : void ;
1556
+
1504
1557
/**
1505
1558
* @see {@link ListLegalHoldsCommand }
1506
1559
*/
@@ -1931,6 +1984,23 @@ export interface Backup {
1931
1984
cb : ( err : any , data ?: UpdateGlobalSettingsCommandOutput ) => void
1932
1985
) : void ;
1933
1986
1987
+ /**
1988
+ * @see {@link UpdateRecoveryPointIndexSettingsCommand }
1989
+ */
1990
+ updateRecoveryPointIndexSettings (
1991
+ args : UpdateRecoveryPointIndexSettingsCommandInput ,
1992
+ options ?: __HttpHandlerOptions
1993
+ ) : Promise < UpdateRecoveryPointIndexSettingsCommandOutput > ;
1994
+ updateRecoveryPointIndexSettings (
1995
+ args : UpdateRecoveryPointIndexSettingsCommandInput ,
1996
+ cb : ( err : any , data ?: UpdateRecoveryPointIndexSettingsCommandOutput ) => void
1997
+ ) : void ;
1998
+ updateRecoveryPointIndexSettings (
1999
+ args : UpdateRecoveryPointIndexSettingsCommandInput ,
2000
+ options : __HttpHandlerOptions ,
2001
+ cb : ( err : any , data ?: UpdateRecoveryPointIndexSettingsCommandOutput ) => void
2002
+ ) : void ;
2003
+
1934
2004
/**
1935
2005
* @see {@link UpdateRecoveryPointLifecycleCommand }
1936
2006
*/
0 commit comments