@aws-sdk/client-backup 3.712.0 → 3.714.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.
Files changed (49) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +206 -4
  3. package/dist-cjs/runtimeConfig.js +8 -6
  4. package/dist-es/Backup.js +6 -0
  5. package/dist-es/commands/GetRecoveryPointIndexDetailsCommand.js +22 -0
  6. package/dist-es/commands/ListIndexedRecoveryPointsCommand.js +22 -0
  7. package/dist-es/commands/UpdateRecoveryPointIndexSettingsCommand.js +22 -0
  8. package/dist-es/commands/index.js +3 -0
  9. package/dist-es/models/models_0.js +10 -0
  10. package/dist-es/pagination/ListIndexedRecoveryPointsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/protocols/Aws_restJson1.js +135 -4
  13. package/dist-es/runtimeConfig.js +8 -6
  14. package/dist-types/Backup.d.ts +22 -0
  15. package/dist-types/BackupClient.d.ts +23 -2
  16. package/dist-types/commands/CreateBackupPlanCommand.d.ts +7 -0
  17. package/dist-types/commands/DescribeRecoveryPointCommand.d.ts +2 -0
  18. package/dist-types/commands/GetBackupPlanCommand.d.ts +7 -0
  19. package/dist-types/commands/GetBackupPlanFromJSONCommand.d.ts +7 -0
  20. package/dist-types/commands/GetBackupPlanFromTemplateCommand.d.ts +7 -0
  21. package/dist-types/commands/GetRecoveryPointIndexDetailsCommand.d.ts +94 -0
  22. package/dist-types/commands/ListIndexedRecoveryPointsCommand.d.ts +104 -0
  23. package/dist-types/commands/ListRecoveryPointsByBackupVaultCommand.d.ts +2 -0
  24. package/dist-types/commands/ListRecoveryPointsByResourceCommand.d.ts +2 -0
  25. package/dist-types/commands/StartBackupJobCommand.d.ts +1 -0
  26. package/dist-types/commands/UpdateBackupPlanCommand.d.ts +7 -0
  27. package/dist-types/commands/UpdateRecoveryPointIndexSettingsCommand.d.ts +95 -0
  28. package/dist-types/commands/index.d.ts +3 -0
  29. package/dist-types/models/models_0.d.ts +475 -0
  30. package/dist-types/pagination/ListIndexedRecoveryPointsPaginator.d.ts +7 -0
  31. package/dist-types/pagination/index.d.ts +1 -0
  32. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  33. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  34. package/dist-types/runtimeConfig.d.ts +1 -0
  35. package/dist-types/runtimeConfig.native.d.ts +1 -0
  36. package/dist-types/ts3.4/Backup.d.ts +52 -0
  37. package/dist-types/ts3.4/BackupClient.d.ts +19 -0
  38. package/dist-types/ts3.4/commands/GetRecoveryPointIndexDetailsCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/ListIndexedRecoveryPointsCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/UpdateRecoveryPointIndexSettingsCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +75 -0
  43. package/dist-types/ts3.4/pagination/ListIndexedRecoveryPointsPaginator.d.ts +11 -0
  44. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  45. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  49. package/package.json +14 -14
