@aws-sdk/client-backup 3.449.0 → 3.451.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 (52) hide show
  1. package/README.md +25 -1
  2. package/dist-cjs/Backup.js +6 -0
  3. package/dist-cjs/commands/ListBackupJobSummariesCommand.js +51 -0
  4. package/dist-cjs/commands/ListCopyJobSummariesCommand.js +51 -0
  5. package/dist-cjs/commands/ListRestoreJobSummariesCommand.js +51 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/models/models_0.js +42 -1
  8. package/dist-cjs/pagination/ListBackupJobSummariesPaginator.js +29 -0
  9. package/dist-cjs/pagination/ListCopyJobSummariesPaginator.js +29 -0
  10. package/dist-cjs/pagination/ListRestoreJobSummariesPaginator.js +29 -0
  11. package/dist-cjs/pagination/index.js +3 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +262 -3
  13. package/dist-es/Backup.js +6 -0
  14. package/dist-es/commands/ListBackupJobSummariesCommand.js +47 -0
  15. package/dist-es/commands/ListCopyJobSummariesCommand.js +47 -0
  16. package/dist-es/commands/ListRestoreJobSummariesCommand.js +47 -0
  17. package/dist-es/commands/index.js +3 -0
  18. package/dist-es/models/models_0.js +41 -0
  19. package/dist-es/pagination/ListBackupJobSummariesPaginator.js +25 -0
  20. package/dist-es/pagination/ListCopyJobSummariesPaginator.js +25 -0
  21. package/dist-es/pagination/ListRestoreJobSummariesPaginator.js +25 -0
  22. package/dist-es/pagination/index.js +3 -0
  23. package/dist-es/protocols/Aws_restJson1.js +252 -0
  24. package/dist-types/Backup.d.ts +21 -0
  25. package/dist-types/BackupClient.d.ts +5 -2
  26. package/dist-types/commands/DescribeBackupJobCommand.d.ts +1 -0
  27. package/dist-types/commands/DescribeCopyJobCommand.d.ts +1 -0
  28. package/dist-types/commands/ListBackupJobSummariesCommand.d.ts +106 -0
  29. package/dist-types/commands/ListBackupJobsCommand.d.ts +2 -0
  30. package/dist-types/commands/ListCopyJobSummariesCommand.d.ts +106 -0
  31. package/dist-types/commands/ListCopyJobsCommand.d.ts +2 -0
  32. package/dist-types/commands/ListRestoreJobSummariesCommand.d.ts +104 -0
  33. package/dist-types/commands/index.d.ts +3 -0
  34. package/dist-types/models/models_0.d.ts +727 -0
  35. package/dist-types/pagination/ListBackupJobSummariesPaginator.d.ts +7 -0
  36. package/dist-types/pagination/ListCopyJobSummariesPaginator.d.ts +7 -0
  37. package/dist-types/pagination/ListRestoreJobSummariesPaginator.d.ts +7 -0
  38. package/dist-types/pagination/index.d.ts +3 -0
  39. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  40. package/dist-types/ts3.4/Backup.d.ts +51 -0
  41. package/dist-types/ts3.4/BackupClient.d.ts +18 -0
  42. package/dist-types/ts3.4/commands/ListBackupJobSummariesCommand.d.ts +42 -0
  43. package/dist-types/ts3.4/commands/ListCopyJobSummariesCommand.d.ts +42 -0
  44. package/dist-types/ts3.4/commands/ListRestoreJobSummariesCommand.d.ts +42 -0
  45. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +123 -0
  47. package/dist-types/ts3.4/pagination/ListBackupJobSummariesPaginator.d.ts +11 -0
  48. package/dist-types/ts3.4/pagination/ListCopyJobSummariesPaginator.d.ts +11 -0
  49. package/dist-types/ts3.4/pagination/ListRestoreJobSummariesPaginator.d.ts +11 -0
  50. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  52. package/package.json +35 -35
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListBackupJobSummariesCommandInput, ListBackupJobSummariesCommandOutput } from "../commands/ListBackupJobSummariesCommand";
3
+ import { BackupPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListBackupJobSummaries(config: BackupPaginationConfiguration, input: ListBackupJobSummariesCommandInput, ...additionalArguments: any): Paginator<ListBackupJobSummariesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCopyJobSummariesCommandInput, ListCopyJobSummariesCommandOutput } from "../commands/ListCopyJobSummariesCommand";
3
+ import { BackupPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListCopyJobSummaries(config: BackupPaginationConfiguration, input: ListCopyJobSummariesCommandInput, ...additionalArguments: any): Paginator<ListCopyJobSummariesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListRestoreJobSummariesCommandInput, ListRestoreJobSummariesCommandOutput } from "../commands/ListRestoreJobSummariesCommand";
3
+ import { BackupPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListRestoreJobSummaries(config: BackupPaginationConfiguration, input: ListRestoreJobSummariesCommandInput, ...additionalArguments: any): Paginator<ListRestoreJobSummariesCommandOutput>;
@@ -1,10 +1,12 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListBackupJobSummariesPaginator";
2
3
  export * from "./ListBackupJobsPaginator";
3
4
  export * from "./ListBackupPlanTemplatesPaginator";
4
5
  export * from "./ListBackupPlanVersionsPaginator";
5
6
  export * from "./ListBackupPlansPaginator";
6
7
  export * from "./ListBackupSelectionsPaginator";
7
8
  export * from "./ListBackupVaultsPaginator";
9
+ export * from "./ListCopyJobSummariesPaginator";
8
10
  export * from "./ListCopyJobsPaginator";
9
11
  export * from "./ListFrameworksPaginator";
10
12
  export * from "./ListLegalHoldsPaginator";
@@ -15,5 +17,6 @@ export * from "./ListRecoveryPointsByLegalHoldPaginator";
15
17
  export * from "./ListRecoveryPointsByResourcePaginator";
16
18
  export * from "./ListReportJobsPaginator";
17
19
  export * from "./ListReportPlansPaginator";
20
+ export * from "./ListRestoreJobSummariesPaginator";
18
21
  export * from "./ListRestoreJobsPaginator";
19
22
  export * from "./ListTagsPaginator";
@@ -41,12 +41,14 @@ import { GetLegalHoldCommandInput, GetLegalHoldCommandOutput } from "../commands
41
41
  import { GetRecoveryPointRestoreMetadataCommandInput, GetRecoveryPointRestoreMetadataCommandOutput } from "../commands/GetRecoveryPointRestoreMetadataCommand";
42
42
  import { GetSupportedResourceTypesCommandInput, GetSupportedResourceTypesCommandOutput } from "../commands/GetSupportedResourceTypesCommand";
43
43
  import { ListBackupJobsCommandInput, ListBackupJobsCommandOutput } from "../commands/ListBackupJobsCommand";
44
+ import { ListBackupJobSummariesCommandInput, ListBackupJobSummariesCommandOutput } from "../commands/ListBackupJobSummariesCommand";
44
45
  import { ListBackupPlansCommandInput, ListBackupPlansCommandOutput } from "../commands/ListBackupPlansCommand";
45
46
  import { ListBackupPlanTemplatesCommandInput, ListBackupPlanTemplatesCommandOutput } from "../commands/ListBackupPlanTemplatesCommand";
46
47
  import { ListBackupPlanVersionsCommandInput, ListBackupPlanVersionsCommandOutput } from "../commands/ListBackupPlanVersionsCommand";
47
48
  import { ListBackupSelectionsCommandInput, ListBackupSelectionsCommandOutput } from "../commands/ListBackupSelectionsCommand";
48
49
  import { ListBackupVaultsCommandInput, ListBackupVaultsCommandOutput } from "../commands/ListBackupVaultsCommand";
49
50
  import { ListCopyJobsCommandInput, ListCopyJobsCommandOutput } from "../commands/ListCopyJobsCommand";
51
+ import { ListCopyJobSummariesCommandInput, ListCopyJobSummariesCommandOutput } from "../commands/ListCopyJobSummariesCommand";
50
52
  import { ListFrameworksCommandInput, ListFrameworksCommandOutput } from "../commands/ListFrameworksCommand";
51
53
  import { ListLegalHoldsCommandInput, ListLegalHoldsCommandOutput } from "../commands/ListLegalHoldsCommand";
52
54
  import { ListProtectedResourcesByBackupVaultCommandInput, ListProtectedResourcesByBackupVaultCommandOutput } from "../commands/ListProtectedResourcesByBackupVaultCommand";
@@ -57,6 +59,7 @@ import { ListRecoveryPointsByResourceCommandInput, ListRecoveryPointsByResourceC
57
59
  import { ListReportJobsCommandInput, ListReportJobsCommandOutput } from "../commands/ListReportJobsCommand";
58
60
  import { ListReportPlansCommandInput, ListReportPlansCommandOutput } from "../commands/ListReportPlansCommand";
59
61
  import { ListRestoreJobsCommandInput, ListRestoreJobsCommandOutput } from "../commands/ListRestoreJobsCommand";
62
+ import { ListRestoreJobSummariesCommandInput, ListRestoreJobSummariesCommandOutput } from "../commands/ListRestoreJobSummariesCommand";
60
63
  import { ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand";
61
64
  import { PutBackupVaultAccessPolicyCommandInput, PutBackupVaultAccessPolicyCommandOutput } from "../commands/PutBackupVaultAccessPolicyCommand";
62
65
  import { PutBackupVaultLockConfigurationCommandInput, PutBackupVaultLockConfigurationCommandOutput } from "../commands/PutBackupVaultLockConfigurationCommand";
@@ -238,6 +241,10 @@ export declare const se_GetSupportedResourceTypesCommand: (input: GetSupportedRe
238
241
  * serializeAws_restJson1ListBackupJobsCommand
239
242
  */
240
243
  export declare const se_ListBackupJobsCommand: (input: ListBackupJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
244
+ /**
245
+ * serializeAws_restJson1ListBackupJobSummariesCommand
246
+ */
247
+ export declare const se_ListBackupJobSummariesCommand: (input: ListBackupJobSummariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
241
248
  /**
242
249
  * serializeAws_restJson1ListBackupPlansCommand
243
250
  */
@@ -262,6 +269,10 @@ export declare const se_ListBackupVaultsCommand: (input: ListBackupVaultsCommand
262
269
  * serializeAws_restJson1ListCopyJobsCommand
263
270
  */
264
271
  export declare const se_ListCopyJobsCommand: (input: ListCopyJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
272
+ /**
273
+ * serializeAws_restJson1ListCopyJobSummariesCommand
274
+ */
275
+ export declare const se_ListCopyJobSummariesCommand: (input: ListCopyJobSummariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
265
276
  /**
266
277
  * serializeAws_restJson1ListFrameworksCommand
267
278
  */
@@ -302,6 +313,10 @@ export declare const se_ListReportPlansCommand: (input: ListReportPlansCommandIn
302
313
  * serializeAws_restJson1ListRestoreJobsCommand
303
314
  */
304
315
  export declare const se_ListRestoreJobsCommand: (input: ListRestoreJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
316
+ /**
317
+ * serializeAws_restJson1ListRestoreJobSummariesCommand
318
+ */
319
+ export declare const se_ListRestoreJobSummariesCommand: (input: ListRestoreJobSummariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
305
320
  /**
306
321
  * serializeAws_restJson1ListTagsCommand
307
322
  */
@@ -534,6 +549,10 @@ export declare const de_GetSupportedResourceTypesCommand: (output: __HttpRespons
534
549
  * deserializeAws_restJson1ListBackupJobsCommand
535
550
  */
536
551
  export declare const de_ListBackupJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBackupJobsCommandOutput>;
552
+ /**
553
+ * deserializeAws_restJson1ListBackupJobSummariesCommand
554
+ */
555
+ export declare const de_ListBackupJobSummariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBackupJobSummariesCommandOutput>;
537
556
  /**
538
557
  * deserializeAws_restJson1ListBackupPlansCommand
539
558
  */
@@ -558,6 +577,10 @@ export declare const de_ListBackupVaultsCommand: (output: __HttpResponse, contex
558
577
  * deserializeAws_restJson1ListCopyJobsCommand
559
578
  */
560
579
  export declare const de_ListCopyJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCopyJobsCommandOutput>;
580
+ /**
581
+ * deserializeAws_restJson1ListCopyJobSummariesCommand
582
+ */
583
+ export declare const de_ListCopyJobSummariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCopyJobSummariesCommandOutput>;
561
584
  /**
562
585
  * deserializeAws_restJson1ListFrameworksCommand
563
586
  */
@@ -598,6 +621,10 @@ export declare const de_ListReportPlansCommand: (output: __HttpResponse, context
598
621
  * deserializeAws_restJson1ListRestoreJobsCommand
599
622
  */
600
623
  export declare const de_ListRestoreJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRestoreJobsCommandOutput>;
624
+ /**
625
+ * deserializeAws_restJson1ListRestoreJobSummariesCommand
626
+ */
627
+ export declare const de_ListRestoreJobSummariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRestoreJobSummariesCommandOutput>;
601
628
  /**
602
629
  * deserializeAws_restJson1ListTagsCommand
603
630
  */
@@ -164,6 +164,10 @@ import {
164
164
  ListBackupJobsCommandInput,
165
165
  ListBackupJobsCommandOutput,
166
166
  } from "./commands/ListBackupJobsCommand";
167
+ import {
168
+ ListBackupJobSummariesCommandInput,
169
+ ListBackupJobSummariesCommandOutput,
170
+ } from "./commands/ListBackupJobSummariesCommand";
167
171
  import {
168
172
  ListBackupPlansCommandInput,
169
173
  ListBackupPlansCommandOutput,
@@ -188,6 +192,10 @@ import {
188
192
  ListCopyJobsCommandInput,
189
193
  ListCopyJobsCommandOutput,
190
194
  } from "./commands/ListCopyJobsCommand";
195
+ import {
196
+ ListCopyJobSummariesCommandInput,
197
+ ListCopyJobSummariesCommandOutput,
198
+ } from "./commands/ListCopyJobSummariesCommand";
191
199
  import {
192
200
  ListFrameworksCommandInput,
193
201
  ListFrameworksCommandOutput,
@@ -228,6 +236,10 @@ import {
228
236
  ListRestoreJobsCommandInput,
229
237
  ListRestoreJobsCommandOutput,
230
238
  } from "./commands/ListRestoreJobsCommand";
239
+ import {
240
+ ListRestoreJobSummariesCommandInput,
241
+ ListRestoreJobSummariesCommandOutput,
242
+ } from "./commands/ListRestoreJobSummariesCommand";
231
243
  import {
232
244
  ListTagsCommandInput,
233
245
  ListTagsCommandOutput,
@@ -848,6 +860,19 @@ export interface Backup {
848
860
  options: __HttpHandlerOptions,
849
861
  cb: (err: any, data?: ListBackupJobsCommandOutput) => void
850
862
  ): void;
863
+ listBackupJobSummaries(
864
+ args: ListBackupJobSummariesCommandInput,
865
+ options?: __HttpHandlerOptions
866
+ ): Promise<ListBackupJobSummariesCommandOutput>;
867
+ listBackupJobSummaries(
868
+ args: ListBackupJobSummariesCommandInput,
869
+ cb: (err: any, data?: ListBackupJobSummariesCommandOutput) => void
870
+ ): void;
871
+ listBackupJobSummaries(
872
+ args: ListBackupJobSummariesCommandInput,
873
+ options: __HttpHandlerOptions,
874
+ cb: (err: any, data?: ListBackupJobSummariesCommandOutput) => void
875
+ ): void;
851
876
  listBackupPlans(
852
877
  args: ListBackupPlansCommandInput,
853
878
  options?: __HttpHandlerOptions
@@ -926,6 +951,19 @@ export interface Backup {
926
951
  options: __HttpHandlerOptions,
927
952
  cb: (err: any, data?: ListCopyJobsCommandOutput) => void
928
953
  ): void;
954
+ listCopyJobSummaries(
955
+ args: ListCopyJobSummariesCommandInput,
956
+ options?: __HttpHandlerOptions
957
+ ): Promise<ListCopyJobSummariesCommandOutput>;
958
+ listCopyJobSummaries(
959
+ args: ListCopyJobSummariesCommandInput,
960
+ cb: (err: any, data?: ListCopyJobSummariesCommandOutput) => void
961
+ ): void;
962
+ listCopyJobSummaries(
963
+ args: ListCopyJobSummariesCommandInput,
964
+ options: __HttpHandlerOptions,
965
+ cb: (err: any, data?: ListCopyJobSummariesCommandOutput) => void
966
+ ): void;
929
967
  listFrameworks(
930
968
  args: ListFrameworksCommandInput,
931
969
  options?: __HttpHandlerOptions
@@ -1062,6 +1100,19 @@ export interface Backup {
1062
1100
  options: __HttpHandlerOptions,
1063
1101
  cb: (err: any, data?: ListRestoreJobsCommandOutput) => void
1064
1102
  ): void;
1103
+ listRestoreJobSummaries(
1104
+ args: ListRestoreJobSummariesCommandInput,
1105
+ options?: __HttpHandlerOptions
1106
+ ): Promise<ListRestoreJobSummariesCommandOutput>;
1107
+ listRestoreJobSummaries(
1108
+ args: ListRestoreJobSummariesCommandInput,
1109
+ cb: (err: any, data?: ListRestoreJobSummariesCommandOutput) => void
1110
+ ): void;
1111
+ listRestoreJobSummaries(
1112
+ args: ListRestoreJobSummariesCommandInput,
1113
+ options: __HttpHandlerOptions,
1114
+ cb: (err: any, data?: ListRestoreJobSummariesCommandOutput) => void
1115
+ ): void;
1065
1116
  listTags(
1066
1117
  args: ListTagsCommandInput,
1067
1118
  options?: __HttpHandlerOptions
@@ -209,6 +209,10 @@ import {
209
209
  ListBackupJobsCommandInput,
210
210
  ListBackupJobsCommandOutput,
211
211
  } from "./commands/ListBackupJobsCommand";
212
+ import {
213
+ ListBackupJobSummariesCommandInput,
214
+ ListBackupJobSummariesCommandOutput,
215
+ } from "./commands/ListBackupJobSummariesCommand";
212
216
  import {
213
217
  ListBackupPlansCommandInput,
214
218
  ListBackupPlansCommandOutput,
@@ -233,6 +237,10 @@ import {
233
237
  ListCopyJobsCommandInput,
234
238
  ListCopyJobsCommandOutput,
235
239
  } from "./commands/ListCopyJobsCommand";
240
+ import {
241
+ ListCopyJobSummariesCommandInput,
242
+ ListCopyJobSummariesCommandOutput,
243
+ } from "./commands/ListCopyJobSummariesCommand";
236
244
  import {
237
245
  ListFrameworksCommandInput,
238
246
  ListFrameworksCommandOutput,
@@ -273,6 +281,10 @@ import {
273
281
  ListRestoreJobsCommandInput,
274
282
  ListRestoreJobsCommandOutput,
275
283
  } from "./commands/ListRestoreJobsCommand";
284
+ import {
285
+ ListRestoreJobSummariesCommandInput,
286
+ ListRestoreJobSummariesCommandOutput,
287
+ } from "./commands/ListRestoreJobSummariesCommand";
276
288
  import {
277
289
  ListTagsCommandInput,
278
290
  ListTagsCommandOutput,
@@ -389,12 +401,14 @@ export type ServiceInputTypes =
389
401
  | GetLegalHoldCommandInput
390
402
  | GetRecoveryPointRestoreMetadataCommandInput
391
403
  | GetSupportedResourceTypesCommandInput
404
+ | ListBackupJobSummariesCommandInput
392
405
  | ListBackupJobsCommandInput
393
406
  | ListBackupPlanTemplatesCommandInput
394
407
  | ListBackupPlanVersionsCommandInput
395
408
  | ListBackupPlansCommandInput
396
409
  | ListBackupSelectionsCommandInput
397
410
  | ListBackupVaultsCommandInput
411
+ | ListCopyJobSummariesCommandInput
398
412
  | ListCopyJobsCommandInput
399
413
  | ListFrameworksCommandInput
400
414
  | ListLegalHoldsCommandInput
@@ -405,6 +419,7 @@ export type ServiceInputTypes =
405
419
  | ListRecoveryPointsByResourceCommandInput
406
420
  | ListReportJobsCommandInput
407
421
  | ListReportPlansCommandInput
422
+ | ListRestoreJobSummariesCommandInput
408
423
  | ListRestoreJobsCommandInput
409
424
  | ListTagsCommandInput
410
425
  | PutBackupVaultAccessPolicyCommandInput
@@ -464,12 +479,14 @@ export type ServiceOutputTypes =
464
479
  | GetLegalHoldCommandOutput
465
480
  | GetRecoveryPointRestoreMetadataCommandOutput
466
481
  | GetSupportedResourceTypesCommandOutput
482
+ | ListBackupJobSummariesCommandOutput
467
483
  | ListBackupJobsCommandOutput
468
484
  | ListBackupPlanTemplatesCommandOutput
469
485
  | ListBackupPlanVersionsCommandOutput
470
486
  | ListBackupPlansCommandOutput
471
487
  | ListBackupSelectionsCommandOutput
472
488
  | ListBackupVaultsCommandOutput
489
+ | ListCopyJobSummariesCommandOutput
473
490
  | ListCopyJobsCommandOutput
474
491
  | ListFrameworksCommandOutput
475
492
  | ListLegalHoldsCommandOutput
@@ -480,6 +497,7 @@ export type ServiceOutputTypes =
480
497
  | ListRecoveryPointsByResourceCommandOutput
481
498
  | ListReportJobsCommandOutput
482
499
  | ListReportPlansCommandOutput
500
+ | ListRestoreJobSummariesCommandOutput
483
501
  | ListRestoreJobsCommandOutput
484
502
  | ListTagsCommandOutput
485
503
  | PutBackupVaultAccessPolicyCommandOutput
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ BackupClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../BackupClient";
14
+ import {
15
+ ListBackupJobSummariesInput,
16
+ ListBackupJobSummariesOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListBackupJobSummariesCommandInput
20
+ extends ListBackupJobSummariesInput {}
21
+ export interface ListBackupJobSummariesCommandOutput
22
+ extends ListBackupJobSummariesOutput,
23
+ __MetadataBearer {}
24
+ export declare class ListBackupJobSummariesCommand extends $Command<
25
+ ListBackupJobSummariesCommandInput,
26
+ ListBackupJobSummariesCommandOutput,
27
+ BackupClientResolvedConfig
28
+ > {
29
+ readonly input: ListBackupJobSummariesCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListBackupJobSummariesCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: BackupClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListBackupJobSummariesCommandInput,
38
+ ListBackupJobSummariesCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ BackupClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../BackupClient";
14
+ import {
15
+ ListCopyJobSummariesInput,
16
+ ListCopyJobSummariesOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListCopyJobSummariesCommandInput
20
+ extends ListCopyJobSummariesInput {}
21
+ export interface ListCopyJobSummariesCommandOutput
22
+ extends ListCopyJobSummariesOutput,
23
+ __MetadataBearer {}
24
+ export declare class ListCopyJobSummariesCommand extends $Command<
25
+ ListCopyJobSummariesCommandInput,
26
+ ListCopyJobSummariesCommandOutput,
27
+ BackupClientResolvedConfig
28
+ > {
29
+ readonly input: ListCopyJobSummariesCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListCopyJobSummariesCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: BackupClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListCopyJobSummariesCommandInput,
38
+ ListCopyJobSummariesCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ BackupClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../BackupClient";
14
+ import {
15
+ ListRestoreJobSummariesInput,
16
+ ListRestoreJobSummariesOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListRestoreJobSummariesCommandInput
20
+ extends ListRestoreJobSummariesInput {}
21
+ export interface ListRestoreJobSummariesCommandOutput
22
+ extends ListRestoreJobSummariesOutput,
23
+ __MetadataBearer {}
24
+ export declare class ListRestoreJobSummariesCommand extends $Command<
25
+ ListRestoreJobSummariesCommandInput,
26
+ ListRestoreJobSummariesCommandOutput,
27
+ BackupClientResolvedConfig
28
+ > {
29
+ readonly input: ListRestoreJobSummariesCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListRestoreJobSummariesCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: BackupClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListRestoreJobSummariesCommandInput,
38
+ ListRestoreJobSummariesCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -38,12 +38,14 @@ export * from "./GetBackupVaultNotificationsCommand";
38
38
  export * from "./GetLegalHoldCommand";
39
39
  export * from "./GetRecoveryPointRestoreMetadataCommand";
40
40
  export * from "./GetSupportedResourceTypesCommand";
41
+ export * from "./ListBackupJobSummariesCommand";
41
42
  export * from "./ListBackupJobsCommand";
42
43
  export * from "./ListBackupPlanTemplatesCommand";
43
44
  export * from "./ListBackupPlanVersionsCommand";
44
45
  export * from "./ListBackupPlansCommand";
45
46
  export * from "./ListBackupSelectionsCommand";
46
47
  export * from "./ListBackupVaultsCommand";
48
+ export * from "./ListCopyJobSummariesCommand";
47
49
  export * from "./ListCopyJobsCommand";
48
50
  export * from "./ListFrameworksCommand";
49
51
  export * from "./ListLegalHoldsCommand";
@@ -54,6 +56,7 @@ export * from "./ListRecoveryPointsByLegalHoldCommand";
54
56
  export * from "./ListRecoveryPointsByResourceCommand";
55
57
  export * from "./ListReportJobsCommand";
56
58
  export * from "./ListReportPlansCommand";
59
+ export * from "./ListRestoreJobSummariesCommand";
57
60
  export * from "./ListRestoreJobsCommand";
58
61
  export * from "./ListTagsCommand";
59
62
  export * from "./PutBackupVaultAccessPolicyCommand";
@@ -4,6 +4,13 @@ export interface AdvancedBackupSetting {
4
4
  ResourceType?: string;
5
5
  BackupOptions?: Record<string, string>;
6
6
  }
7
+ export declare const AggregationPeriod: {
8
+ readonly FOURTEEN_DAYS: "FOURTEEN_DAYS";
9
+ readonly ONE_DAY: "ONE_DAY";
10
+ readonly SEVEN_DAYS: "SEVEN_DAYS";
11
+ };
12
+ export type AggregationPeriod =
13
+ (typeof AggregationPeriod)[keyof typeof AggregationPeriod];
7
14
  export declare class AlreadyExistsException extends __BaseException {
8
15
  readonly name: "AlreadyExistsException";
9
16
  readonly $fault: "client";
@@ -60,6 +67,32 @@ export interface BackupJob {
60
67
  ParentJobId?: string;
61
68
  IsParent?: boolean;
62
69
  ResourceName?: string;
70
+ MessageCategory?: string;
71
+ }
72
+ export declare const BackupJobStatus: {
73
+ readonly ABORTED: "ABORTED";
74
+ readonly ABORTING: "ABORTING";
75
+ readonly AGGREGATE_ALL: "AGGREGATE_ALL";
76
+ readonly ANY: "ANY";
77
+ readonly COMPLETED: "COMPLETED";
78
+ readonly CREATED: "CREATED";
79
+ readonly EXPIRED: "EXPIRED";
80
+ readonly FAILED: "FAILED";
81
+ readonly PARTIAL: "PARTIAL";
82
+ readonly PENDING: "PENDING";
83
+ readonly RUNNING: "RUNNING";
84
+ };
85
+ export type BackupJobStatus =
86
+ (typeof BackupJobStatus)[keyof typeof BackupJobStatus];
87
+ export interface BackupJobSummary {
88
+ Region?: string;
89
+ AccountId?: string;
90
+ State?: BackupJobStatus;
91
+ ResourceType?: string;
92
+ MessageCategory?: string;
93
+ Count?: number;
94
+ StartTime?: Date;
95
+ EndTime?: Date;
63
96
  }
64
97
  export interface Lifecycle {
65
98
  MoveToColdStorageAfterDays?: number;
@@ -300,6 +333,31 @@ export interface CopyJob {
300
333
  NumberOfChildJobs?: number;
301
334
  ChildJobsInState?: Partial<Record<CopyJobState, number>>;
302
335
  ResourceName?: string;
336
+ MessageCategory?: string;
337
+ }
338
+ export declare const CopyJobStatus: {
339
+ readonly ABORTED: "ABORTED";
340
+ readonly ABORTING: "ABORTING";
341
+ readonly AGGREGATE_ALL: "AGGREGATE_ALL";
342
+ readonly ANY: "ANY";
343
+ readonly COMPLETED: "COMPLETED";
344
+ readonly COMPLETING: "COMPLETING";
345
+ readonly CREATED: "CREATED";
346
+ readonly FAILED: "FAILED";
347
+ readonly FAILING: "FAILING";
348
+ readonly PARTIAL: "PARTIAL";
349
+ readonly RUNNING: "RUNNING";
350
+ };
351
+ export type CopyJobStatus = (typeof CopyJobStatus)[keyof typeof CopyJobStatus];
352
+ export interface CopyJobSummary {
353
+ Region?: string;
354
+ AccountId?: string;
355
+ State?: CopyJobStatus;
356
+ ResourceType?: string;
357
+ MessageCategory?: string;
358
+ Count?: number;
359
+ StartTime?: Date;
360
+ EndTime?: Date;
303
361
  }
304
362
  export interface CreateBackupPlanInput {
305
363
  BackupPlan: BackupPlanInput | undefined;
@@ -525,6 +583,7 @@ export interface DescribeBackupJobOutput {
525
583
  NumberOfChildJobs?: number;
526
584
  ChildJobsInState?: Partial<Record<BackupJobState, number>>;
527
585
  ResourceName?: string;
586
+ MessageCategory?: string;
528
587
  }
529
588
  export interface DescribeBackupVaultInput {
530
589
  BackupVaultName: string | undefined;
@@ -804,11 +863,26 @@ export interface ListBackupJobsInput {
804
863
  ByCompleteAfter?: Date;
805
864
  ByCompleteBefore?: Date;
806
865
  ByParentJobId?: string;
866
+ ByMessageCategory?: string;
807
867
  }
808
868
  export interface ListBackupJobsOutput {
809
869
  BackupJobs?: BackupJob[];
810
870
  NextToken?: string;
811
871
  }
872
+ export interface ListBackupJobSummariesInput {
873
+ AccountId?: string;
874
+ State?: BackupJobStatus;
875
+ ResourceType?: string;
876
+ MessageCategory?: string;
877
+ AggregationPeriod?: AggregationPeriod;
878
+ MaxResults?: number;
879
+ NextToken?: string;
880
+ }
881
+ export interface ListBackupJobSummariesOutput {
882
+ BackupJobSummaries?: BackupJobSummary[];
883
+ AggregationPeriod?: string;
884
+ NextToken?: string;
885
+ }
812
886
  export interface ListBackupPlansInput {
813
887
  NextToken?: string;
814
888
  MaxResults?: number;
@@ -867,11 +941,26 @@ export interface ListCopyJobsInput {
867
941
  ByCompleteBefore?: Date;
868
942
  ByCompleteAfter?: Date;
869
943
  ByParentJobId?: string;
944
+ ByMessageCategory?: string;
870
945
  }
871
946
  export interface ListCopyJobsOutput {
872
947
  CopyJobs?: CopyJob[];
873
948
  NextToken?: string;
874
949
  }
950
+ export interface ListCopyJobSummariesInput {
951
+ AccountId?: string;
952
+ State?: CopyJobStatus;
953
+ ResourceType?: string;
954
+ MessageCategory?: string;
955
+ AggregationPeriod?: AggregationPeriod;
956
+ MaxResults?: number;
957
+ NextToken?: string;
958
+ }
959
+ export interface ListCopyJobSummariesOutput {
960
+ CopyJobSummaries?: CopyJobSummary[];
961
+ AggregationPeriod?: string;
962
+ NextToken?: string;
963
+ }
875
964
  export interface ListFrameworksInput {
876
965
  MaxResults?: number;
877
966
  NextToken?: string;
@@ -1054,6 +1143,40 @@ export interface ListRestoreJobsOutput {
1054
1143
  RestoreJobs?: RestoreJobsListMember[];
1055
1144
  NextToken?: string;
1056
1145
  }
1146
+ export declare const RestoreJobState: {
1147
+ readonly ABORTED: "ABORTED";
1148
+ readonly AGGREGATE_ALL: "AGGREGATE_ALL";
1149
+ readonly ANY: "ANY";
1150
+ readonly COMPLETED: "COMPLETED";
1151
+ readonly CREATED: "CREATED";
1152
+ readonly FAILED: "FAILED";
1153
+ readonly PENDING: "PENDING";
1154
+ readonly RUNNING: "RUNNING";
1155
+ };
1156
+ export type RestoreJobState =
1157
+ (typeof RestoreJobState)[keyof typeof RestoreJobState];
1158
+ export interface ListRestoreJobSummariesInput {
1159
+ AccountId?: string;
1160
+ State?: RestoreJobState;
1161
+ ResourceType?: string;
1162
+ AggregationPeriod?: AggregationPeriod;
1163
+ MaxResults?: number;
1164
+ NextToken?: string;
1165
+ }
1166
+ export interface RestoreJobSummary {
1167
+ Region?: string;
1168
+ AccountId?: string;
1169
+ State?: RestoreJobState;
1170
+ ResourceType?: string;
1171
+ Count?: number;
1172
+ StartTime?: Date;
1173
+ EndTime?: Date;
1174
+ }
1175
+ export interface ListRestoreJobSummariesOutput {
1176
+ RestoreJobSummaries?: RestoreJobSummary[];
1177
+ AggregationPeriod?: string;
1178
+ NextToken?: string;
1179
+ }
1057
1180
  export interface ListTagsInput {
1058
1181
  ResourceArn: string | undefined;
1059
1182
  NextToken?: string;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListBackupJobSummariesCommandInput,
4
+ ListBackupJobSummariesCommandOutput,
5
+ } from "../commands/ListBackupJobSummariesCommand";
6
+ import { BackupPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListBackupJobSummaries(
8
+ config: BackupPaginationConfiguration,
9
+ input: ListBackupJobSummariesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListBackupJobSummariesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListCopyJobSummariesCommandInput,
4
+ ListCopyJobSummariesCommandOutput,
5
+ } from "../commands/ListCopyJobSummariesCommand";
6
+ import { BackupPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListCopyJobSummaries(
8
+ config: BackupPaginationConfiguration,
9
+ input: ListCopyJobSummariesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListCopyJobSummariesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListRestoreJobSummariesCommandInput,
4
+ ListRestoreJobSummariesCommandOutput,
5
+ } from "../commands/ListRestoreJobSummariesCommand";
6
+ import { BackupPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListRestoreJobSummaries(
8
+ config: BackupPaginationConfiguration,
9
+ input: ListRestoreJobSummariesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListRestoreJobSummariesCommandOutput>;