@aws-sdk/client-backup 3.450.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.
- package/README.md +24 -0
- package/dist-cjs/Backup.js +6 -0
- package/dist-cjs/commands/ListBackupJobSummariesCommand.js +51 -0
- package/dist-cjs/commands/ListCopyJobSummariesCommand.js +51 -0
- package/dist-cjs/commands/ListRestoreJobSummariesCommand.js +51 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +42 -1
- package/dist-cjs/pagination/ListBackupJobSummariesPaginator.js +29 -0
- package/dist-cjs/pagination/ListCopyJobSummariesPaginator.js +29 -0
- package/dist-cjs/pagination/ListRestoreJobSummariesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +262 -3
- package/dist-es/Backup.js +6 -0
- package/dist-es/commands/ListBackupJobSummariesCommand.js +47 -0
- package/dist-es/commands/ListCopyJobSummariesCommand.js +47 -0
- package/dist-es/commands/ListRestoreJobSummariesCommand.js +47 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +41 -0
- package/dist-es/pagination/ListBackupJobSummariesPaginator.js +25 -0
- package/dist-es/pagination/ListCopyJobSummariesPaginator.js +25 -0
- package/dist-es/pagination/ListRestoreJobSummariesPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +252 -0
- package/dist-types/Backup.d.ts +21 -0
- package/dist-types/BackupClient.d.ts +5 -2
- package/dist-types/commands/DescribeBackupJobCommand.d.ts +1 -0
- package/dist-types/commands/DescribeCopyJobCommand.d.ts +1 -0
- package/dist-types/commands/ListBackupJobSummariesCommand.d.ts +106 -0
- package/dist-types/commands/ListBackupJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListCopyJobSummariesCommand.d.ts +106 -0
- package/dist-types/commands/ListCopyJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListRestoreJobSummariesCommand.d.ts +104 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +727 -0
- package/dist-types/pagination/ListBackupJobSummariesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCopyJobSummariesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRestoreJobSummariesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/Backup.d.ts +51 -0
- package/dist-types/ts3.4/BackupClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/ListBackupJobSummariesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCopyJobSummariesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListRestoreJobSummariesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +123 -0
- package/dist-types/ts3.4/pagination/ListBackupJobSummariesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCopyJobSummariesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRestoreJobSummariesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +35 -35
|
@@ -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";
|
|
@@ -167,6 +167,10 @@ import {
|
|
|
167
167
|
ListBackupJobsCommandInput,
|
|
168
168
|
ListBackupJobsCommandOutput,
|
|
169
169
|
} from "../commands/ListBackupJobsCommand";
|
|
170
|
+
import {
|
|
171
|
+
ListBackupJobSummariesCommandInput,
|
|
172
|
+
ListBackupJobSummariesCommandOutput,
|
|
173
|
+
} from "../commands/ListBackupJobSummariesCommand";
|
|
170
174
|
import {
|
|
171
175
|
ListBackupPlansCommandInput,
|
|
172
176
|
ListBackupPlansCommandOutput,
|
|
@@ -191,6 +195,10 @@ import {
|
|
|
191
195
|
ListCopyJobsCommandInput,
|
|
192
196
|
ListCopyJobsCommandOutput,
|
|
193
197
|
} from "../commands/ListCopyJobsCommand";
|
|
198
|
+
import {
|
|
199
|
+
ListCopyJobSummariesCommandInput,
|
|
200
|
+
ListCopyJobSummariesCommandOutput,
|
|
201
|
+
} from "../commands/ListCopyJobSummariesCommand";
|
|
194
202
|
import {
|
|
195
203
|
ListFrameworksCommandInput,
|
|
196
204
|
ListFrameworksCommandOutput,
|
|
@@ -231,6 +239,10 @@ import {
|
|
|
231
239
|
ListRestoreJobsCommandInput,
|
|
232
240
|
ListRestoreJobsCommandOutput,
|
|
233
241
|
} from "../commands/ListRestoreJobsCommand";
|
|
242
|
+
import {
|
|
243
|
+
ListRestoreJobSummariesCommandInput,
|
|
244
|
+
ListRestoreJobSummariesCommandOutput,
|
|
245
|
+
} from "../commands/ListRestoreJobSummariesCommand";
|
|
234
246
|
import {
|
|
235
247
|
ListTagsCommandInput,
|
|
236
248
|
ListTagsCommandOutput,
|
|
@@ -463,6 +475,10 @@ export declare const se_ListBackupJobsCommand: (
|
|
|
463
475
|
input: ListBackupJobsCommandInput,
|
|
464
476
|
context: __SerdeContext
|
|
465
477
|
) => Promise<__HttpRequest>;
|
|
478
|
+
export declare const se_ListBackupJobSummariesCommand: (
|
|
479
|
+
input: ListBackupJobSummariesCommandInput,
|
|
480
|
+
context: __SerdeContext
|
|
481
|
+
) => Promise<__HttpRequest>;
|
|
466
482
|
export declare const se_ListBackupPlansCommand: (
|
|
467
483
|
input: ListBackupPlansCommandInput,
|
|
468
484
|
context: __SerdeContext
|
|
@@ -487,6 +503,10 @@ export declare const se_ListCopyJobsCommand: (
|
|
|
487
503
|
input: ListCopyJobsCommandInput,
|
|
488
504
|
context: __SerdeContext
|
|
489
505
|
) => Promise<__HttpRequest>;
|
|
506
|
+
export declare const se_ListCopyJobSummariesCommand: (
|
|
507
|
+
input: ListCopyJobSummariesCommandInput,
|
|
508
|
+
context: __SerdeContext
|
|
509
|
+
) => Promise<__HttpRequest>;
|
|
490
510
|
export declare const se_ListFrameworksCommand: (
|
|
491
511
|
input: ListFrameworksCommandInput,
|
|
492
512
|
context: __SerdeContext
|
|
@@ -527,6 +547,10 @@ export declare const se_ListRestoreJobsCommand: (
|
|
|
527
547
|
input: ListRestoreJobsCommandInput,
|
|
528
548
|
context: __SerdeContext
|
|
529
549
|
) => Promise<__HttpRequest>;
|
|
550
|
+
export declare const se_ListRestoreJobSummariesCommand: (
|
|
551
|
+
input: ListRestoreJobSummariesCommandInput,
|
|
552
|
+
context: __SerdeContext
|
|
553
|
+
) => Promise<__HttpRequest>;
|
|
530
554
|
export declare const se_ListTagsCommand: (
|
|
531
555
|
input: ListTagsCommandInput,
|
|
532
556
|
context: __SerdeContext
|
|
@@ -759,6 +783,10 @@ export declare const de_ListBackupJobsCommand: (
|
|
|
759
783
|
output: __HttpResponse,
|
|
760
784
|
context: __SerdeContext
|
|
761
785
|
) => Promise<ListBackupJobsCommandOutput>;
|
|
786
|
+
export declare const de_ListBackupJobSummariesCommand: (
|
|
787
|
+
output: __HttpResponse,
|
|
788
|
+
context: __SerdeContext
|
|
789
|
+
) => Promise<ListBackupJobSummariesCommandOutput>;
|
|
762
790
|
export declare const de_ListBackupPlansCommand: (
|
|
763
791
|
output: __HttpResponse,
|
|
764
792
|
context: __SerdeContext
|
|
@@ -783,6 +811,10 @@ export declare const de_ListCopyJobsCommand: (
|
|
|
783
811
|
output: __HttpResponse,
|
|
784
812
|
context: __SerdeContext
|
|
785
813
|
) => Promise<ListCopyJobsCommandOutput>;
|
|
814
|
+
export declare const de_ListCopyJobSummariesCommand: (
|
|
815
|
+
output: __HttpResponse,
|
|
816
|
+
context: __SerdeContext
|
|
817
|
+
) => Promise<ListCopyJobSummariesCommandOutput>;
|
|
786
818
|
export declare const de_ListFrameworksCommand: (
|
|
787
819
|
output: __HttpResponse,
|
|
788
820
|
context: __SerdeContext
|
|
@@ -823,6 +855,10 @@ export declare const de_ListRestoreJobsCommand: (
|
|
|
823
855
|
output: __HttpResponse,
|
|
824
856
|
context: __SerdeContext
|
|
825
857
|
) => Promise<ListRestoreJobsCommandOutput>;
|
|
858
|
+
export declare const de_ListRestoreJobSummariesCommand: (
|
|
859
|
+
output: __HttpResponse,
|
|
860
|
+
context: __SerdeContext
|
|
861
|
+
) => Promise<ListRestoreJobSummariesCommandOutput>;
|
|
826
862
|
export declare const de_ListTagsCommand: (
|
|
827
863
|
output: __HttpResponse,
|
|
828
864
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-backup",
|
|
3
3
|
"description": "AWS SDK for JavaScript Backup Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.451.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-signing": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
33
|
-
"@aws-sdk/types": "3.
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
37
|
-
"@smithy/config-resolver": "^2.0.
|
|
38
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
39
|
-
"@smithy/hash-node": "^2.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^2.
|
|
43
|
-
"@smithy/middleware-retry": "^2.0.
|
|
44
|
-
"@smithy/middleware-serde": "^2.0.
|
|
45
|
-
"@smithy/middleware-stack": "^2.0.
|
|
46
|
-
"@smithy/node-config-provider": "^2.1.
|
|
47
|
-
"@smithy/node-http-handler": "^2.1.
|
|
48
|
-
"@smithy/protocol-http": "^3.0.
|
|
49
|
-
"@smithy/smithy-client": "^2.1.
|
|
50
|
-
"@smithy/types": "^2.
|
|
51
|
-
"@smithy/url-parser": "^2.0.
|
|
52
|
-
"@smithy/util-base64": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.451.0",
|
|
25
|
+
"@aws-sdk/core": "3.451.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.451.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.451.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.451.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.451.0",
|
|
30
|
+
"@aws-sdk/middleware-signing": "3.451.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.451.0",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "3.451.0",
|
|
33
|
+
"@aws-sdk/types": "3.451.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.451.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.451.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.451.0",
|
|
37
|
+
"@smithy/config-resolver": "^2.0.18",
|
|
38
|
+
"@smithy/fetch-http-handler": "^2.2.6",
|
|
39
|
+
"@smithy/hash-node": "^2.0.15",
|
|
40
|
+
"@smithy/invalid-dependency": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-content-length": "^2.0.15",
|
|
42
|
+
"@smithy/middleware-endpoint": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-retry": "^2.0.20",
|
|
44
|
+
"@smithy/middleware-serde": "^2.0.13",
|
|
45
|
+
"@smithy/middleware-stack": "^2.0.7",
|
|
46
|
+
"@smithy/node-config-provider": "^2.1.5",
|
|
47
|
+
"@smithy/node-http-handler": "^2.1.9",
|
|
48
|
+
"@smithy/protocol-http": "^3.0.9",
|
|
49
|
+
"@smithy/smithy-client": "^2.1.15",
|
|
50
|
+
"@smithy/types": "^2.5.0",
|
|
51
|
+
"@smithy/url-parser": "^2.0.13",
|
|
52
|
+
"@smithy/util-base64": "^2.0.1",
|
|
53
53
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
57
|
-
"@smithy/util-endpoints": "^1.0.
|
|
58
|
-
"@smithy/util-retry": "^2.0.
|
|
59
|
-
"@smithy/util-utf8": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^2.0.19",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^2.0.25",
|
|
57
|
+
"@smithy/util-endpoints": "^1.0.4",
|
|
58
|
+
"@smithy/util-retry": "^2.0.6",
|
|
59
|
+
"@smithy/util-utf8": "^2.0.2",
|
|
60
60
|
"tslib": "^2.5.0",
|
|
61
61
|
"uuid": "^8.3.2"
|
|
62
62
|
},
|