@@ -20,6 +20,7 @@ export declare const getRuntimeConfig: (config: BackupClientConfig) => {
20
20
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
22
  region: string | import("@smithy/types").Provider<any>;
23
+ profile?: string | undefined;
23
24
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
24
25
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
26
  maxAttempts: number | import("@smithy/types").Provider<number>;
@@ -168,6 +168,10 @@ import {
168
168
  GetLegalHoldCommandInput,
169
169
  GetLegalHoldCommandOutput,
170
170
  } from "./commands/GetLegalHoldCommand";
171
+ import {
172
+ GetRecoveryPointIndexDetailsCommandInput,
173
+ GetRecoveryPointIndexDetailsCommandOutput,
174
+ } from "./commands/GetRecoveryPointIndexDetailsCommand";
171
175
  import {
172
176
  GetRecoveryPointRestoreMetadataCommandInput,
173
177
  GetRecoveryPointRestoreMetadataCommandOutput,
@@ -232,6 +236,10 @@ import {
232
236
  ListFrameworksCommandInput,
233
237
  ListFrameworksCommandOutput,
234
238
  } from "./commands/ListFrameworksCommand";
239
+ import {
240
+ ListIndexedRecoveryPointsCommandInput,
241
+ ListIndexedRecoveryPointsCommandOutput,
242
+ } from "./commands/ListIndexedRecoveryPointsCommand";
235
243
  import {
236
244
  ListLegalHoldsCommandInput,
237
245
  ListLegalHoldsCommandOutput,
@@ -344,6 +352,10 @@ import {
344
352
  UpdateGlobalSettingsCommandInput,
345
353
  UpdateGlobalSettingsCommandOutput,
346
354
  } from "./commands/UpdateGlobalSettingsCommand";
355
+ import {
356
+ UpdateRecoveryPointIndexSettingsCommandInput,
357
+ UpdateRecoveryPointIndexSettingsCommandOutput,
358
+ } from "./commands/UpdateRecoveryPointIndexSettingsCommand";
347
359
  import {
348
360
  UpdateRecoveryPointLifecycleCommandInput,
349
361
  UpdateRecoveryPointLifecycleCommandOutput,
@@ -931,6 +943,19 @@ export interface Backup {
931
943
  options: __HttpHandlerOptions,
932
944
  cb: (err: any, data?: GetLegalHoldCommandOutput) => void
933
945
  ): void;
946
+ getRecoveryPointIndexDetails(
947
+ args: GetRecoveryPointIndexDetailsCommandInput,
948
+ options?: __HttpHandlerOptions
949
+ ): Promise<GetRecoveryPointIndexDetailsCommandOutput>;
950
+ getRecoveryPointIndexDetails(
951
+ args: GetRecoveryPointIndexDetailsCommandInput,
952
+ cb: (err: any, data?: GetRecoveryPointIndexDetailsCommandOutput) => void
953
+ ): void;
954
+ getRecoveryPointIndexDetails(
955
+ args: GetRecoveryPointIndexDetailsCommandInput,
956
+ options: __HttpHandlerOptions,
957
+ cb: (err: any, data?: GetRecoveryPointIndexDetailsCommandOutput) => void
958
+ ): void;
934
959
  getRecoveryPointRestoreMetadata(
935
960
  args: GetRecoveryPointRestoreMetadataCommandInput,
936
961
  options?: __HttpHandlerOptions
@@ -1154,6 +1179,20 @@ export interface Backup {
1154
1179
  options: __HttpHandlerOptions,
1155
1180
  cb: (err: any, data?: ListFrameworksCommandOutput) => void
1156
1181
  ): void;
1182
+ listIndexedRecoveryPoints(): Promise<ListIndexedRecoveryPointsCommandOutput>;
1183
+ listIndexedRecoveryPoints(
1184
+ args: ListIndexedRecoveryPointsCommandInput,
1185
+ options?: __HttpHandlerOptions
1186
+ ): Promise<ListIndexedRecoveryPointsCommandOutput>;
1187
+ listIndexedRecoveryPoints(
1188
+ args: ListIndexedRecoveryPointsCommandInput,
1189
+ cb: (err: any, data?: ListIndexedRecoveryPointsCommandOutput) => void
1190
+ ): void;
1191
+ listIndexedRecoveryPoints(
1192
+ args: ListIndexedRecoveryPointsCommandInput,
1193
+ options: __HttpHandlerOptions,
1194
+ cb: (err: any, data?: ListIndexedRecoveryPointsCommandOutput) => void
1195
+ ): void;
1157
1196
  listLegalHolds(): Promise<ListLegalHoldsCommandOutput>;
1158
1197
  listLegalHolds(
1159
1198
  args: ListLegalHoldsCommandInput,
@@ -1538,6 +1577,19 @@ export interface Backup {
1538
1577
  options: __HttpHandlerOptions,
1539
1578
  cb: (err: any, data?: UpdateGlobalSettingsCommandOutput) => void
1540
1579
  ): void;
1580
+ updateRecoveryPointIndexSettings(
1581
+ args: UpdateRecoveryPointIndexSettingsCommandInput,
1582
+ options?: __HttpHandlerOptions
1583
+ ): Promise<UpdateRecoveryPointIndexSettingsCommandOutput>;
1584
+ updateRecoveryPointIndexSettings(
1585
+ args: UpdateRecoveryPointIndexSettingsCommandInput,
1586
+ cb: (err: any, data?: UpdateRecoveryPointIndexSettingsCommandOutput) => void
1587
+ ): void;
1588
+ updateRecoveryPointIndexSettings(
1589
+ args: UpdateRecoveryPointIndexSettingsCommandInput,
1590
+ options: __HttpHandlerOptions,
1591
+ cb: (err: any, data?: UpdateRecoveryPointIndexSettingsCommandOutput) => void
1592
+ ): void;
1541
1593
  updateRecoveryPointLifecycle(
1542
1594
  args: UpdateRecoveryPointLifecycleCommandInput,
1543
1595
  options?: __HttpHandlerOptions
@@ -213,6 +213,10 @@ import {
213
213
  GetLegalHoldCommandInput,
214
214
  GetLegalHoldCommandOutput,
215
215
  } from "./commands/GetLegalHoldCommand";
216
+ import {
217
+ GetRecoveryPointIndexDetailsCommandInput,
218
+ GetRecoveryPointIndexDetailsCommandOutput,
219
+ } from "./commands/GetRecoveryPointIndexDetailsCommand";
216
220
  import {
217
221
  GetRecoveryPointRestoreMetadataCommandInput,
218
222
  GetRecoveryPointRestoreMetadataCommandOutput,
@@ -277,6 +281,10 @@ import {
277
281
  ListFrameworksCommandInput,
278
282
  ListFrameworksCommandOutput,
279
283
  } from "./commands/ListFrameworksCommand";
284
+ import {
285
+ ListIndexedRecoveryPointsCommandInput,
286
+ ListIndexedRecoveryPointsCommandOutput,
287
+ } from "./commands/ListIndexedRecoveryPointsCommand";
280
288
  import {
281
289
  ListLegalHoldsCommandInput,
282
290
  ListLegalHoldsCommandOutput,
@@ -389,6 +397,10 @@ import {
389
397
  UpdateGlobalSettingsCommandInput,
390
398
  UpdateGlobalSettingsCommandOutput,
391
399
  } from "./commands/UpdateGlobalSettingsCommand";
400
+ import {
401
+ UpdateRecoveryPointIndexSettingsCommandInput,
402
+ UpdateRecoveryPointIndexSettingsCommandOutput,
403
+ } from "./commands/UpdateRecoveryPointIndexSettingsCommand";
392
404
  import {
393
405
  UpdateRecoveryPointLifecycleCommandInput,
394
406
  UpdateRecoveryPointLifecycleCommandOutput,
@@ -459,6 +471,7 @@ export type ServiceInputTypes =
459
471
  | GetBackupVaultAccessPolicyCommandInput
460
472
  | GetBackupVaultNotificationsCommandInput
461
473
  | GetLegalHoldCommandInput
474
+ | GetRecoveryPointIndexDetailsCommandInput
462
475
  | GetRecoveryPointRestoreMetadataCommandInput
463
476
  | GetRestoreJobMetadataCommandInput
464
477
  | GetRestoreTestingInferredMetadataCommandInput
@@ -475,6 +488,7 @@ export type ServiceInputTypes =
475
488
  | ListCopyJobSummariesCommandInput
476
489
  | ListCopyJobsCommandInput
477
490
  | ListFrameworksCommandInput
491
+ | ListIndexedRecoveryPointsCommandInput
478
492
  | ListLegalHoldsCommandInput
479
493
  | ListProtectedResourcesByBackupVaultCommandInput
480
494
  | ListProtectedResourcesCommandInput
@@ -503,6 +517,7 @@ export type ServiceInputTypes =
503
517
  | UpdateBackupPlanCommandInput
504
518
  | UpdateFrameworkCommandInput
505
519
  | UpdateGlobalSettingsCommandInput
520
+ | UpdateRecoveryPointIndexSettingsCommandInput
506
521
  | UpdateRecoveryPointLifecycleCommandInput
507
522
  | UpdateRegionSettingsCommandInput
508
523
  | UpdateReportPlanCommandInput
@@ -551,6 +566,7 @@ export type ServiceOutputTypes =
551
566
  | GetBackupVaultAccessPolicyCommandOutput
552
567
  | GetBackupVaultNotificationsCommandOutput
553
568
  | GetLegalHoldCommandOutput
569
+ | GetRecoveryPointIndexDetailsCommandOutput
554
570
  | GetRecoveryPointRestoreMetadataCommandOutput
555
571
  | GetRestoreJobMetadataCommandOutput
556
572
  | GetRestoreTestingInferredMetadataCommandOutput
@@ -567,6 +583,7 @@ export type ServiceOutputTypes =
567
583
  | ListCopyJobSummariesCommandOutput
568
584
  | ListCopyJobsCommandOutput
569
585
  | ListFrameworksCommandOutput
586
+ | ListIndexedRecoveryPointsCommandOutput
570
587
  | ListLegalHoldsCommandOutput
571
588
  | ListProtectedResourcesByBackupVaultCommandOutput
572
589
  | ListProtectedResourcesCommandOutput
@@ -595,6 +612,7 @@ export type ServiceOutputTypes =
595
612
  | UpdateBackupPlanCommandOutput
596
613
  | UpdateFrameworkCommandOutput
597
614
  | UpdateGlobalSettingsCommandOutput
615
+ | UpdateRecoveryPointIndexSettingsCommandOutput
598
616
  | UpdateRecoveryPointLifecycleCommandOutput
599
617
  | UpdateRegionSettingsCommandOutput
600
618
  | UpdateReportPlanCommandOutput
@@ -617,6 +635,7 @@ export interface ClientDefaults
617
635
  useDualstackEndpoint?: boolean | __Provider<boolean>;
618
636
  useFipsEndpoint?: boolean | __Provider<boolean>;
619
637
  region?: string | __Provider<string>;
638
+ profile?: string;
620
639
  defaultUserAgentProvider?: Provider<__UserAgent>;
621
640
  credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
622
641
  maxAttempts?: number | __Provider<number>;
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BackupClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BackupClient";
8
+ import {
9
+ GetRecoveryPointIndexDetailsInput,
10
+ GetRecoveryPointIndexDetailsOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetRecoveryPointIndexDetailsCommandInput
15
+ extends GetRecoveryPointIndexDetailsInput {}
16
+ export interface GetRecoveryPointIndexDetailsCommandOutput
17
+ extends GetRecoveryPointIndexDetailsOutput,
18
+ __MetadataBearer {}
19
+ declare const GetRecoveryPointIndexDetailsCommand_base: {
20
+ new (
21
+ input: GetRecoveryPointIndexDetailsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetRecoveryPointIndexDetailsCommandInput,
24
+ GetRecoveryPointIndexDetailsCommandOutput,
25
+ BackupClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetRecoveryPointIndexDetailsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetRecoveryPointIndexDetailsCommandInput,
33
+ GetRecoveryPointIndexDetailsCommandOutput,
34
+ BackupClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetRecoveryPointIndexDetailsCommand extends GetRecoveryPointIndexDetailsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetRecoveryPointIndexDetailsInput;
44
+ output: GetRecoveryPointIndexDetailsOutput;
45
+ };
46
+ sdk: {
47
+ input: GetRecoveryPointIndexDetailsCommandInput;
48
+ output: GetRecoveryPointIndexDetailsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BackupClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BackupClient";
8
+ import {
9
+ ListIndexedRecoveryPointsInput,
10
+ ListIndexedRecoveryPointsOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListIndexedRecoveryPointsCommandInput
15
+ extends ListIndexedRecoveryPointsInput {}
16
+ export interface ListIndexedRecoveryPointsCommandOutput
17
+ extends ListIndexedRecoveryPointsOutput,
18
+ __MetadataBearer {}
19
+ declare const ListIndexedRecoveryPointsCommand_base: {
20
+ new (
21
+ input: ListIndexedRecoveryPointsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListIndexedRecoveryPointsCommandInput,
24
+ ListIndexedRecoveryPointsCommandOutput,
25
+ BackupClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListIndexedRecoveryPointsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListIndexedRecoveryPointsCommandInput,
33
+ ListIndexedRecoveryPointsCommandOutput,
34
+ BackupClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListIndexedRecoveryPointsCommand extends ListIndexedRecoveryPointsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListIndexedRecoveryPointsInput;
44
+ output: ListIndexedRecoveryPointsOutput;
45
+ };
46
+ sdk: {
47
+ input: ListIndexedRecoveryPointsCommandInput;
48
+ output: ListIndexedRecoveryPointsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BackupClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BackupClient";
8
+ import {
9
+ UpdateRecoveryPointIndexSettingsInput,
10
+ UpdateRecoveryPointIndexSettingsOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateRecoveryPointIndexSettingsCommandInput
15
+ extends UpdateRecoveryPointIndexSettingsInput {}
16
+ export interface UpdateRecoveryPointIndexSettingsCommandOutput
17
+ extends UpdateRecoveryPointIndexSettingsOutput,
18
+ __MetadataBearer {}
19
+ declare const UpdateRecoveryPointIndexSettingsCommand_base: {
20
+ new (
21
+ input: UpdateRecoveryPointIndexSettingsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateRecoveryPointIndexSettingsCommandInput,
24
+ UpdateRecoveryPointIndexSettingsCommandOutput,
25
+ BackupClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: UpdateRecoveryPointIndexSettingsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateRecoveryPointIndexSettingsCommandInput,
33
+ UpdateRecoveryPointIndexSettingsCommandOutput,
34
+ BackupClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateRecoveryPointIndexSettingsCommand extends UpdateRecoveryPointIndexSettingsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateRecoveryPointIndexSettingsInput;
44
+ output: UpdateRecoveryPointIndexSettingsOutput;
45
+ };
46
+ sdk: {
47
+ input: UpdateRecoveryPointIndexSettingsCommandInput;
48
+ output: UpdateRecoveryPointIndexSettingsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -40,6 +40,7 @@ export * from "./GetBackupSelectionCommand";
40
40
  export * from "./GetBackupVaultAccessPolicyCommand";
41
41
  export * from "./GetBackupVaultNotificationsCommand";
42
42
  export * from "./GetLegalHoldCommand";
43
+ export * from "./GetRecoveryPointIndexDetailsCommand";
43
44
  export * from "./GetRecoveryPointRestoreMetadataCommand";
44
45
  export * from "./GetRestoreJobMetadataCommand";
45
46
  export * from "./GetRestoreTestingInferredMetadataCommand";
@@ -56,6 +57,7 @@ export * from "./ListBackupVaultsCommand";
56
57
  export * from "./ListCopyJobSummariesCommand";
57
58
  export * from "./ListCopyJobsCommand";
58
59
  export * from "./ListFrameworksCommand";
60
+ export * from "./ListIndexedRecoveryPointsCommand";
59
61
  export * from "./ListLegalHoldsCommand";
60
62
  export * from "./ListProtectedResourcesByBackupVaultCommand";
61
63
  export * from "./ListProtectedResourcesCommand";
@@ -84,6 +86,7 @@ export * from "./UntagResourceCommand";
84
86
  export * from "./UpdateBackupPlanCommand";
85
87
  export * from "./UpdateFrameworkCommand";
86
88
  export * from "./UpdateGlobalSettingsCommand";
89
+ export * from "./UpdateRecoveryPointIndexSettingsCommand";
87
90
  export * from "./UpdateRecoveryPointLifecycleCommand";
88
91
  export * from "./UpdateRegionSettingsCommand";
89
92
  export * from "./UpdateReportPlanCommand";
@@ -104,6 +104,9 @@ export interface CopyAction {
104
104
  Lifecycle?: Lifecycle | undefined;
105
105
  DestinationBackupVaultArn: string | undefined;
106
106
  }
107
+ export interface IndexAction {
108
+ ResourceTypes?: string[] | undefined;
109
+ }
107
110
  export interface BackupRule {
108
111
  RuleName: string | undefined;
109
112
  TargetBackupVaultName: string | undefined;
@@ -116,6 +119,7 @@ export interface BackupRule {
116
119
  CopyActions?: CopyAction[] | undefined;
117
120
  EnableContinuousBackup?: boolean | undefined;
118
121
  ScheduleExpressionTimezone?: string | undefined;
122
+ IndexActions?: IndexAction[] | undefined;
119
123
  }
120
124
  export interface BackupPlan {
121
125
  BackupPlanName: string | undefined;
@@ -133,6 +137,7 @@ export interface BackupRuleInput {
133
137
  CopyActions?: CopyAction[] | undefined;
134
138
  EnableContinuousBackup?: boolean | undefined;
135
139
  ScheduleExpressionTimezone?: string | undefined;
140
+ IndexActions?: IndexAction[] | undefined;
136
141
  }
137
142
  export interface BackupPlanInput {
138
143
  BackupPlanName: string | undefined;
@@ -727,6 +732,13 @@ export interface DescribeRecoveryPointInput {
727
732
  RecoveryPointArn: string | undefined;
728
733
  BackupVaultAccountId?: string | undefined;
729
734
  }
735
+ export declare const IndexStatus: {
736
+ readonly ACTIVE: "ACTIVE";
737
+ readonly DELETING: "DELETING";
738
+ readonly FAILED: "FAILED";
739
+ readonly PENDING: "PENDING";
740
+ };
741
+ export type IndexStatus = (typeof IndexStatus)[keyof typeof IndexStatus];
730
742
  export declare const RecoveryPointStatus: {
731
743
  readonly COMPLETED: "COMPLETED";
732
744
  readonly DELETING: "DELETING";
@@ -766,6 +778,8 @@ export interface DescribeRecoveryPointOutput {
766
778
  IsParent?: boolean | undefined;
767
779
  ResourceName?: string | undefined;
768
780
  VaultType?: VaultType | undefined;
781
+ IndexStatus?: IndexStatus | undefined;
782
+ IndexStatusMessage?: string | undefined;
769
783
  }
770
784
  export interface DescribeRegionSettingsInput {}
771
785
  export interface DescribeRegionSettingsOutput {
@@ -944,6 +958,21 @@ export interface GetLegalHoldOutput {
944
958
  RetainRecordUntil?: Date | undefined;
945
959
  RecoveryPointSelection?: RecoveryPointSelection | undefined;
946
960
  }
961
+ export interface GetRecoveryPointIndexDetailsInput {
962
+ BackupVaultName: string | undefined;
963
+ RecoveryPointArn: string | undefined;
964
+ }
965
+ export interface GetRecoveryPointIndexDetailsOutput {
966
+ RecoveryPointArn?: string | undefined;
967
+ BackupVaultArn?: string | undefined;
968
+ SourceResourceArn?: string | undefined;
969
+ IndexCreationDate?: Date | undefined;
970
+ IndexDeletionDate?: Date | undefined;
971
+ IndexCompletionDate?: Date | undefined;
972
+ IndexStatus?: IndexStatus | undefined;
973
+ IndexStatusMessage?: string | undefined;
974
+ TotalItemsIndexed?: number | undefined;
975
+ }
947
976
  export interface GetRecoveryPointRestoreMetadataInput {
948
977
  BackupVaultName: string | undefined;
949
978
  RecoveryPointArn: string | undefined;
@@ -1137,6 +1166,30 @@ export interface ListFrameworksOutput {
1137
1166
  Frameworks?: Framework[] | undefined;
1138
1167
  NextToken?: string | undefined;
1139
1168
  }
1169
+ export interface ListIndexedRecoveryPointsInput {
1170
+ NextToken?: string | undefined;
1171
+ MaxResults?: number | undefined;
1172
+ SourceResourceArn?: string | undefined;
1173
+ CreatedBefore?: Date | undefined;
1174
+ CreatedAfter?: Date | undefined;
1175
+ ResourceType?: string | undefined;
1176
+ IndexStatus?: IndexStatus | undefined;
1177
+ }
1178
+ export interface IndexedRecoveryPoint {
1179
+ RecoveryPointArn?: string | undefined;
1180
+ SourceResourceArn?: string | undefined;
1181
+ IamRoleArn?: string | undefined;
1182
+ BackupCreationDate?: Date | undefined;
1183
+ ResourceType?: string | undefined;
1184
+ IndexCreationDate?: Date | undefined;
1185
+ IndexStatus?: IndexStatus | undefined;
1186
+ IndexStatusMessage?: string | undefined;
1187
+ BackupVaultArn?: string | undefined;
1188
+ }
1189
+ export interface ListIndexedRecoveryPointsOutput {
1190
+ IndexedRecoveryPoints?: IndexedRecoveryPoint[] | undefined;
1191
+ NextToken?: string | undefined;
1192
+ }
1140
1193
  export interface ListLegalHoldsInput {
1141
1194
  NextToken?: string | undefined;
1142
1195
  MaxResults?: number | undefined;
@@ -1216,6 +1269,8 @@ export interface RecoveryPointByBackupVault {
1216
1269
  IsParent?: boolean | undefined;
1217
1270
  ResourceName?: string | undefined;
1218
1271
  VaultType?: VaultType | undefined;
1272
+ IndexStatus?: IndexStatus | undefined;
1273
+ IndexStatusMessage?: string | undefined;
1219
1274
  }
1220
1275
  export interface ListRecoveryPointsByBackupVaultOutput {
1221
1276
  NextToken?: string | undefined;
@@ -1254,6 +1309,8 @@ export interface RecoveryPointByResource {
1254
1309
  ParentRecoveryPointArn?: string | undefined;
1255
1310
  ResourceName?: string | undefined;
1256
1311
  VaultType?: VaultType | undefined;
1312
+ IndexStatus?: IndexStatus | undefined;
1313
+ IndexStatusMessage?: string | undefined;
1257
1314
  }
1258
1315
  export interface ListRecoveryPointsByResourceOutput {
1259
1316
  NextToken?: string | undefined;
@@ -1426,6 +1483,11 @@ export interface PutRestoreValidationResultInput {
1426
1483
  ValidationStatus: RestoreValidationStatus | undefined;
1427
1484
  ValidationStatusMessage?: string | undefined;
1428
1485
  }
1486
+ export declare const Index: {
1487
+ readonly DISABLED: "DISABLED";
1488
+ readonly ENABLED: "ENABLED";
1489
+ };
1490
+ export type Index = (typeof Index)[keyof typeof Index];
1429
1491
  export interface StartBackupJobInput {
1430
1492
  BackupVaultName: string | undefined;
1431
1493
  ResourceArn: string | undefined;
@@ -1436,6 +1498,7 @@ export interface StartBackupJobInput {
1436
1498
  Lifecycle?: Lifecycle | undefined;
1437
1499
  RecoveryPointTags?: Record<string, string> | undefined;
1438
1500
  BackupOptions?: Record<string, string> | undefined;
1501
+ Index?: Index | undefined;
1439
1502
  }
1440
1503
  export interface StartBackupJobOutput {
1441
1504
  BackupJobId?: string | undefined;
@@ -1510,6 +1573,18 @@ export interface UpdateFrameworkOutput {
1510
1573
  export interface UpdateGlobalSettingsInput {
1511
1574
  GlobalSettings?: Record<string, string> | undefined;
1512
1575
  }
1576
+ export interface UpdateRecoveryPointIndexSettingsInput {
1577
+ BackupVaultName: string | undefined;
1578
+ RecoveryPointArn: string | undefined;
1579
+ IamRoleArn?: string | undefined;
1580
+ Index: Index | undefined;
1581
+ }
1582
+ export interface UpdateRecoveryPointIndexSettingsOutput {
1583
+ BackupVaultName?: string | undefined;
1584
+ RecoveryPointArn?: string | undefined;
1585
+ IndexStatus?: IndexStatus | undefined;
1586
+ Index?: Index | undefined;
1587
+ }
1513
1588
  export interface UpdateRecoveryPointLifecycleInput {
1514
1589
  BackupVaultName: string | undefined;
1515
1590
  RecoveryPointArn: string | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListIndexedRecoveryPointsCommandInput,
4
+ ListIndexedRecoveryPointsCommandOutput,
5
+ } from "../commands/ListIndexedRecoveryPointsCommand";
6
+ import { BackupPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListIndexedRecoveryPoints: (
8
+ config: BackupPaginationConfiguration,
9
+ input: ListIndexedRecoveryPointsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListIndexedRecoveryPointsCommandOutput>;
@@ -9,6 +9,7 @@ export * from "./ListBackupVaultsPaginator";
9
9
  export * from "./ListCopyJobSummariesPaginator";
10
10
  export * from "./ListCopyJobsPaginator";
11
11
  export * from "./ListFrameworksPaginator";
12
+ export * from "./ListIndexedRecoveryPointsPaginator";
12
13
  export * from "./ListLegalHoldsPaginator";
13
14
  export * from "./ListProtectedResourcesByBackupVaultPaginator";
14
15
  export * from "./ListProtectedResourcesPaginator";
@@ -171,6 +171,10 @@ import {
171
171
  GetLegalHoldCommandInput,
172
172
  GetLegalHoldCommandOutput,
173
173
  } from "../commands/GetLegalHoldCommand";
174
+ import {
175
+ GetRecoveryPointIndexDetailsCommandInput,
176
+ GetRecoveryPointIndexDetailsCommandOutput,
177
+ } from "../commands/GetRecoveryPointIndexDetailsCommand";
174
178
  import {
175
179
  GetRecoveryPointRestoreMetadataCommandInput,
176
180
  GetRecoveryPointRestoreMetadataCommandOutput,
@@ -235,6 +239,10 @@ import {
235
239
  ListFrameworksCommandInput,
236
240
  ListFrameworksCommandOutput,
237
241
  } from "../commands/ListFrameworksCommand";
242
+ import {
243
+ ListIndexedRecoveryPointsCommandInput,
244
+ ListIndexedRecoveryPointsCommandOutput,
245
+ } from "../commands/ListIndexedRecoveryPointsCommand";
238
246
  import {
239
247
  ListLegalHoldsCommandInput,
240
248
  ListLegalHoldsCommandOutput,
@@ -347,6 +355,10 @@ import {
347
355
  UpdateGlobalSettingsCommandInput,
348
356
  UpdateGlobalSettingsCommandOutput,
349
357
  } from "../commands/UpdateGlobalSettingsCommand";
358
+ import {
359
+ UpdateRecoveryPointIndexSettingsCommandInput,
360
+ UpdateRecoveryPointIndexSettingsCommandOutput,
361
+ } from "../commands/UpdateRecoveryPointIndexSettingsCommand";
350
362
  import {
351
363
  UpdateRecoveryPointLifecycleCommandInput,
352
364
  UpdateRecoveryPointLifecycleCommandOutput,
@@ -535,6 +547,10 @@ export declare const se_GetLegalHoldCommand: (
535
547
  input: GetLegalHoldCommandInput,
536
548
  context: __SerdeContext
537
549
  ) => Promise<__HttpRequest>;
550
+ export declare const se_GetRecoveryPointIndexDetailsCommand: (
551
+ input: GetRecoveryPointIndexDetailsCommandInput,
552
+ context: __SerdeContext
553
+ ) => Promise<__HttpRequest>;
538
554
  export declare const se_GetRecoveryPointRestoreMetadataCommand: (
539
555
  input: GetRecoveryPointRestoreMetadataCommandInput,
540
556
  context: __SerdeContext
@@ -599,6 +615,10 @@ export declare const se_ListFrameworksCommand: (
599
615
  input: ListFrameworksCommandInput,
600
616
  context: __SerdeContext
601
617
  ) => Promise<__HttpRequest>;
618
+ export declare const se_ListIndexedRecoveryPointsCommand: (
619
+ input: ListIndexedRecoveryPointsCommandInput,
620
+ context: __SerdeContext
621
+ ) => Promise<__HttpRequest>;
602
622
  export declare const se_ListLegalHoldsCommand: (
603
623
  input: ListLegalHoldsCommandInput,
604
624
  context: __SerdeContext
@@ -711,6 +731,10 @@ export declare const se_UpdateGlobalSettingsCommand: (
711
731
  input: UpdateGlobalSettingsCommandInput,
712
732
  context: __SerdeContext
713
733
  ) => Promise<__HttpRequest>;
734
+ export declare const se_UpdateRecoveryPointIndexSettingsCommand: (
735
+ input: UpdateRecoveryPointIndexSettingsCommandInput,
736
+ context: __SerdeContext
737
+ ) => Promise<__HttpRequest>;
714
738
  export declare const se_UpdateRecoveryPointLifecycleCommand: (
715
739
  input: UpdateRecoveryPointLifecycleCommandInput,
716
740
  context: __SerdeContext
@@ -899,6 +923,10 @@ export declare const de_GetLegalHoldCommand: (
899
923
  output: __HttpResponse,
900
924
  context: __SerdeContext
901
925
  ) => Promise<GetLegalHoldCommandOutput>;
926
+ export declare const de_GetRecoveryPointIndexDetailsCommand: (
927
+ output: __HttpResponse,
928
+ context: __SerdeContext
929
+ ) => Promise<GetRecoveryPointIndexDetailsCommandOutput>;
902
930
  export declare const de_GetRecoveryPointRestoreMetadataCommand: (
903
931
  output: __HttpResponse,
904
932
  context: __SerdeContext
@@ -963,6 +991,10 @@ export declare const de_ListFrameworksCommand: (
963
991
  output: __HttpResponse,
964
992
  context: __SerdeContext
965
993
  ) => Promise<ListFrameworksCommandOutput>;
994
+ export declare const de_ListIndexedRecoveryPointsCommand: (
995
+ output: __HttpResponse,
996
+ context: __SerdeContext
997
+ ) => Promise<ListIndexedRecoveryPointsCommandOutput>;
966
998
  export declare const de_ListLegalHoldsCommand: (
967
999
  output: __HttpResponse,
968
1000
  context: __SerdeContext
@@ -1075,6 +1107,10 @@ export declare const de_UpdateGlobalSettingsCommand: (
1075
1107
  output: __HttpResponse,
1076
1108
  context: __SerdeContext
1077
1109
  ) => Promise<UpdateGlobalSettingsCommandOutput>;
1110
+ export declare const de_UpdateRecoveryPointIndexSettingsCommand: (
1111
+ output: __HttpResponse,
1112
+ context: __SerdeContext
1113
+ ) => Promise<UpdateRecoveryPointIndexSettingsCommandOutput>;
1078
1114
  export declare const de_UpdateRecoveryPointLifecycleCommand: (
1079
1115
  output: __HttpResponse,
1080
1116
  context: __SerdeContext
@@ -33,6 +33,7 @@ export declare const getRuntimeConfig: (config: BackupClientConfig) => {
33
33
  utf8Encoder: (input: string | Uint8Array) => string;
34
34
  disableHostPrefix: boolean;
35
35
  serviceId: string;
36
+ profile?: string | undefined;
36
37
  logger: import("@smithy/types").Logger;
37
38
  extensions: import("./runtimeExtensions").RuntimeExtension[];
38
39
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -38,6 +38,7 @@ export declare const getRuntimeConfig: (config: BackupClientConfig) => {
38
38
  utf8Encoder: (input: string | Uint8Array) => string;
39
39
  disableHostPrefix: boolean;
40
40
  serviceId: string;
41
+ profile?: string | undefined;
41
42
  logger: import("@smithy/types").Logger;
42
43
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
44
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -22,6 +22,7 @@ export declare const getRuntimeConfig: (config: BackupClientConfig) => {
22
22
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
23
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
24
  region: string | import("@smithy/types").Provider<any>;
25
+ profile?: string | undefined;
25
26
  defaultUserAgentProvider: (
26
27
  config?:
27
28
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved